Hello
I am getting an issue when convert audio wav to mp3 file. library add 5-10MS sound on initial level of mp3 file. Android code is in below
Mp3Converter.init(44100,2,0,44100,128,0);
fileSize = new File(sourcePath).length();
new Thread(new Runnable() {
@OverRide
public void run() {
Mp3Converter.convertMp3(sourcePath, destPath);
}
}).start();
handler.postDelayed(runnable, 500);
Please check Thanks
Hello
I am getting an issue when convert audio wav to mp3 file. library add 5-10MS sound on initial level of mp3 file. Android code is in below
Mp3Converter.init(44100,2,0,44100,128,0);
fileSize = new File(sourcePath).length();
new Thread(new Runnable() {
@OverRide
public void run() {
Mp3Converter.convertMp3(sourcePath, destPath);
}
}).start();
Please check Thanks