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, ...) - Montellese - 2020-04-02 Feel free to create feature requests for this. A long time ago I tried to write a "plugin importer" which would basically allow users to e.g. use the context menu to import specific (sub)hierarchies of a Kodi plugin into the library. But there were too many open questions concerning how to perform synchronization, how to handle stuff like Youtube where the number of items in a hierarchy can be endless etc. and there was nobody to help me answer these questions. Maybe a better approach would be to specify a new add-on extension for this but then all content provider add-ons have to explicitly support it instead of all content provider add-ons being supported out of the box. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-04-02 (2020-03-31, 19:12)raptorjr Wrote: Is it in any way possible to say when MediaImport release could be up to date enough to be part of the daily RPi Milhouse builds?Unfortunately not. There were times where I worked on this project several hours a day. Then there were months (or even more than a year) where I didn't work on it (or anything Kodi related) at all. Now I have a bit of time every week so progress is slow. And I'm pretty sure that towards the end of the year there will be a period where I won't have any time at all :-( IMO the only way this is ever going to make it into Kodi master is if another team member is interested enough in it to also volunteer with support and bug fixes etc. Otherwise it might just live in master with nobody having the time to or knowledge to fix things... RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-04-02 I think it is best to let the importer handle it's content through the API. Even if that is just initially. If a couple of addons are writen then you will be able to see similarities and be able to provide a base. A Media Importer can consist of up to three different parts:
I copied this description from one of your earlier post. Is this still an accurate description. If possible a template or at least a Read Me would be a good starting point. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - raptorjr - 2020-04-02 (2020-04-02, 00:12)Montellese Wrote:(2020-03-31, 19:12)raptorjr Wrote: Is it in any way possible to say when MediaImport release could be up to date enough to be part of the daily RPi Milhouse builds?Unfortunately not. There were times where I worked on this project several hours a day. Then there were months (or even more than a year) where I didn't work on it (or anything Kodi related) at all. Now I have a bit of time every week so progress is slow. And I'm pretty sure that towards the end of the year there will be a period where I won't have any time at all :-( Thank you. I hope someone will be able to help you. But it is not always that all good things come true. For me it works pretty good, and maybe Milhouse can provide a new build every month or something. But as I understand it took some extra work to do that. Anyway I appreciate all the work that is done both here and on other parts of Kodi. If we only had unlimited time and money =) RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Seger - 2020-04-04 (2020-03-30, 18:10)Montellese Wrote:[font][font]https://pastebin.com/xKDRgzR1[/font][/font](2020-03-30, 01:44)Seger Wrote: [font][font]https://paste.kodi.tv/ewayowunin.kodi [/font][/font][font][font]Können Sie bitte die Debug-Protokollierung aktivieren und neue Protokolle bereitstellen?[/font][/font] [font][font].[/font][/font] RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Seger - 2020-04-04 sorry again: https://pastebin.com/xKDRgzR1 RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-04-05 (2020-04-02, 00:37)LongMan Wrote: I think it is best to let the importer handle it's contentthrough the API. Even if that is just initially. If a couple of addons are writen then you will be able to see similarities and be able to provide a base.I have started describing the media import feature in the Github wiki of my Kodi fork, see https://github.com/Montellese/xbmc/wiki/Media-Import. The following details are already there:
RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-04-05 (2020-04-04, 02:40)Seger Wrote: sorry again: https://pastebin.com/xKDRgzR1Thanks for the debug logs. These are much more helpful. It looks like I really broke authentication using a manually specified username with my refactoring to reduce the number of authentications. I will come up with a fix ASAP. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-04-05 (2020-04-05, 00:06)Montellese Wrote:Could you download and install the following version of the add-on: https://www.dropbox.com/s/qr58iadjfeer1va/mediaimporter.emby.zip?dl=1. It should contain a fix so that also manual username authentication should work again.(2020-04-04, 02:40)Seger Wrote: sorry again: https://pastebin.com/xKDRgzR1Thanks for the debug logs. These are much more helpful. It looks like I really broke authentication using a manually specified username with my refactoring to reduce the number of authentications. I will come up with a fix ASAP. Thanks for testing and your feedback. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-04-05 Quote:I have started describing the media import feature in the Github wiki of my Kodi fork, see https://github.com/Montellese/xbmc/wiki/Media-Import.Wow. It is very detailed. I wrote an earlier post but it seem I didn't submit it. Is there a way I can contribute to it? Maybe some setup instructions etc RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-04-05 (2020-04-05, 20:09)LongMan Wrote:I've sent you an invitation so that you can collaborate on the Github wiki. Feel free to write any HOWTOs / guides you can think of. I'm not very good at those because I know the internal workings too well...Quote:I have started describing the media import feature in the Github wiki of my Kodi fork, see https://github.com/Montellese/xbmc/wiki/Media-Import.Wow. It is very detailed. I wrote an earlier post but it seem I didn't submit it. Is there a way I can contribute to it? Maybe some setup instructions etc RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-04-05 Got it RE: Media importing and library integration (UPnP, Emby, Plex, ...) - komplex - 2020-04-05 Tried to test this but can't install the plex mediaimpoter
Got it from your github and installs fine. Still having some issues setting it up I'll post back a lil later RE: Media importing and library integration (UPnP, Emby, Plex, ...) - LongMan - 2020-04-05 @komplex, Thanks for reporting. @Montellese, The Plex MediaImporter needs to be updated so that the Python 3.0.0 requirement is met, ie the one release in the mediaimporter repo. RE: Media importing and library integration (UPnP, Emby, Plex, ...) - Montellese - 2020-04-06 (2020-04-05, 22:14)LongMan Wrote: @komplex, Thanks for reporting.Yeah I forgot to tag and release the changes for Matrix compatibility in mediaimporter.plex . I've done that now so you should be able to install it from the repository again.
|