[FixupM3u8] Obey `--hls-prefer-mpegts`

Closes #3697
pull/3719/head
pukkandan 2 years ago
parent 3d38b2d6d0
commit 494f52308b
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

@ -3194,8 +3194,8 @@ class YoutubeDL:
downloader = downloader.__name__ if downloader else None
if info_dict.get('requested_formats') is None: # Not necessary if doing merger
fixup_live = info_dict.get('is_live') and self.params.get('hls_use_mpegts') is None
ffmpeg_fixup(downloader == 'HlsFD' or fixup_live,
ffmpeg_fixup(downloader == 'HlsFD' and not self.params.get('hls_use_mpegts')
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',

Loading…
Cancel
Save