aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-26 21:18:18 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-26 21:18:18 +0100
commit360babf79906b713ac8e2bb598ea1a65990c6487 (patch)
treecc6a1d04bd52f1c01f8143a0c2fdcfe150d0a332
parenta1b92edbb36fac40babd6b593e325eb95cb85b4c (diff)
downloadyoutube-dl-360babf79906b713ac8e2bb598ea1a65990c6487.tar.xz
[theplatform] Use centralized sorting
-rw-r--r--youtube_dl/extractor/theplatform.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py
index cec65261b..23172143e 100644
--- a/youtube_dl/extractor/theplatform.py
+++ b/youtube_dl/extractor/theplatform.py
@@ -55,15 +55,21 @@ class ThePlatformIE(InfoExtractor):
formats = []
for f in switch.findall(_x('smil:video')):
attr = f.attrib
+ width = int(attr['width'])
+ height = int(attr['height'])
+ vbr = int(attr['system-bitrate']) // 1000
+ format_id = '%dx%d_%dk' % (width, height, vbr)
formats.append({
+ 'format_id': format_id,
'url': base_url,
'play_path': 'mp4:' + attr['src'],
'ext': 'flv',
- 'width': int(attr['width']),
- 'height': int(attr['height']),
- 'vbr': int(attr['system-bitrate']),
+ 'width': width,
+ 'height': height,
+ 'vbr': vbr,
})
- formats.sort(key=lambda f: (f['height'], f['width'], f['vbr']))
+
+ self._sort_formats(formats)
return {
'id': video_id,