From 8ca1d57ed08d00efa117820a5a82f763b20e2d1d Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Fri, 21 Jun 2024 18:21:45 -0500 Subject: [PATCH] [ie/facebook:reel] Fix extraction (#10232) Closes #10227 Authored by: bashonly --- yt_dlp/extractor/facebook.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yt_dlp/extractor/facebook.py b/yt_dlp/extractor/facebook.py index 1d1e0770a..a3ca291fc 100644 --- a/yt_dlp/extractor/facebook.py +++ b/yt_dlp/extractor/facebook.py @@ -621,6 +621,9 @@ def parse_graphql_video(video): 'url': playable_url, }) extract_dash_manifest(video, formats) + if not formats: + # Do not append false positive entry w/o any formats + return automatic_captions, subtitles = {}, {} is_broadcast = traverse_obj(video, ('is_video_broadcast', {bool}))