mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[ie/facebook:reel] Fix extraction (#10232)
Closes #10227 Authored by: bashonly
This commit is contained in:
parent
800ec085cc
commit
8ca1d57ed0
1 changed files with 3 additions and 0 deletions
|
@ -621,6 +621,9 @@ def parse_graphql_video(video):
|
||||||
'url': playable_url,
|
'url': playable_url,
|
||||||
})
|
})
|
||||||
extract_dash_manifest(video, formats)
|
extract_dash_manifest(video, formats)
|
||||||
|
if not formats:
|
||||||
|
# Do not append false positive entry w/o any formats
|
||||||
|
return
|
||||||
|
|
||||||
automatic_captions, subtitles = {}, {}
|
automatic_captions, subtitles = {}, {}
|
||||||
is_broadcast = traverse_obj(video, ('is_video_broadcast', {bool}))
|
is_broadcast = traverse_obj(video, ('is_video_broadcast', {bool}))
|
||||||
|
|
Loading…
Reference in a new issue