finished bad_id lookup

This commit is contained in:
simon 2021-04-17 15:53:59 +07:00
parent 25e257e51b
commit 0ec92d70f5
3 changed files with 6 additions and 1 deletions

View File

@ -28,6 +28,9 @@ Downloading trailers from links provided from emby and move them into the movie
Trailers are named in this style, a more flexible solution is in pending:
**{movie-name} {Year}_{youtube-id}_trailer.mkv**
## bad_id
Sometimes Emby get's it wrong. Sometimes this script can get it wrong too. The *Fix Movie Names* function goes through the movie library looking for filenames that don't match with the movie name as identified in emby.
## setup
### install
These are the none standard Python libraries in use in this project:

View File

@ -117,6 +117,8 @@ def sel_handler(menu_item, config):
moviesort.main(config)
tvsort.main(config, tvsort_id)
db_export.main(config)
trailers.main(config)
id_fix.main(config)
elif menu_item == 'Movies':
moviesort.main(config)
elif menu_item == 'TV shows':

View File

@ -74,9 +74,9 @@ def rename(config, errors_list):
print('[c]: cancel')
select = input()
if select == 0:
skipped.append(old_name)
break
elif select == 'c':
skipped.append(old_name)
return
# continue
for item in rename_files: