all repos — auto-movie-tagger @ 8c09bb37ec8f4897fdd67dc437fbe91dfae7be50

A Python script that auto tags and adds poster to mkv or mp4 movie files.

Code cleanup and Changes to Readme
Prithu Goswami prithugoswami524@gmail.com
Sun, 28 Jan 2018 09:01:34 +0530
commit

8c09bb37ec8f4897fdd67dc437fbe91dfae7be50

parent

1ff627b50ba1c09e8af1ff0b1c877ad3da2cdda3

2 files changed, 1 insertions(+), 11 deletions(-)

jump to
M README.mdREADME.md

@@ -4,7 +4,6 @@ Also adds subtitles if provided.

The metadata it adds: + Genre - Movie's genres -+ Artist - The director of the movie + Year - The release year of the movie + Comment - IMDb Rating and the movie's plot-outline.
M amt.pyamt.py

@@ -110,7 +110,7 @@

for filename in filenames: try: title = filename[:-4] - print('\nSearching IMDb for - "' + title ) + print('\nSearching IMDb for "{}"'.format(title)) imdb = Imdb() movie_results = []

@@ -137,15 +137,6 @@ mpr['year']))

# imdb_movie is a dict of info about the movie imdb_movie = imdb.get_title(mpr['imdb_id']) - - # Storing the data we will requre in variables - # before hand. - # Movie Title - imdb_movie_title - # Movie Year - imdb_movie_year - # IMDb id - imdb_movie_id - # Movie IMDb Rating - imdb_movie_rating - # Movie Plot - imdb_movie_plot_outline - # Movie Genres - imdb_movie_genres imdb_movie_title = imdb_movie['base']['title'] imdb_movie_year = imdb_movie['base']['year']