$xmlfile = '/mnt/mymusic/iTunes/iTunes Music Library.xml'; #Location of the itunes database file - you will have to mount the windows share. $idbName = 'itunes'; #database name of the mysql itunes database $mdbName = 'mythconverg'; #name of the mythtv database $mysqlusername = 'mythtv'; #this user should have full read/write access to the myth and itunes databases $mysqlpassword = 'mythtv'; #password for above user #This script assumes that you keep all your music on your windows machine under one directory. #They can be kept under multiple sub directories, so long as they are under one parent directory. #In my case, I keep my mp3's on 'D:\My Documents\mp3'. My $dospath ends up as below. If yours is #different, you can always look inside your itunes library file - it should be pretty obvious where #it is after poking around for a bit. $dospath = 'file://localhost/D:/My%20Documents/mp3'; # $linuxpath - The mount location of your mp3 files. In this example, I have mounted my # D:\My Documents\mp3 as /mnt/mp3 $linuxpath = '/mnt/mp3'; $mp3path = '/data/music/mp3'; #Where you want your files copied too. $mythmusicpath = '/data/music/'; #What you have entered into the mythmusic setup as the location of your music files $hostname = 'HOSTNAME'; # hostname of your machine