Home > Net >  flutter : convert an audio file with the extension of aac to the extension of mp3
flutter : convert an audio file with the extension of aac to the extension of mp3

Time:11-15

I want to convert an audio file with the extension of aac to the extension of mp3 before uploading it to apis, because the process of listening to the audio does not respond to an audio file with the extension of aac.

code example

CodePudding user response:

Based on this documentation it is possible. https://pub.dev/packages/flutter_sound_suite

Can you share what is the error you are getting? Or like which version you are using etc?

Also there is a clear example on convert aac to mp3. https://pub.dev/packages/flutter_sound/versions/8.2.0/example

  • Related