Skip to content

Commit

Permalink
[postprocessor/FixupDuplicateMoov] Fix bug in triggering
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan authored and aalsuwaidi committed Apr 21, 2024
1 parent ee3a3e4 commit 1da5026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/YoutubeDL.py
Expand Up @@ -3312,7 +3312,7 @@ def ffmpeg_fixup(cndn, msg, cls):
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)
Expand Down

0 comments on commit 1da5026

Please sign in to comment.