diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-04-11 17:01:22 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-04-11 21:43:33 +0530 |
commit | 26010b5cec50193b98ad7845d1d77450f9f14c2b (patch) | |
tree | 2dde6dbbd8fe367b8ab68b0814335a19305b02a8 | |
parent | c6786ff3baaf72a5baa4d56d34058e54cbcf8ceb (diff) | |
download | hypervideo-pre-26010b5cec50193b98ad7845d1d77450f9f14c2b.tar.lz hypervideo-pre-26010b5cec50193b98ad7845d1d77450f9f14c2b.tar.xz hypervideo-pre-26010b5cec50193b98ad7845d1d77450f9f14c2b.zip |
[postprocessor/FixupDuplicateMoov] Fix bug in triggering
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index a7dced8e8..0d987dbb8 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3312,7 +3312,7 @@ class YoutubeDL: or info_dict.get('is_live') and self.params.get('hls_use_mpegts') is None, 'Possible MPEG-TS in MP4 container or malformed AAC timestamps', FFmpegFixupM3u8PP) - ffmpeg_fixup(info_dict.get('is_live') and downloader == 'DashSegmentsFD', + ffmpeg_fixup(info_dict.get('is_live') and downloader == 'dashsegments', 'Possible duplicate MOOV atoms', FFmpegFixupDuplicateMoovPP) ffmpeg_fixup(downloader == 'web_socket_fragment', 'Malformed timestamps detected', FFmpegFixupTimestampPP) |