Add -bitexact to MP3 encoding to suppress ffmpeg timestamp warning

This commit is contained in:
Maksim Totmin 2026-05-31 22:52:30 +07:00
parent 340b0dea9e
commit 6a841afaa0

View File

@ -165,6 +165,7 @@ class AudioConverter:
"-b:a", f"{audio_bitrate}k", "-b:a", f"{audio_bitrate}k",
"-ar", "44100", "-ar", "44100",
"-ac", "2", "-ac", "2",
"-bitexact",
"-map", "0:a", "-map", "0:a",
"-map", "0:t?", "-map", "0:t?",
"-id3v2_version", "3", "-id3v2_version", "3",