I am trying to convert the file with following code
File flacFile = new File(filePath);
AndroidAudioConverter.with(context)
// Your current audio file
.setFile(flacFile)
// Your desired audio format
.setFormat(AudioFormat.MP3)
.setCallback(callback)
// Start conversion
.convert();
Before conversion file was of size 71 KB approx. and after converting file size reduced to 21 KB. Also recorded audio length is also decreased. Infact every file's size reduced to 21KB only .
Hi,
I am trying to convert the file with following code
File flacFile = new File(filePath); AndroidAudioConverter.with(context) // Your current audio file .setFile(flacFile) // Your desired audio format .setFormat(AudioFormat.MP3) .setCallback(callback) // Start conversion .convert();
Before conversion file was of size 71 KB approx. and after converting file size reduced to 21 KB. Also recorded audio length is also decreased. Infact every file's size reduced to 21KB only .
Why is audio length reduced ?
Thanks in advance