Support and General Use > Audio Playback, Database and Playlists
Playing folders in succession
Leprechaun:
As I said,my files are tagged,the filenames are not preceded by a number. All my flac files are
tagged in this way. Do I have to rename all my files so I can play them using Rockbox? This is
a very serious defect. There"s no way I'm going to rename all my files.
saratoga:
--- Quote from: Leprechaun on May 20, 2017, 05:54:15 PM ---Do I have to rename all my files so I can play them using Rockbox?
--- End quote ---
No, if you haven't named your files suitably for playback by file name, you can always use the database, which shows you file tags rather than file name.
We were assuming you wanted to playback by file name because of the title of your thread.
Frankenpod:
--- Quote from: Leprechaun on May 20, 2017, 05:54:15 PM ---As I said,my files are tagged,the filenames are not preceded by a number. All my flac files are
tagged in this way. Do I have to rename all my files so I can play them using Rockbox? This is
a very serious defect. There"s no way I'm going to rename all my files.
--- End quote ---
It's not that big a deal though, surely?
I recall using a mass-tagger to remove non-jpg embedded artwork on several tens of thousands of tracks (and then put jpegs in) just to get the art to show up on Rockbox! Admittedly it was only a problem in the first place because crappy iTunes had been putting pngs in there without my knowledge. iTunes's habit of doing things like that is one reason why I went to Rockbox in the first place.
Anyway, point is, it's not that big a deal, just a small script and away it goes. Almost certain mp3tag can do it (load all tracks, select the 'tags to file names' option and write a small script).
Or you could just put all your tracks in one playlist, in album order, which is surely a pretty simple task in a music manager? Or you could do it within Rockbox, though that would be a way more tedious process. (When you say you want rockbox to play 'the next album', what would determine what the 'next album' was, if not a playlist?)
third suggestion removed 'cos I'm not sure its even needed, now I think about it...
Leprechaun:
When I say albums I mean folders. They are named "artist" then "album name". For this reason,the list of folders is in alphabetic order, so the next album is the next folder in alphabetical order. I use GMMP player on my Galaxy. This gives me the option of going to the next folder(album) without any input from me. I just choose a folder(album), start playing, and
it continues playing until I stop it. This is what I want to do with the Xduoo.
Frankenpod:
Well using the file browser will do that, but because its a _file_ browser its not going to know about meta-data like track number, it's only going to know about file structures, ergo to get the tracks in the right order within folders you'd need to name them with a leading track number. I thought most cd-rippers did that in the first place, so that's how I've always done it so have never run into the problem. Like I say, it's not difficult to get mp3tag to rename all your tracks in bulk with leading tracknumbers (and disc-numbers if necessary). Music managers usually have such an option as well.
The original app you refer to seems to be using a mixture of meta-data and file structure to determine play-order. I don't personally find it unreasonable that rockbox keeps the two separate, i.e. either look at tracks as files or look at them via their metadata - that actually seems more logical to me than the approach you are talking about. I guess the decision not to use a hybrid approach was baked in to the code a long time ago, and would be a huge amount of work to change now.
I did experiment with using the tagnavi_config file to make a tracklist that was ordered by album, which would achieve what you want via the database, but I have too many tracks for using the tracklist as a playlist to work. For what it's worth, the following tagnavi_custom.cfg file would give you a tracklist with the trackname prefixed with the album name, thus meaning tracks are shown in album order, which might be a way of getting the same effect as you are talking about. Though when I try it the tracks are ordered by artist then album, and I can't work out why. Also it looks kind of messy having the album name prefixed to the track name. Really think the simplest answer is to name the files a bit more logically and use the file-browser.
--- Code: ---#! rockbox/tagbrowser/2.0
%format "fmt_albumtitle" "%s.%d.%02d. %s" album discnum tracknum title ? discnum > "0"
%format "fmt_albumtitle" "%s.%02d. %s" album tracknum title ? discnum = "0"
%menu_start "custom_tracksbyalbum" "Tracks ordered by Album"
"Tracks ordered by album" -> title = "fmt_albumtitle"
%menu_start "custom" "custom menu"
"Tracks By Album" ==> "custom_tracksbyalbum"
#EOF
--- End code ---
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version