In my iOS application I'm trying to export an mp3 file from the iPod library to the app's documents directory on the device. Currently I'm trying to use AVAssetExportSession but it's not working for mp3 files. It works well for m4a files.
Is exporting an mp3 file possible using AVAssetExportSession?
What is the appropriate outputFileType for AVAssetExportSession? (AVFileTypeAppleM4A works for m4a files)
Thanks!