Skip to content

Commit

Permalink
[ie/patreon] Fix embedded HLS extraction (#8993)
Browse files Browse the repository at this point in the history
Closes #8973
Authored by: johnvictorfs
  • Loading branch information
johnvictorfs committed Jan 21, 2024
1 parent c099ec9 commit f0e8bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/patreon.py
Expand Up @@ -275,7 +275,7 @@ def _real_extract(self, url):
'ext': ext,
'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)
return {
**info,
Expand Down

0 comments on commit f0e8bc7

Please sign in to comment.