diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-29 07:56:14 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-29 07:56:14 +0100 | 
| commit | acf37ca151d67ee28034775662318d9a0a1eb6f4 (patch) | |
| tree | 46251daa79a3461bc8594d9c37a9b58ad1c6f7c2 | |
| parent | 17769d5a6c24eb8f5d609aa99f84debc3fe4adec (diff) | |
[imdb] Fix the resolution values (fixes #1847)
We were using the size of the player, it was the same for all the formats
| -rw-r--r-- | youtube_dl/extractor/imdb.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/imdb.py b/youtube_dl/extractor/imdb.py index 520edc7d0..d8e9712a7 100644 --- a/youtube_dl/extractor/imdb.py +++ b/youtube_dl/extractor/imdb.py @@ -46,8 +46,7 @@ class ImdbIE(InfoExtractor):              formats.append({                  'format_id': f_id,                  'url': format_info['url'], -                'height': format_info['height'], -                'width': format_info['width'], +                'height': int(info['titleObject']['encoding']['selected'][:-1]),              })          return { | 
