diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-12-06 20:26:55 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-12-06 20:26:55 +0100 | 
| commit | d349cd22401648e88d57b6dcdd0c8bbb12aaa0d9 (patch) | |
| tree | 85ef5fd7da35b0f54e6b2c6a5af2b706b5e28e7c | |
| parent | 0b6a9f639f6447c7e09c38b88b42964e8fa05349 (diff) | |
[imdb] Fix extraction
The paths to each format's page may have leading whitespace.
The height and the duration can't be extracted.
| -rw-r--r-- | youtube_dl/extractor/imdb.py | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/imdb.py b/youtube_dl/extractor/imdb.py index d8e9712a7..6fb373db2 100644 --- a/youtube_dl/extractor/imdb.py +++ b/youtube_dl/extractor/imdb.py @@ -21,7 +21,6 @@ class ImdbIE(InfoExtractor):              u'ext': u'mp4',              u'title': u'Ice Age: Continental Drift Trailer (No. 2) - IMDb',              u'description': u'md5:9061c2219254e5d14e03c25c98e96a81', -            u'duration': 151,          }      } @@ -35,6 +34,7 @@ class ImdbIE(InfoExtractor):              flags=re.MULTILINE)          formats = []          for f_id, f_path in available_formats: +            f_path = f_path.strip()              format_page = self._download_webpage(                  compat_urlparse.urljoin(url, f_path),                  u'Downloading info for %s format' % f_id) @@ -46,7 +46,6 @@ class ImdbIE(InfoExtractor):              formats.append({                  'format_id': f_id,                  'url': format_info['url'], -                'height': int(info['titleObject']['encoding']['selected'][:-1]),              })          return { @@ -55,5 +54,4 @@ class ImdbIE(InfoExtractor):              'formats': formats,              'description': descr,              'thumbnail': format_info['slate'], -            'duration': int(info['titleObject']['title']['duration_seconds']),          }  | 
