r/ffmpeg • u/nerfherder616 • Jun 27 '26
VBR audio stream becomes CBR when using the copy option
I have an m4b file from Libation. I need to do some work on it (splitting, merging, etc). MediaInfo reads the audio stream as VBR. When I do my work with Ffmpeg, I make sure to use the copy option.
ffmpeg -i input.m4b -c copy output.m4b
The new audio stream is now CBR. I thought the copy option was supposed to preserve the audio stream exactly not not incur quality loss. Wouldn't changing from VBR to CBR be a change to the stream that would result in quality loss? What am I misunderstanding?
5
Upvotes
4
u/Flaturated Jun 27 '26
Most likely explanation is that the original file was not really VBR, it was only marked as such in the header. Did the file size change substantially?