mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-01-09 19:18:47 +00:00
Changed to m3u8_native entry protocol and adjusted md5 accordingly
This commit is contained in:
parent
60bbab1022
commit
a7de6d54ed
@ -32,7 +32,7 @@ class DumpertIE(InfoExtractor):
|
|||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.dumpert.nl/item/100031688_b317a185',
|
'url': 'https://www.dumpert.nl/item/100031688_b317a185',
|
||||||
'md5': '98bece7add22c2645eb3906e6d55318b',
|
'md5': '34a0c10c91d281141b959b27ee862b8f',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '100031688/b317a185',
|
'id': '100031688/b317a185',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
@ -70,7 +70,8 @@ class DumpertIE(InfoExtractor):
|
|||||||
ext = determine_ext(uri)
|
ext = determine_ext(uri)
|
||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
uri, video_id, ext='mp4', preference=preference))
|
uri, video_id, ext='mp4', entry_protocol='m3u8_native',
|
||||||
|
preference=preference))
|
||||||
else:
|
else:
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': uri,
|
'url': uri,
|
||||||
|
Loading…
Reference in New Issue
Block a user