mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[ie/patreon] Fix embedded HLS extraction (#8993)
Closes #8973 Authored by: johnvictorfs
This commit is contained in:
parent
c099ec9392
commit
f0e8bc7c60
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ class PatreonIE(PatreonBaseIE):
|
||||||
'ext': ext,
|
'ext': ext,
|
||||||
'url': post_file['url'],
|
'url': post_file['url'],
|
||||||
}
|
}
|
||||||
elif name == 'video':
|
elif name == 'video' or determine_ext(post_file.get('url')) == 'm3u8':
|
||||||
formats, subtitles = self._extract_m3u8_formats_and_subtitles(post_file['url'], video_id)
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(post_file['url'], video_id)
|
||||||
return {
|
return {
|
||||||
**info,
|
**info,
|
||||||
|
|
Loading…
Reference in a new issue