You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
when i converted a wav file to mp3, the bitrate under windows is 80k, but under linux is 32k.
after checking the file properties, found:
windows mp3 format: MP3 32 Kbps VBR OFL
linux mp3 format: MP3 80 Kbps CBR
which i confused, why i had set the bitrate, but the result is different?
public static boolean wavToMp3(String sourceWavFile, String targetMp3File, int bitrate, int channel, int sampleRate) {
File source = new File(sourceWavFile);
File target = new File(targetMp3File);
Hi
when i converted a wav file to mp3, the bitrate under windows is 80k, but under linux is 32k.
after checking the file properties, found:
windows mp3 format: MP3 32 Kbps VBR OFL
linux mp3 format: MP3 80 Kbps CBR
which i confused, why i had set the bitrate, but the result is different?
public static boolean wavToMp3(String sourceWavFile, String targetMp3File, int bitrate, int channel, int sampleRate) {
File source = new File(sourceWavFile);
File target = new File(targetMp3File);
The text was updated successfully, but these errors were encountered: