WIP Media importing and library integration (UPnP, Emby, Plex, ...) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93) +--- Thread: WIP Media importing and library integration (UPnP, Emby, Plex, ...) (/showthread.php?tid=224794) |
RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-03-18 No. You only need username and password in one place. Post a debug log so that Montellese could take a look when he has some time. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-03-18 (2020-03-18, 19:52)raptorjr Wrote: My log fills up with this:This sounds like your SMB / UNC paths on Emby require a username / password (independent from your Emby account) which is not available to Kodi. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-03-19 @raptorj, If your are running on a lan, try to add the file source to Kodi to see if it can access the files. You are not trying to scan the source into the library, just to test if Kodi can access the files and if it is getting the same path from Emby. Alternately, turn off allow local Playback and force a full re-synchronization. The link from Emby for Kodi Wiki might help https://github.com/MediaBrowser/plugin.video.emby/wiki/FAQ#native-playback-mode-steps-to-locate-files RE: Media importing and library integration (UPnP, Emby, Plex, ...) - raptorjr - 2020-03-21 (2020-03-19, 14:35)LongMan Wrote: @raptorj,Thank you for all help. I just turned off Direct playback, fastest and easiest. I have another video source with direct access to the files, and Emby have access to the files. So I don't really know where to change the access. But do I really loose something with disabling local playback? Otherwise this is good enough for me. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-03-21 Quote:But do I really loose something with disabling local playback?Playback starts faster with direct file access and there are some addons that require it. I don't use any of them so playback method doesn't matter to me. From what I can see playback starts very quickly whichever method is used. Cheers. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-03-25
Please use the pre-installed media import repository to install / update the media importer add-ons from there. This way you should get all necessary dependencies. ATTENTION: If you were running a previous test-build delete your MyVideosxXX.db. Changelog
RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Milhouse - 2020-03-26 RPi: http://milhouse.libreelec.tv/builds/wipupnp/RPi/LibreELEC-RPi.arm-9.80-Milhouse-20200326005621-%230325w-gaeb6e84.tar RPi2: http://milhouse.libreelec.tv/builds/wipupnp/RPi2/LibreELEC-RPi2.arm-9.80-Milhouse-20200326005621-%230325w-gaeb6e84.tar Generic: http://milhouse.libreelec.tv/builds/wipupnp/Generic/LibreELEC-Generic.x86_64-9.80-Milhouse-20200326005621-%230325w-gaeb6e84.tar RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-03-26 @Milhouse thanks as always. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-03-26 @Montellese and @Milhouse, Thanks for the updates. Montellese can you do a tvOS build? there was a request for it in the Emby forums. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-03-26 (2020-03-26, 14:36)LongMan Wrote: @Montellese and @Milhouse, Thanks for the updates.It's building at https://jenkins.kodi.tv/job/TVOS/2890/. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-03-26 (2020-03-26, 17:45)Montellese Wrote:Thanks. Build posted in Emby forums(2020-03-26, 14:36)LongMan Wrote: @Montellese and @Milhouse, Thanks for the updates.It's building at https://jenkins.kodi.tv/job/TVOS/2890/. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - raptorjr - 2020-03-28 So I was thinking that the Windows version of this worked pretty good and now I would try it on my Pi3, but got a problem when trying to install Emby Media Importer. I downloaded the latest Pi2 image, but maybe I need to clean up or remove some old stuff first? Here is the error: 2020-03-28 01:51:59.738 T:646 DEBUG: CAddonInstaller: installing 'mediaimporter.emby' version '0.0.7' from repository 'repository.mediaimport' 2020-03-28 01:51:59.752 T:1132 DEBUG: CAddonInstallJob[script.module.dateutil]: requires xbmc.python version 2.25.0 which is not available 2020-03-28 01:51:59.753 T:1132 ERROR: CAddonInstallJob[mediaimporter.emby]: The dependency on xbmc.python version 2.25.0 could not be satisfied. I didn't have that kind of error on the Windows version. Although I haven't tried the latest, but when I first installed and tested the MediaImporter build. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-03-28 (2020-03-28, 03:03)raptorjr Wrote: So I was thinking that the Windows version of this worked pretty good and now I would try it on my Pi3, but got a problem when trying to install Emby Media Importer. I downloaded the latest Pi2 image, but maybe I need to clean up or remove some old stuff first?At one point I also had some issues on Windows due to the currently active migration from Python 2 to Python 3 add-ons and I had to manually update one of the dependencies. No idea why it wasn't automatically updated. You can go to the add-on browser, find the mediaimporter.emby add-on and look at its dependencies. There you can e.g. click on script.module.dateutil and try to update it manually.Unfortunately I don't really know how the Python 2 to 3 migration works. I simply updated the dependency of mediaimporter.emby on xbmc.python to 3.0.0 because otherwise it wouldn't work anymore.
RE: Media importing and library integration (UPnP, Emby, Plex, ...) - raptorjr - 2020-03-28 (2020-03-28, 09:16)Montellese Wrote:(2020-03-28, 03:03)raptorjr Wrote: So I was thinking that the Windows version of this worked pretty good and now I would try it on my Pi3, but got a problem when trying to install Emby Media Importer. I downloaded the latest Pi2 image, but maybe I need to clean up or remove some old stuff first?At one point I also had some issues on Windows due to the currently active migration from Python 2 to Python 3 add-ons and I had to manually update one of the dependencies. No idea why it wasn't automatically updated. You can go to the add-on browser, find the Thank you. Tried it but it didn't work. So I thought I should just remove the .kodi folder and start all over. But how can I add the Mediaimport repository manually? RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-03-28 Quote:But how can I add the Mediaimport repository manually? Hit the Green "Clone or Download" button to get the zip for the repo. https://github.com/Montellese/repository.mediaimport Edit: See next Post. Thanks Montellese |