![]() |
|
[RELEASE] Missing Movie Plugin - Find Movies and TV Shows that are not in the library - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (/forumdisplay.php?fid=151) +---- Thread: [RELEASE] Missing Movie Plugin - Find Movies and TV Shows that are not in the library (/showthread.php?tid=90258) |
- null_pointer - 2011-10-14 07:23 I have built a new version with a few changes that is based on Hiram very good work. - select which source path to run the missing search on - should now work with on Windows with network shares like smb://machine/dir Download here: http://code.google.com/p/xbmc-missing-movie-search/downloads/list - k_zeon - 2011-10-14 09:02 null_pointer Wrote:I have built a new version with a few changes that is based on Hiram very good work. Just tried new version on Apple TV2 XBMC Eden Pre and when i select Search Path it errors out. Do i have to add any path values to your addin. if so i cannot find where - null_pointer - 2011-10-14 09:07 No it does not need any config. can you post the log file to http://pastebin.com and I can take a look. - igitur - 2011-10-14 10:40 null_pointer Wrote:Download here: Huh? Did you fork the project? Why didn't you just submit your patch to https://github.com/nathan-hoad/missing-movie-viewer ? - null_pointer - 2011-10-14 10:44 The functionality is quite a bit different, it has a lot of the original code to do some of the base actions like path compare and move list building but I changed the way you select source paths to scan and removed the TV Show scan all together as I don't really use or have a TV show setup I can run it against. So yes I forked it. - k_zeon - 2011-10-14 14:24 null_pointer Wrote:No it does not need any config. i started to post this morning but was getting late for work. will post when i get home. I did notice on the log that errors were on getting the Directory and maybe extra modules were missing. anyway be home approx 18.00 - k_zeon - 2011-10-14 20:07 null_pointer Wrote:No it does not need any config. http://pastebin.com/mTKVDhsR could be some modules you use are missing from my folders - null_pointer - 2011-10-15 00:54 Code: 07:53:30 T:92721152 M: 99241984 ERROR: GetDirectory - Error getting plugin://plugin.video.missingmoviescanner/?mode=20sry not sure, looks like an internal failure, something the plugin is failing at but not in the plugin code I think, it is probably using or returning data the core does not like. I am not that familiar with the plugin environment or to tbh python but I will try to reproduce the error and see what I can find out. there is a new version available that allows you to set the log level via the plugin settings, set it to level 5, close XBMC open it again and try again, it will still fail but more info will be in the log. Post the log again and we will see what it shows. http://code.google.com/p/xbmc-missing-movie-search/downloads/list - k_zeon - 2011-10-15 10:21 when i now click show sources, they show up. last time it just created an error. So now i clicked a path and then another error shows up http://pastebin.com/fvhM4qkj i installed 2.2.1 and changed debug to 5 will there be a seperate log.?? the pastebin if from my main log file - null_pointer - 2011-10-15 13:04 Looks like this is the line that is having issues on your system Code: jsonResult = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "params": {"fields": ["file", "label", "trailer"]}, "id": 1}')the error Code: 09:11:10 T:123117568 M:100724736 WARNING: JSONRPC: Value does not match any of the enum values in typeSo I guess I am passing in the wrong fields. I will need to read up on the VideoLibrary.GetMovies a bit more. |