1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-02 22:36:10 +02:00

[globo] Improve http formats

This commit is contained in:
Sergey M․ 2015-11-04 17:03:45 +06:00
parent aebb42d32b
commit a4a6b7b80f

View File

@ -361,8 +361,8 @@ class GloboIE(InfoExtractor):
else: else:
formats.append({ formats.append({
'url': signed_url, 'url': signed_url,
'format_id': resource_id, 'format_id': 'http-%s' % resource_id,
'height': resource.get('height'), 'height': int_or_none(resource.get('height')),
}) })
self._sort_formats(formats) self._sort_formats(formats)