Speak EV - Electric Car Forums banner

Music Library in your passat - Guide

11K views 8 replies 7 participants last post by  MusicLoverUK  
#1 ·
Thought i'd post this here as it may be useful for some of you, I did this in my previous passat too.

As the passat has a USB socket you can add all your music onto a USB and always have your entire library in the car.

I use a 30gb stick as I have quite a large collection but 16gb wiill do for most.

First you need to format the stick (erases everything so backup anything you want to keep).

Go to my computer icon and right click. Click on manage. Open device manager and find your usb drive.
Right click the drive and select properties.
Choose the policies tab and select the option 'optimise for performance. Click ok.

Now go back to my computer and open it, you should see your usb drive there, right click on it and select 'format' Choose NTFS in the dropdown then click start. Once complete you can safely remove your USB stick.

Now go and plug your USB drive into the car and select media, it should come up, when you open it it will say no files found on usb drive. (this step may not be needed, but i did it anyway incase the car adds any firmware onto the stick to recognise it in future)

Now remove again and plug into your PC, drag and drop your music folders directly into the root file of the drive (the first screen that opens when you open the drive).

And thats it, you should now be able to plug into your car and have all your music organised by folders you dropped in.

Note: The USB drive i had for my previous passat was not recognised by the new car, so I re-did the above (backing up the music first) and all worked fine after.

Enjoy!
 
#5 ·
Aha that explains why I've got no album art in the car then! I had been meaning to look into it but hadn't got that far yet. The problem is though, I don't want my entire library copying to the car - I just want the good stuff - so I made a playlist and synced that using media player. Does anyone know how I can sync just my chosen playlist but also bring the image files in?
 
#8 ·
From my own experience, I've found that the sound quality of the files imported from the USB to be quite poor. Initially I thought that this was the sound system but was then pleasantly surprised when I play from Andriod Auto or Bluetooth from Spotify. The files were ripped from my CD's in good quality mp3s.
 
#9 ·
I found a solution for copying the album art to the SD card if (like me) you've used Windows Media Player to sync a playlist to the car. Media Player will have copied all the MP3s and folder structure to the card, just not the album art jpegs (which are hidden system files) so here's how you do it...

Put your SD card in your PC
Open a command prompt, change drive to your SD card (F: in my case) and enter the command:
dir /b /a:d
That will list all the folders on your SD card - copy the resulting list into an Excel file. It helps to make your DOS window really tall and wide so it can buffer the whole list without any text wrapping. I've got about 300 albums on the SD and that's no problem.

Next to that in your Excel file, make a list of the relevant source folders for each of those destination folders by just changing the first part of the string. For example for F:\Music\Nirvana\Bleach the source folder on my PC is C:\Users\Jonathan\Music\Nirvana\Bleach. I used a MID function in Excel to do this easily for the whole list like this:
="C:\Users\Jonathan\"&MID(A2,4,999)

In the third column you need to make a list of DOS commands that will copy the jpegs from one folder to the other. The command is like this:
XCOPY "C:\Users\Jonathan\Music\The Black Keys\Attack & Release\*.jpg" "F:\Music\The Black Keys\Attack & Release" /H
Again, I used Excel functions to build the string and then copy that down the whole list:
="XCOPY """&B2&"\*.jpg"" """&A2&""" /H"

Finally, copy&paste that list of commands into a DOS command prompt. It will whizz away copying any matching jpegs it can find. I now have album art in the Passat :-D

It doesn't catch everything - I found that it hasn't copied any art for REM and I think that's because DOS wouldn't like the folder name "R.E.M_" because of the full stops in it. But it seems to have brought the majority of albums over easily.

I was going to attach the Excel file to help but it says it's not an allowed file type to upload on here :-(