0

目前我允许用户录制自己的声音不超过 30 秒。一旦他们完成了他们的音频录制,我就会抓住他们音频的持续时间。我运行这个快速数学 (SixtySeconds-TheirAudioDuraion) = TimeNeededToFill。基本上我需要最终得到一个精确的 1 分钟轨道。其中一部分是实际音频,其余部分是静音音频。我目前正在使用 AVAudioPlayer 来完成我所有的录音。有没有一种编程方式来实现这一点,而不是一些蛮力破解,我开始将无声音轨文件塞在一起以创建单个文件?

需要简单的光彩,我们将不胜感激。

我最好的。

4

2 回答 2

2

这可以很容易地使用AVMutableComposionTrack insertEmptyTimerange.

// Create a new audio track we can append to
AVMutableComposition* composition = [AVMutableComposition composition];
AVMutableCompositionTrack* appendedAudioTrack = 
    [composition addMutableTrackWithMediaType:AVMediaTypeAudio
                             preferredTrackID:kCMPersistentTrackID_Invalid];

// Grab the audio file as an asset
AVURLAsset* originalAsset = [[AVURLAsset alloc]
    initWithURL:[NSURL fileURLWithPath:originalAudioPath] options:nil];

NSError* error = nil;

// Grab the audio track and insert silence into it
// In this example, we'll insert silence at the end equal to the original length 
AVAssetTrack *originalTrack = [originalAsset tracksWithMediaType:AVMediaTypeAudio];
CMTimeRange timeRange = CMTimeRangeMake(originalAsset.duration, originalAsset.duration);
[appendedAudioTrack insertEmptyTimeRange:timeRange];

if (error)
{
    // do something
    return;
}

// Create a new audio file using the appendedAudioTrack      
AVAssetExportSession* exportSession = [AVAssetExportSession
                                       exportSessionWithAsset:composition
                                       presetName:AVAssetExportPresetAppleM4A];
if (!exportSession)
{
    // do something
    return;
}


NSString* appendedAudioPath= @""; // make sure to fill this value in    
exportSession.outputURL = [NSURL fileURLWithPath:appendedAudioPath];
exportSession.outputFileType = AVFileTypeAppleM4A; 
[exportSession exportAsynchronouslyWithCompletionHandler:^{

    // exported successfully?
    switch (exportSession.status)
    {
        case AVAssetExportSessionStatusFailed:
            break;
        case AVAssetExportSessionStatusCompleted:
            // you should now have the appended audio file
            break;
        case AVAssetExportSessionStatusWaiting:
            break;
        default:
            break;
    }
    NSError* error = nil;

}];
于 2013-04-16T15:40:13.320 回答
0

我将录制 60 秒的静音已经“录制”,将其附加到用户录制,然后将总长度修剪为 60 秒。

这个 SO 问题avaudiorecorder-avaudioplayer-append-recording-to-file 在 Siddarth 的回答中对附加声音文件有一些参考。

这个 SO question trim-audio-with-ios包含有关修剪声音文件的信息。

于 2012-04-20T19:21:06.373 回答