Plex Playlist Importer - v1.1.0.x http://www.castledragmire.com/Projects/Plex_Playlist_Importer
My music directories have been growing for over 2 decades in a folder based hierarchy, often using playlists for organization. Plex’s music organization is counterintuitive to this organizational structure, and Plex currently does not have an easy way to import external playlists. Hence this script was born :-)
You can run this by directly dragging playlists onto it.
This script is fully unicode compliant.
- While this script requires Python 3 (compiled against v3.4), a stand-alone Windows binary version is also available on the URL at the top of this file.
- While running the windows executable, if you get an error of “The program can't start because MSVCR100.dll is missing...”, download the “Microsoft Visual C++ 2010 Redistributable Package (x86)”.
- If running through the Python source, The Python sqlite3 lib is required, but it should come with Python.
- If running this mentions something about “
no such module : FTS4
”, you may need to replace the sqlite3.dll or sqlite3.so for your Python, which can be found at https://www.sqlite.org/download.html .- For a Python for Windows install, the DLL location will most likely be located at one of the following locations:
C:\Python%PYTHON_VERSION%\DLLs
C:\Program Files (x86)\Python%PYTHON_VERSION%-32\DLLs
C:\Users\%USERNAME%\AppData\Local\Programs\Python\Python%PYTHON_VERSION%\DLLs
- For a Python for Windows install, the DLL location will most likely be located at one of the following locations:
- If running this mentions something about “
usage:
PlexPlaylistImporter.py [-h] [-p Given_DB_Path] [-e Playlist_Encoding] [-t File_Type_Override] [-f] Playlist_Path Plex_Playlist_Name
positional arguments:
Arguments | Explanation |
---|---|
Playlist_Path | The path of the playlist file |
Plex_Playlist_Name |
The name of the playlist in Plex to import to.
|
optional arguments:
Arguments | Explanation |
---|---|
-h OR --help |
show this help message and exit |
-p OR --sqlitedb-pathGiven_DB_Path | The path to the sqlite3 database file
|
-e OR --playlist_encodingPlaylist_Encoding |
The encoding the playlist file is in. This is generally “utf-8”, but may also likely be “ISO-8859-1”. Default=utf-8 |
-t OR --override-typeFile_Type_Override |
The file type to encode as. If the file extension is not recognized, the file is parsed as a Winamp playlist (m3u). This allows overriding the determined file type. Default=NONE |
-f OR --force-list |
Do not prompt to create the playlist if it does not already exist. |
The only playlist type that is currently supported is Winamp playlists (.m3u).
Playlist importers just collect the absolute files names, and others can easily be dropped into the “Importers” directory without any other code changes.
While the M3U importer (Importers/M3U.py) is the most appropriate to use as a template, I included a second example one (PTL.py) which just pulls in absolute file names with no error checks.
PlexPlaylistImporter.sh is just included to force proper Unicode (utf-8) encoding and column widths on the console.
The songs you want to play have to already exist in the Plex database.
When you add a song to Plex (through Plex), it stores the song’s full file path in the Plex database. What this script does is derive all the full song paths in a playlist file that you give it, checks those paths against Plex’s database, and then adds the matches in the proper order into the Plex playlist you specified.
So for this reason, the script must be ran on the same computer running the Plex server so that it can match the paths. (There are, of course, workarounds to this. However, I highly recommend against it, as I have found that doing this may corrupt the Plex server database).
python setup.py py2exe
Copyright and coded by Dakusan - See http://www.castledragmire.com/Copyright for more information.