When maintaining a libraries, it would be good to have a text file with a list of the matching.
That would allow me to easily find
- programs that fails to match
- programs which are mismatched
It would also be good to be able to find programs with bad filenames which causes match failures.
I have not found a way to generate this, except though manual search which is time consuming.
This tool will help you - https://github.com/ukdtom/WebTools.bundle
Filebot is a good tool to help with the naming part - https://forums.plex.tv/discussion/191687/plex-naming-schemes-for-filebot
Remember that you probably will need to do a Plex Dance if the file you are trying to rename has already been incorrectly matched, as described by Otto over here - https://forums.plex.tv/discussion/158487/plex-incorrectly-identifying-tv-episodes/p1
I added WebTools.bundle to
[/usr/local/share/plexmediaserver/Resources/Plug-ins-24ffd60/WebClient.bundle/Contents]$
ls /usr/local/share/plexmediaserver/Resources/Plug-ins-24ffd60
Fanart-TV.bundle LastFM.bundle Media-Flags.bundle PersonalMedia.bundle PlexThemeMusic.bundle System.bundle WebClient.bundle
Framework.bundle LocalMedia.bundle MoviePosterDB.bundle PlexMovie.bundle PlexVevo.bundle TheMovieDB.bundle WebTools.bundle
HTbackdrops.bundle LyricFind.bundle OpenSubtitles.bundle PlexMusic.bundle Scanners.bundle TheTVDB.bundle XBMCnfoTVImporter.bundle
That appears to be correct
chown -R root:wheel WebTools.bundle
chmod -R 755 WebTools.bundle
I restarted the Media Server on the FreeNAS.
Checked a link: https://forums.plex.tv/discussion/126254
but I Cannot find any link to WebTools on the Front Page, nor in the Channels.
When I check Channels, History, I can see 3 x “Services” which I know nothing about.
If I click on them, they say “Service Updated”; so I think it is something added by
the guys doing the FreeNAS plugin.
http://:33400/ results in failure to connect.
Any ideas?
Added extra logging to the server, restarted and downloaded the logs.
grep -i webtools *
gave no result.
No, if the plugin does not work it is best if you post in the forum thread over here - https://forums.plex.tv/discussion/126254
Thanks: Will use that thread.
Found the problem: Wrong Plug-Ins directory.
After using the correct directory, it worked as a charm.
I ended up in this thread when searching for a simple way to achieve this. So for anyone else in the same situation, this is what I came up with. I’ve only done it on a Mac, should work as long as you have access to a terminal and sqlite3.
First, open the database using the sqlite3 tool by running this in a terminal window (e.g. open Terminal.app on a Mac):
sqlite3 ~/Library/Application\ Support/Plex\ Media\ Server/Plug-in\ Support/Databases/com.plexapp.plugins.library.db
Second, run the following query:
SELECT title FROM metadata_items WHERE guid LIKE 'local://%';
That’s it.
1 Like