Lincoln Stein's remarkably useful module Apache::MP3is respects symbolic links. That is, if you symlink an MP3 file Apache::MP3 will server it like any other MP3 file (as long as you Apache is allowed to FollowSymlinks in that directory). This small detail allows for some darn useful tricks to help you organize and expand your MP3 collection.
Problem 1: Collecting stray singles under one artist's folder.
If you're like me, you have several single MP3's that "fell off the back of an internet truck." You probably have ripped your own CDs too. While you could simply move the singles into the artist folder (easy to do), you can also put a symlink to single there. A more compelling example for this case is the compliation CD. You don't want to move the MP3 files from the collection into the associated artist folder and you don't want to copy the MP3 (wastes disk disk). Instead, consider making a symlink.
Problem 2: Creating permanent playlists.
Create your own radio station! Tired of not fitting into your local radio's format? Make your own! Create a folder called The 80s. Next, find all the good 80s singles in your collection and create symlinks to them. Heck, you can even record (or programatically generate) your own fake ads and put those in mix too! Image the possiblities of Markov chains, speech synthesis and some simple mixing. That's fake advertisement and that will make you pretend reach for your imaginary wallet. Throw in some RSS feeds and you got news too.
Problem 3: Spanning an MP3 collection across two disks.
Your MP3 collection has gotten too large so you need a add a second disk. Perhaps you need to press another machine into the fray. In either case, you can symlink to the mount point of the disk from the MP3 directory. Perhaps you can call the symlink "more". If that leaves you unsatisfied, you can write a simple shell script that creates symlinks to the individual directories on the other disk. One wrinkle is that you will have to handle merging artist folders. For instance, let's say in you original MP3 collection, you've ripped a few Prince albums. On the new disk, you've ripped his Sign O The Times epic. Now, you want the script to symlink the album under your original Prince folder. This I leave as a not-too-difficult excerise for the reader.
UPDATE: Corrected factual error about symlinks versus hard links. I must lay of the crack.
Um, that's backwards for Unix derived systems, which as a class by themselves satisfies the term most systems. (Unix, Linux, BSD, OS X,
Hard links only work within a single file system (because they are an alternate name for the same i-node, and an i-node is a name that is unique only if you already know what file system it is contained in) while symlinks map one name into another name (which means that they can cross file system boundaries).
Re:link it again, Sam
jjohn on 2003-09-23T17:54:36
Yes. You are right. I'm wrong. I'll will fix.
Maybe you have a directory of guest appearances, where the Eric Clapton guest appearances points at "While My Guitar Gently Weeps" by the Beatles, and the entire The Pros And Cons Of Hitchhiking by Roger Waters.