Skip to content

Commit

Permalink
[ie/dropbox] Fix extraction
Browse files Browse the repository at this point in the history
Authored by: bashonly
  • Loading branch information
bashonly committed Jan 29, 2025
1 parent 57c717f commit 5a1ec1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/dropbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _real_extract(self, url):
has_anonymous_download = self._search_regex(
r'(anonymous:\tanonymous)', part, 'anonymous', default=False)
transcode_url = self._search_regex(
r'\n.(https://[^\x03\x08\x12\n]+\.m3u8)', part, 'transcode url', default=None)
r'\n.?(https://[^\x03\x08\x12\n]+\.m3u8)', part, 'transcode url', default=None)
if not transcode_url:
continue
formats, subtitles = self._extract_m3u8_formats_and_subtitles(transcode_url, video_id, 'mp4')
Expand Down

0 comments on commit 5a1ec1f

Please sign in to comment.