Thank You for your continued support and contributions!
/podcasts/castA/podcasts/castN/podcasts/castQ
I'd like to do something like this:Code: [Select]/podcasts/castA/podcasts/castN/podcasts/castQ...and have the contents of each of those folders, which tend to change frequently, pulled into the current playlist.Is this currently possible? Am I doing something wrong?
Quote from: brianary on January 28, 2008, 07:12:23 PMI'd like to do something like this:Code: [Select]/podcasts/castA/podcasts/castN/podcasts/castQ...and have the contents of each of those folders, which tend to change frequently, pulled into the current playlist.Is this currently possible? Am I doing something wrong?The m3u:http://en.wikipedia.org/wiki/M3Uspec does not allow you to do that.Charles
I'm not sure, but I think you could just do that with a custom Tagnavi entry?
"Music" -> title = "fmt_title" ? filename ~ "/castA/" | filename ~ "/castN/" | filename ~ "/castQ/"
That's funny, that's the article that gave me the idea! Check out the second example.M3U doesn't seem to be a specification in the formal sense, anyway, and its behavior for directory entries is not prohibited (at least, not that I've seen), so it seems quite reasonable behavior.
Well, I can't figure out how to make this work through tagnavi, since there doesn't seem to be an 'or' operator provided by the filter menu syntax.
And, really, a playlist file is a much cleaner format to maintain.Any other possibilities?
...since there doesn't seem to be an 'or' operator provided by the filter menu syntax.
"Music" -> title = "fmt_title" ? filename ~ "/cast"
And, really, a playlist file is a much cleaner format to maintain.
Depending on your scripting ability, this can be easily done. I would do it as part of a sync script (I use Linux) which does the following:1. Mount the device (if you system does not auto-mount).2. Sync the device with a set of directories on the computer with something like rsync.3. Optionally submit the scrobbler log to last.fm and delete the log file.4. Generate the playlist.5. Unmount the device.Charles
Quote from: brianary on January 29, 2008, 01:07:41 AM...since there doesn't seem to be an 'or' operator provided by the filter menu syntax.No, there isn't. But this will work if you have no other directories beginning with 'cast':Code: [Select]"Music" -> title = "fmt_title" ? filename ~ "/cast"
"Music" -> title = "fmt_title" ? filename ~ "/castA/" | filename ~ "/castN/" | filename ~ "/castQ/""News" -> title = "fmt_title" ? filename ~ "/castC/" | filename ~ "/castJ/" | filename ~ "/castY/""Comedy" -> title = "fmt_title" ? filename ~ "/castD/" | filename ~ "/castE/" | filename ~ "/castR/"
Quote from: brianary on January 29, 2008, 01:07:41 AMAnd, really, a playlist file is a much cleaner format to maintain.How's that? A database entry does not need any maintenance, because, provided 'Auto Update' is on, it always displays all the podcasts on your player without having to do anything.
but I'm not sure if the bash script would work on the Mac side.
Plus, there's the whole problem of testing and maintaining a script on three platforms. I'll probably just go without rather than script a solution.
Then why don't you create a folder called /News, put all the News podcasts into subfolders of it, create one called /Comedy, and put all the comedy ones into subfolders of it, etc?
I don't think your device will change much. Maintaining it shouldn't be that hard.
Page created in 0.091 seconds with 14 queries.