mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 09:30:53 +00:00
[n-tv.de] Use native m3u8 as best format
This commit is contained in:
parent
8f4b58d70e
commit
7a7bd19c45
|
@ -15,7 +15,7 @@ class NTVDeIE(InfoExtractor):
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.n-tv.de/mediathek/videos/panorama/Schnee-und-Glaette-fuehren-zu-zahlreichen-Unfaellen-und-Staus-article14438086.html',
|
'url': 'http://www.n-tv.de/mediathek/videos/panorama/Schnee-und-Glaette-fuehren-zu-zahlreichen-Unfaellen-und-Staus-article14438086.html',
|
||||||
'md5': 'd37b7df1eea32265c51a062499ca488f',
|
'md5': '6ef2514d4b1e8e03ca24b49e2f167153',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '14438086',
|
'id': '14438086',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
|
@ -46,11 +46,14 @@ class NTVDeIE(InfoExtractor):
|
||||||
'format_id': 'flash',
|
'format_id': 'flash',
|
||||||
'url': 'rtmp://fms.n-tv.de/' + vdata['video'],
|
'url': 'rtmp://fms.n-tv.de/' + vdata['video'],
|
||||||
}, {
|
}, {
|
||||||
'format_id': 'mp4',
|
'format_id': 'mobile',
|
||||||
'url': 'http://video.n-tv.de' + vdata['videoMp4'],
|
'url': 'http://video.n-tv.de' + vdata['videoMp4'],
|
||||||
|
'tbr': 400, # estimation
|
||||||
}]
|
}]
|
||||||
m3u8_url = 'http://video.n-tv.de' + vdata['videoM3u8']
|
m3u8_url = 'http://video.n-tv.de' + vdata['videoM3u8']
|
||||||
formats.extend(self._extract_m3u8_formats(m3u8_url, video_id))
|
formats.extend(self._extract_m3u8_formats(
|
||||||
|
m3u8_url, video_id, ext='mp4',
|
||||||
|
entry_protocol='m3u8_native', preference=0))
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user