[dailymotion] remove fragment part from m3u8 urls(closes #8915)
This commit is contained in:
parent
fe3a60f040
commit
997530d9d4
|
@ -180,9 +180,12 @@ class DailymotionIE(DailymotionBaseInfoExtractor):
|
||||||
continue
|
continue
|
||||||
ext = mimetype2ext(type_) or determine_ext(media_url)
|
ext = mimetype2ext(type_) or determine_ext(media_url)
|
||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
m3u8_formats = self._extract_m3u8_formats(
|
||||||
media_url, video_id, 'mp4', preference=-1,
|
media_url, video_id, 'mp4', preference=-1,
|
||||||
m3u8_id='hls', fatal=False))
|
m3u8_id='hls', fatal=False)
|
||||||
|
for f in m3u8_formats:
|
||||||
|
f['url'] = f['url'].split('#')[0]
|
||||||
|
formats.append(f)
|
||||||
elif ext == 'f4m':
|
elif ext == 'f4m':
|
||||||
formats.extend(self._extract_f4m_formats(
|
formats.extend(self._extract_f4m_formats(
|
||||||
media_url, video_id, preference=-1, f4m_id='hds', fatal=False))
|
media_url, video_id, preference=-1, f4m_id='hds', fatal=False))
|
||||||
|
|
Loading…
Reference in New Issue