I thought it might be something like that.
I've worked around the problem by removing the soft links and instead doing a bind remount
*That solves the problem and I can now see all mp3 and ogg files in the player.
New problem: While I can see the ogg files, I can't play them -- nothing happens when I click them. I'm guessing that even though the default is to show *.mp3 and *.ogg, the player does not (yet?) handle ogg. Correct? If so, and adding ogg support is in the plans, can I ask that m4a support be put on the wishlist as well?
* For those wondering what a bind remount is, it's a way to mount the same directory tree in two different places. In my case, I wanted to mount /volume1/Data/MP3/ at /volume1/music/MP3/ as well. It's very simple:
1. I'm assuming here that you already have telnet or ssh access to your box. If not, set that up first.
2. Make sure the target directory exists and is empty. In my case, since it didn't already exist, it was the usual
- Code: Select all
mkdir /volume1/music/MP3/
command.
3. Finally, issue the mount command. In my case, that was
- Code: Select all
mount -t none /volume1/Data/MP3/ /volume1/music/MP3/ -o bind
4. Arranging for the bind remount to happen automatically whenever the device is rebooted is left as an exercise for the reader.