mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-01 04:32:55 +01:00
Use native HLS implementation by default.
This commit is contained in:
parent
d9ab5262b1
commit
d7dbfc7cc1
@ -7,10 +7,6 @@ from .common import InfoExtractor
|
|||||||
class RTVNHIE(InfoExtractor):
|
class RTVNHIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?rtvnh\.nl/video/(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://(?:www\.)?rtvnh\.nl/video/(?P<id>[0-9]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'params': {
|
|
||||||
'hls_prefer_native': True
|
|
||||||
},
|
|
||||||
|
|
||||||
'url': 'http://www.rtvnh.nl/video/131946',
|
'url': 'http://www.rtvnh.nl/video/131946',
|
||||||
'md5': '6e1d0ab079e2a00b6161442d3ceacfc1',
|
'md5': '6e1d0ab079e2a00b6161442d3ceacfc1',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -28,7 +24,7 @@ class RTVNHIE(InfoExtractor):
|
|||||||
|
|
||||||
for item in meta['source']['fb']:
|
for item in meta['source']['fb']:
|
||||||
if item.get('type') == 'hls':
|
if item.get('type') == 'hls':
|
||||||
formats.extend(self._extract_m3u8_formats(item['file'], video_id, ext='mp4'))
|
formats.extend(self._extract_m3u8_formats(item['file'], video_id, ext='mp4', entry_protocol='m3u8_native'))
|
||||||
elif item.get('type') == '':
|
elif item.get('type') == '':
|
||||||
formats.append({'url': item['file']})
|
formats.append({'url': item['file']})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user