Hello
what's is the best way to convert a already rename TV Show ex: Another Life {tmdb-79130} to Another Life (2019) {tvdb-365722} or vice versa
if there a way to do it without scanning all the metadata again
thanks a lot
Best way to rename my already sorted TV show from tmdb to tvdb
Re: Best way to rename my already sorted TV show from tmdb to tvdb
You can restore previously stored match information, assuming that you still have xattr metadata.
Re-organize previously organized files using local xattr metadata
After restoring TheMovieDB match information, you can then retrieve the TheTVDB ID from TheMovieDB API like so:
** this code only works for TMDB->TVDB
Note that TheMovieDB and TheTVDB are not guaranteed to be compatible. The episode listings and SxE numbers for the same episode may very well be completely different from one database to another. Converting TMDB to TVDB is straight-forward in most cases, but can be difficult to impossible in rare corner cases (e.g. Gundam SEED) and may require you to compare airdates, episodes titles, etc to correctly match a TMDB episode ID to a TVDB episode ID.
Re-organize previously organized files using local xattr metadata
After restoring TheMovieDB match information, you can then retrieve the TheTVDB ID from TheMovieDB API like so:
Code: Select all
{ ' {tvdb-' + series.externalIds.tvdb_id + '}' }
Note that TheMovieDB and TheTVDB are not guaranteed to be compatible. The episode listings and SxE numbers for the same episode may very well be completely different from one database to another. Converting TMDB to TVDB is straight-forward in most cases, but can be difficult to impossible in rare corner cases (e.g. Gundam SEED) and may require you to compare airdates, episodes titles, etc to correctly match a TMDB episode ID to a TVDB episode ID.
Please read the FAQ and How to Request Help.
Re: Best way to rename my already sorted TV show from tmdb to tvdb
okk thanks
and is there a way we can ask to AMC to use tvdb- instead of tmdb- when using ~plex.id ??
and is there a way we can ask to AMC to use tvdb- instead of tmdb- when using ~plex.id ??
Re: Best way to rename my already sorted TV show from tmdb to tvdb
You can use the --def seriesDB parameter to use a different database, which in turn changes the episode information, which in turn changes the values returned by the various bindings:
viewtopic.php?t=13406
Code: Select all
--def seriesDB=TheTVDB
Please read the FAQ and How to Request Help.