Joined
·
154 Posts
This “How To” describes how to export music and playlists from iTunes on OSX to an SD card or flash drive that the UConnnect 8.4 radio can play. A handy utility called “PlayList Export” does the heavy lifting for us, available from the Mac App Store for $4.99. And there is some cleanup of miscellaneous OSX hidden files that need to be removed because they seem to confuse the radio. As usual, your mileage may very; no warranty expressed or implied; not responsible for direct, indirect, incidental or consequential damages; void where prohibited; and not a flying toy.
Now first, the requirements:
Preparation:
We will need to create a reusable OSX shell script to clean up some hidden OSX system files such as “.Trashes” on the SD card or flash drive that may confuse the radio.
If any error messages appear, please check your work and Google any error messages to help you correct them.
Finally, insert your SD card or flash drive into the radio and patiently wait for it recognize the media. If playlists don’t have contents, wait a minute and try again. Apparently it can take a little while for it to read everything. Repeat the procedure when adding or removing music, its easiest to to delete all the playlists and music from the media (but leave cleanup.command).
Now first, the requirements:
- A Mac running OSX (version 10.9.1 is known to work, others may)
- iTunes (version 11.1.3 is known to work, other may)
- “PlayList Export” available from the Mac App Store for $4.99 ( https://itunes.apple.com/us/app/playlist-export/id434426826?mt=12&ls=1 )
- A FAT32 formatted empty SD card or flash drive (32 GB SDHC class 4 is known to work, others may)
- A UConnect 8.4 radio.
- Patience.
Preparation:
We will need to create a reusable OSX shell script to clean up some hidden OSX system files such as “.Trashes” on the SD card or flash drive that may confuse the radio.
- In OSX Finder, name your SD card or flash drive by right clicking it under Devices and selecting “Rename…”. Use a unique name without spaces.
- Open the OSX TextEdit app.
- In TextEdit, select “Format | Make Plain Text”.
- Precisely enter this text, replacing TRAILHAWK with the name of your SD card chosen in step 1. (My scripting skills are rusty, experienced OSX shell users will undoubtedly cringe, my apologies):
#!/bin/sh
echo Removing unwanted OSX folders…
dot_clean /Volumes/TRAILHAWK -m
rm -rf /Volumes/TRAILHAWK/.Spotlight-V100
rm -rf /Volumes/TRAILHAWK/.TemporaryItems
rm -rf /Volumes/TRAILHAWK/.fseventsd
rm -rf /Volumes/TRAILHAWK/.vbt5
rm -rf /Volumes/TRAILHAWK/.Trashes
ls -la /Volumes/TRAILHAWK/*
diskutil unmount force TRAILHAWK - In TextEdit, select “File | Save” and select you SD card or flash drive from the Devices.
- In the “Save As” field enter “cleanup.command”. The filename must end with ”.command”. Case matters.
- Press “Save” and quit TextEditor.
- In Finder, open Applications, then Utilities, the start the Terminal app.
- In Terminal, type “cd /Volumes/TRAILHAWK” replacing TRAILHAWK with the name of your SD card or flash drive, and press enter. Again case matters.
- In Terminal, type “cd “ and the name of your SD card or flash drive. Case matters. Ex: cd TRAILHAWK
- Now type “chmod u+x cleanup.command” and press enter.
- Close Terminal.
If any error messages appear, please check your work and Google any error messages to help you correct them.
- In iTunes, create a playlist called “All Music” and add all the desired music that you want on your radio to that playlist. This will represent all the music files you want Playlist Export to put on the SD or flash drive.
- Optionally, in iTunes, create any special playlists of music that you may desire.
- Close iTunes and start “Playlist Export”.
- Select the “All Music” playlist and any others you may want.
- For “Output Directory” select the SD card or flash drive.
- For “Format” select “m3u” and “Copy to Artist/Album folders”. The latter will prevent wasting space on duplicate music files.
- Select “Export” and patiently wait.
- If you have a large playlist, patiently wait some more.
- When completed, exit “Playlist Export”
- In OSX, empty the “Trash” bin. Really. We don’t want any trashed/deleted files taking up space on the SD card or flash drive, because it will confuse the radio.
- In Finder, select your SD card or flash drive under Devices.
- Double click “cleanup.command”. Your SD card or flash drive will be unmounted, remove it from your Mac. We’re done.
Finally, insert your SD card or flash drive into the radio and patiently wait for it recognize the media. If playlists don’t have contents, wait a minute and try again. Apparently it can take a little while for it to read everything. Repeat the procedure when adding or removing music, its easiest to to delete all the playlists and music from the media (but leave cleanup.command).