Skip to content

Commit

Permalink
[ie/facebook] Add dash manifest URL (#7743)
Browse files Browse the repository at this point in the history
Fixes #7742
Authored by: ringus1
  • Loading branch information
ringus1 authored Aug 1, 2023
1 parent 30b29f3 commit a854fbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion yt_dlp/extractor/facebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,8 @@ def extract_dash_manifest(video, formats):
dash_manifest = video.get('dash_manifest')
if dash_manifest:
formats.extend(self._parse_mpd_formats(
compat_etree_fromstring(urllib.parse.unquote_plus(dash_manifest))))
compat_etree_fromstring(urllib.parse.unquote_plus(dash_manifest)),
mpd_url=video.get('dash_manifest_url')))

def process_formats(info):
# Downloads with browser's User-Agent are rate limited. Working around
Expand Down

0 comments on commit a854fbe

Please sign in to comment.