diff --git a/migaku-player-converter.py b/migaku-player-converter.py index a675185..9bb4b3e 100644 --- a/migaku-player-converter.py +++ b/migaku-player-converter.py @@ -222,7 +222,7 @@ def convert_to_migaku_video(input_file): print(f"video codec is {stream['codec_name']}, will {'' if keep_video else 'not '}be kept") if stream["codec_type"] == "audio" and stream["index"] == audio_index: - if stream["codec_name"] in ["aac", "mp3", "opus", "flac", "ac3", "vorbis"]: + if stream["codec_name"] in ["aac", "mp3", "opus", "flac", "vorbis"]: keep_audio = True print(f"audio codec is {stream['codec_name']}, will {'' if keep_audio else 'not '}be kept") if stream["codec_type"] == "subtitle":