Skip to content

Commit

Permalink
Fixed output encoding for subtitles synchronization. #2323
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 authored Dec 15, 2023
1 parent f2cd79e commit 72bd52c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/subtitles/tools/subsyncer.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def sync(self, video_path, srt_path, srt_lang, media_type, sonarr_series_id=None

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')
Expand Down

0 comments on commit 72bd52c

Please sign in to comment.