mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-12-23 04:30:10 +09: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,
|
||||
}, {
|
||||
'url': 'https://www.dumpert.nl/item/100031688_b317a185',
|
||||
'md5': '98bece7add22c2645eb3906e6d55318b',
|
||||
'md5': '34a0c10c91d281141b959b27ee862b8f',
|
||||
'info_dict': {
|
||||
'id': '100031688/b317a185',
|
||||
'ext': 'mp4',
|
||||
@ -70,7 +70,8 @@ class DumpertIE(InfoExtractor):
|
||||
ext = determine_ext(uri)
|
||||
if ext == 'm3u8':
|
||||
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:
|
||||
formats.append({
|
||||
'url': uri,
|
||||
|
Loading…
Reference in New Issue
Block a user