-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Global option to ignore missing media #328
Comments
I don’t think I fully understand what you are saying. Can we look at a specific example? Are you saying you don’t want emby for kodi to remove content that doesn’t exist on your server any longer? |
In a sense, yes. When Emby for Kodi starts up, it syncs and scans the library to make sure that all media exists. If any media is missing, it asks to stop syncing. In my particular case, most of the media does not exist locally but I do want it to continue syncing and ignore the missing media. In other words, leave my library entries alone even if they are "missing". I can achieve this by selecting "No" when the prompt appears to stop syncing but it's rather annoying to do this each start up. |
Emby for Kodi does not do that at startup, it just requests from the server the latest changes. However it sounds to me like maybe it is throwing an error when the media is missing. Can you tell me if this is better with 4.1.19? Otherwise, provide your Kodi log (pm on the Emby forums if possible). Thank you. |
Hi, I have created a small script to modify the plugin code to prevent the error tripping when media is missing. Running this on a cron once an hour as this modification will be overwritten every time the plugin is updated. `#!/bin/bash file="/storage/.kodi/addons/plugin.video.emby/resources/lib/helper/utils.py" if grep -q "$actionstring" $file Regards |
That's where that line was... I'll test that with mine today. Could we get that added as an option by chance @angelblue05? Something like Ignore Missing Media or Do Not Validate Media Paths. Thanks! |
If i remember correctly this is only an issue if you are using "Native(direct paths)" in the Add-on sync settings, Regards |
Yep, that's what I'm using it for. I'm currently away from my main server to the point where streaming large files from it is impossible. Instead, I pull a series or two and have them stored on a local drive at my location. Emby for Kodi doesn't seem to be a big fan though as not all files are present locally. This fix resolves that issue. This may be a niche issue but it is a very helpful feature! |
Is this still an issue? Please migrate to emby for kodi next gen |
Yes, still an issue. Will post over there a bit later. Thanks! |
For consideration. This sounds very much like a use case to cater for Offline mode. For example DSUB/Airsonic, you can cache a lot of content locally. The client knows there are now two copies, and online copy and a local offline cached copy. If you need to you can flip a switch and the library now only shows cached offline data. When back online you can flip the switch again and you see it all once more. The OP appears to be catering for not having constant online access by copying some data to a local drive essentially simulating an offline cache. I dont know if this covers every scenario that "ignore missing data" would but it feels like some offline mode capabilities might even be a better fix for some. |
More or less when you're "off-site" from your main media library, you may bring some of it with you (external drive, etc.). If Emby for Kodi is using Native Paths, you can override the path in Thanks! |
I added a download option 10.X |
I would like to request an option to ignore missing media. My library is quite large and impossible to stream from my current location. To compensate, I sync the latest media to a local drive and have Emby use that share location.
The format is the same just that some entries are missing. More or less:
Series A -> Exists
Series B -> Does not exist
Series C -> Only season 2 exists
Having an ignore option would do wonders in allowing my library to update entries even if the media does not exist. Thanks!
The text was updated successfully, but these errors were encountered: