When extracting Audio streams using ffmpeg
from containers such as MP4, how does ffmpeg
increase bitrate, if it is higher than the source bitrate?
An example might be ffmpeg -i video.mp4 -f mp3 -ab 256000 -vn music.mp3
. What does ffmpeg
do if the incoming bitrate is 128k? Does it interpolate or default to 128k on the output music.mp3
? I know this seems like not a so-called "programming question" but ffmpeg
forum says it is going out of business and no one will reply to posts there.