Revert "[ffmpeg] Set max probesize to workaround AAC HLS stream issues (#1109)"

This reverts commit 250a938de8.

This is no longer necessary since 7687c8ac6e
pull/1226/head
pukkandan 2021-10-10 02:56:30 +05:30
rodzic 28fe35b4e3
commit 91b6c884c9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0F00D95A001F4698
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -262,7 +262,7 @@ class FFmpegPostProcessor(PostProcessor):
oldest_mtime = min(
os.stat(encodeFilename(path)).st_mtime for path, _ in input_path_opts if path)
cmd = [encodeFilename(self.executable, True), encodeArgument('-y'), encodeArgument('-probesize'), encodeArgument('max')]
cmd = [encodeFilename(self.executable, True), encodeArgument('-y')]
# avconv does not have repeat option
if self.basename == 'ffmpeg':
cmd += [encodeArgument('-loglevel'), encodeArgument('repeat+info')]