Thank you Jochus! You just saved me some precious time. I was going to code something similar.
Like you I could find no tool which does the sum of the tracks' length. With a few tweaks your simple solution fitted my needs nicely.
Tip: if you have the original mp3 files which were merged/mixed into a single one a quick way to get the data for the csv file is using mp3info (under GUN/Linux) like this:
mp3info -p "%a;%t;%m;%s\n" *.mp3 > tracklist.csv
Thank you Jochus! You just saved me some precious time. I was going to code something similar.
Like you I could find no tool which does the sum of the tracks' length. With a few tweaks your simple solution fitted my needs nicely.
Tip: if you have the original mp3 files which were merged/mixed into a single one a quick way to get the data for the csv file is using mp3info (under GUN/Linux) like this:
mp3info -p "%a;%t;%m;%s\n" *.mp3 > tracklist.csv