Kodi Community Forum
Solved Take playlists from iTunes? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Music Support (https://forum.kodi.tv/forumdisplay.php?fid=263)
+--- Thread: Solved Take playlists from iTunes? (/showthread.php?tid=340425)



Take playlists from iTunes? - aegidius - 2019-02-06

I've asked before about direct access to an iTunes library, and it seems impossible.
So... I bring my iTunes library into Kodi as a music source, and all the albums are there, just not the playlists (as expected). Is there any way to translate iTunes playlists so they appear in Kodi?


RE: Take playlists from iTunes? - jasn - 2019-02-06

The only (manual) way I've found is to be in iTunes and viewing the playlist to copy; go to File/Library/Export Playlist and save in .kodi/userdata/playlist/music folder. 

If you, by chance, you run iTunes in Windows and a NAS and have named your iTunes music storage folder to a fixed directory (as I do) you must also instruct Kodi to read the iTunes location correctly as well in an advancedsettings.xml file like this:
Code:
<pathsubstitution>
    <substitute>
        <from>(MusicFileDirectoryLetter):</from>
        <to>nfs://xx.x.x.xxx/(NASFolderName)</to>
    </substitute>
  </pathsubstitution>



RE: Take playlists from iTunes? - aegidius - 2019-02-07

I got it to work, thanks. Discovered that I had to save it as an M3U file from iTunes (since that's what Kodi does when you click New Playlist)

Looks like a job for an addon! (or else an enhancement to Kodi itself when it imports libraries)


RE: Take playlists from iTunes? - Mark Vension - 2019-02-07

Thanks @jasn for the details.