anonymous coward
anonymous coward

Reputation: 12824

Does ffmpeg pass a file through if it already conforms to the given transmux options?

Assuming I have an MP3 file with this qualities:

Question: If I provide that file to ffmpeg as input, using the command line arguments necessary to transmux it to an output file matching the aforementioned values, which of the following should I expect from the output result?:


Extra context:

I'd like to batch transmux a set of provided audio files. But there's a chance that some of those files already conform to a given standard.

I'm wondering if I need to check for those maximum values before handing the file to ffmpeg (to avoid unnecessary processing) or if that would be wasteful because ffmpeg is smart enough to handle that case?

Upvotes: 0

Views: 196

Answers (1)

jackhong
jackhong

Reputation: 36

ffmpeg will reencode file if you do not specify -c:a copy

Upvotes: 2

Related Questions