Browse Source

[brightcove] fix format sorting

totalwebcasting
remitamine 9 years ago
parent
commit
08136dc138
3 changed files with 7 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/brightcove.py
  2. +4
    -0
      youtube_dl/extractor/thestar.py
  3. +1
    -0
      youtube_dl/extractor/tv3.py

+ 2
- 1
youtube_dl/extractor/brightcove.py View File

@ -396,6 +396,7 @@ class BrightcoveNewIE(InfoExtractor):
'formats': 'mincount:41', 'formats': 'mincount:41',
}, },
'params': { 'params': {
# m3u8 download
'skip_download': True, 'skip_download': True,
} }
}, { }, {
@ -533,7 +534,7 @@ class BrightcoveNewIE(InfoExtractor):
f.update({ f.update({
'url': src or streaming_src, 'url': src or streaming_src,
'format_id': build_format_id('http' if src else 'http-streaming'), 'format_id': build_format_id('http' if src else 'http-streaming'),
'preference': 2 if src else 1,
'source_preference': 0 if src else -1,
}) })
else: else:
f.update({ f.update({


+ 4
- 0
youtube_dl/extractor/thestar.py View File

@ -19,6 +19,10 @@ class TheStarIE(InfoExtractor):
'uploader_id': '794267642001', 'uploader_id': '794267642001',
'timestamp': 1454353482, 'timestamp': 1454353482,
'upload_date': '20160201', 'upload_date': '20160201',
},
'params': {
# m3u8 download
'skip_download': True,
} }
} }
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/794267642001/default_default/index.html?videoId=%s' BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/794267642001/default_default/index.html?videoId=%s'


+ 1
- 0
youtube_dl/extractor/tv3.py View File

@ -21,6 +21,7 @@ class TV3IE(InfoExtractor):
'Failed to download MPD manifest' 'Failed to download MPD manifest'
], ],
'params': { 'params': {
# m3u8 download
'skip_download': True, 'skip_download': True,
}, },
} }


Loading…
Cancel
Save