I know many utilities that can tell me about the bitrate of an MP3 file, but I have never seen anything that can tell me whether an MP3 file is VBR (variable bit rate - the data rate fluctuates inside the file) or CBR (constant bit rate bits - the bit rate remains unchanged in the file). I assume that most programs are not interested in finding this, since it requires a file analysis to find out if the bitrate is changing, which removes the speed.
So, instead of looking for a utility, I would like to write one - so how could I programmatically determine if the MP3 file is VBR or CBR? I have about 15,000 files to find this, so I need to automate the process.
source
share