ios - combine/concatenate multiple audio files

强颜欢笑 提交于 2019-11-29 09:01:15
Aaron Hayman

I have done this. To do the concatenation you first need to load the audio files into AVAssets. Specifically, you'll want to use a subclass of AVAsset called AVURLAssets, which can load up your URL: Loading AVAsset. You can then add each AVAsset into a AVMutableComposition, which is designed to contain multiple AVAssets. Once you've gotten it loaded into AVMutableComposition, you can use AVAssetExportSession to write the composition to a file.

Note that AVAssetExportSession doesn't give you much control over the file output (it'll export audio into a m4a file). If you need more control over the type of output, you'll need to use the AVAssetReader and AVAssetWriter classes to perform the export rather than the AVAssetExportSession. These classes are much more complex to use than AVAssetExportSession and it pays here to understand straight C.

I will also point out that there are no Apple-provided options to write out MP3 files. You can read them, but you can't write them. It's generally best to stick with a m4a/aac format.

This is fairly simple using ExtAudioFile. In pseudocode what you want to do is:

1. Open the file you'll be using for output (ExtAudioFileOpen)
2. Set the client data format you'll use for ExtAudioFileWrite
3. For each input file you want to process:
    a. Open the file using ExtAudioFile
    b. Set the client data format used for reading to the same client format used in the output file for writing
    c. Loop through the input file using ExtAudioFileRead and save the data to the output file using ExtAudioFileWrite
    d. Close the input file
4. Close the output file
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!