Skip to content

Commit

Permalink
do not support AAC -> AAC re-encoding because of output filename conf…
Browse files Browse the repository at this point in the history
…licts
  • Loading branch information
sinsanction committed Jan 3, 2024
1 parent 341869b commit 3293008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OKEGui/OKEGui/JobProcessor/Demuxer/EACDemuxer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ public MediaFile Extract(Action<double, EACProgressType> progressCallback)
continue;
}
if (jobAudioInfo.Lossy)
if (track.Codec != TrackCodec.EAC3 && track.Codec != TrackCodec.AAC)
if (track.Codec != TrackCodec.EAC3)
track.Codec = TrackCodec.FLAC;
}
if (track.Type == TrackType.Subtitle)
Expand Down

0 comments on commit 3293008

Please sign in to comment.