[imdb] Fix extraction

The paths to each format's page may have leading whitespace.
The height and the duration can't be extracted.
pull/1913/merge
Jaime Marquínez Ferrándiz 11 years ago
parent 0b6a9f639f
commit d349cd2240

@ -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']),
}

Loading…
Cancel
Save