Thank You for your continued support and contributions!
Hi all, just thought I'd mention my own story in case someone on a Mac (who doesn't like being dependent on wine) wants to convert their iTunes playlists to the m3u/m3u8 (rockbox) format. Here's what I did:1. Downloaded Songbird.2. Let it import all my iTunes stuff.3. Added the extension Playlist Export Tool4. Exported my playlists to ~/Music5. Code: [Select]rsync -avW --progress --size-only --delete ~/Music/* /Volumes/IPODNAME/Music/6. Code: [Select]touch /Volumes/IPODNAME/iPod_Control/Music/database.ignore
rsync -avW --progress --size-only --delete ~/Music/* /Volumes/IPODNAME/Music/
touch /Volumes/IPODNAME/iPod_Control/Music/database.ignore
All that seemed to work until ~/Music. Is that a folder within the ipod or something in the computer like where the music for iTunes is located? Then after that, what are those next two steps of code?
rsync -avW --progress --size-only --delete ~/Music/* /Volumes/MyIpod/Music/
If you don't mind me asking, what do these codes do? It looks like it just gets ready for me to be able to put playlists on the ipod. So now I can just drag and drop them in the root, "/Volumes/iPodname" right?
rsync: link_stat "/Users/EGGO/Volumes/Alpha/Music/*" failed: No such file or directory (2)
"EGGO" is my username. "ALAIN" is my iPod's name; it has nothing in it other than your usual folders (Calendars, Contacts, Notes, and I also added an empty folder called Music).Quotersync: link_stat "/Users/EGGO/Volumes/Alpha/Music/*" failed: No such file or directory (2)I store my music (with the Music and Itunes folder) on a seperate harddrive (named Alpha). "rsync -avW --progress --size-only --delete Volumes/Alpha/Music/* /Volumes/ALAIN/Music/"So the problem, it seems, is that despite saying Volumes/Alpha/Music, it points to it after going through the users when it shouldn't since it's in a whole different hard drive.Sorry if this is trying your patience. I thought that would've been it, but I am having a better understanding how this thing works.
rsync -avW --progress --size-only --delete Volumes/Alpha/Music/* /Volumes/ALAIN/Music/
rsync -avW --progress --size-only --delete /Volumes/Alpha/Music/* /Volumes/ALAIN/Music/
Page created in 0.068 seconds with 18 queries.