mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-03 05:25:28 +00:00
Fixed output encoding for subtitles synchronization. #2323
This commit is contained in:
parent
f2cd79ec20
commit
72bd52ce79
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class SubSyncer:
|
|||
|
||||
self.ffmpeg_path = os.path.dirname(ffmpeg_exe)
|
||||
unparsed_args = [self.reference, '-i', self.srtin, '-o', self.srtout, '--ffmpegpath', self.ffmpeg_path, '--vad',
|
||||
self.vad, '--log-dir-path', self.log_dir_path]
|
||||
self.vad, '--log-dir-path', self.log_dir_path, '--output-encoding', 'same']
|
||||
if settings.subsync.force_audio:
|
||||
unparsed_args.append('--no-fix-framerate')
|
||||
unparsed_args.append('--reference-stream')
|
||||
|
|
Loading…
Reference in a new issue