mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
parent
3d38b2d6d0
commit
494f52308b
1 changed files with 2 additions and 2 deletions
|
@ -3194,8 +3194,8 @@ def ffmpeg_fixup(cndn, msg, cls):
|
||||||
downloader = downloader.__name__ if downloader else None
|
downloader = downloader.__name__ if downloader else None
|
||||||
|
|
||||||
if info_dict.get('requested_formats') is None: # Not necessary if doing merger
|
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' and not self.params.get('hls_use_mpegts')
|
||||||
ffmpeg_fixup(downloader == 'HlsFD' or fixup_live,
|
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',
|
'Possible MPEG-TS in MP4 container or malformed AAC timestamps',
|
||||||
FFmpegFixupM3u8PP)
|
FFmpegFixupM3u8PP)
|
||||||
ffmpeg_fixup(info_dict.get('is_live') and downloader == 'DashSegmentsFD',
|
ffmpeg_fixup(info_dict.get('is_live') and downloader == 'DashSegmentsFD',
|
||||||
|
|
Loading…
Reference in a new issue