all repos — auto-movie-tagger @ 8805bee6a0cf05e9be038ea86e3c34c5c771978f

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

Changed the poster-image size that is fetched
Prithu Goswami prithugoswami524@gmail.com
Sun, 28 Jan 2018 09:21:53 +0530
commit

8805bee6a0cf05e9be038ea86e3c34c5c771978f

parent

8c09bb37ec8f4897fdd67dc437fbe91dfae7be50

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

jump to
M amt.pyamt.py

@@ -214,7 +214,7 @@ tmdb_find = tmdb.Find(imdb_movie_id)

tmdb_find.info(external_source = 'imdb_id') path = tmdb_find.movie_results[0]['poster_path'] - complete_path = r'https://image.tmdb.org/t/p/w640' + path + complete_path = r'https://image.tmdb.org/t/p/w780' + path uo = urllib.request.urlopen(complete_path) with open(poster_filename, "wb") as poster_file: