Populate series info for Plex episodes#1313
Populate series info for Plex episodes#1313liiight merged 1 commit intoFlexget:developfrom pkoenig10:develop
Conversation
|
Will this work with episodes by date? |
|
Updated the commit to handle episodes by date. |
|
Also, will this support other media types? Plex has music, movies etc libraries... |
|
These changes are exclusive to entries determined to be Plex episodes. As for movies, the only fields used by the movies metainfo plugins are Plex can provide the For other media (music, photos, and home videos), there aren't any metainfo plugins for these types of content, so there isn't any work to be done in this PR. |
|
I got no issues with relying on metainfo retrieved via Plex or any other input source for that matter. The rare situation that the metadata is incorrect in the source does not match up to the advantage of adding metadata without needing additional lookup. I was wondering if you added a check that knows if it should populate movie or series fields based on content type or library type or whatever |
|
Okay, I'll add the metainfo id parsing to this PR. That check already existed in this plugin (see the variable |
|
Currently, Flexget makes a single request to Plex and receives an XML response containing of list with limited info about the requested items in Plex. This limited info does not include the fields necessary to populate the As I mentioned earlier, the info returned by Plex is almost always sufficient to retrieve movie metainfo using other plugins. This PR was motivated by the desire the ensure that the Plex plugin provides enough info for other metainfo plugins to retrieve info about series episodes. |
|
Fair enough, thanks for this! |
Motivation for changes:
Sometimes I download episodes into my Plex server through channels other than Flexget. I would like to mark these episodes as seen/downloaded in Flexget. Currently the series plugin cannot be used with Plex episode entries because the necessary field are not set, although the information is available. These changes set the relevant fields so Flexget can get metainfo about Plex episodes.
Detailed changes:
Added the fields
series_name,series_season,series_episode,series_id_type, andseries_idfor Plex episode entires. The necessary info was already used in Flexget for setting other fields, so my changes are entirely setting these fields.