by dsiminiuk » Mon Mar 30, 2015 3:58 pm
Looking in the Subsonic Android App and the web app it appears if there is no track number value in the ID3 tag, it sorts files by file name.
I had a related but exact problem. I subscribe to a daily podcast that has 3 - 1 hours segments. Hour 1 is tagged with track number 1, hour 2 with track 2 and, hour 3 as 3. The problem is that the web app and the Android app lists all the hour 1 shows together, ordered afterward by name.
The solution I came up with was to run a bash script on a Ubuntu machine that has access to the cifs share, and I set the ID3 tags with an imaginary number made up of the last 2 digits of the year, then the day of the year, and the the hour number of the podcast from the file name.
The script runs via cron once per day and looks for files that match today's date. Creates the track number and uses an ID3 update application to update the ID3 tags in the mp3 file. This makes all the files in the podcast folder appear to be sorted by date, then "hour" number.
Examples:
For January 1, 2015, 3 files hour 1, 2 and 3, (year 15, day 1) would appear as...
150011
150012
150013
March 27th's files (year 15 day 86) are like...
150861
150862
150863
If anybody is interested in the script, let me know.
dsiminiuk