4

オーディオ トラックが 2 つだけでビデオがないをセットアップしましたAVAssetExportSessionが、これは で希望AVPlayerどおりに再生されます - しかし、エクスポートしようとすると、利用できるのoutputFileTypeAVFileTypeQuickTimeMovie- オーディオ フォーマットを選択できないのはなぜですか?

私が得たときNSLog(@"%@", [session supportedFileTypes]);;

[51330:c07] (
    "com.apple.quicktime-movie"
)

これが私のコードです。

- (AVMutableComposition *)getComposition {
    AVAsset *backingAsset = [AVAsset assetWithURL:self.urlForEightBarAudioFile];
    AVAsset *vocalsAsset = [AVAsset assetWithURL:self.recorder.url];
    AVMutableComposition *composition = [AVMutableComposition composition];
    AVMutableCompositionTrack *compositionBackingTrack = [composition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];
    AVMutableCompositionTrack *compositionVocalTrack = [composition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];

    AVAssetTrack *backingAssetTrack = [backingAsset.tracks objectAtIndex:0];
    AVAssetTrack *vocalsAssetTrack = [vocalsAsset.tracks objectAtIndex:0];

    CMTimeRange timeRange = CMTimeRangeFromTimeToTime(kCMTimeZero, backingAsset.duration);

    [compositionBackingTrack insertTimeRange:timeRange ofTrack:backingAssetTrack atTime:kCMTimeZero error:nil];
    [compositionVocalTrack insertTimeRange:timeRange ofTrack:vocalsAssetTrack atTime:kCMTimeZero error:nil];

    return composition;
}


- (IBAction)acceptRecording:(id)sender {
    AVAssetExportSession * session = [[AVAssetExportSession alloc] initWithAsset:[self getComposition] presetName:AVAssetExportPresetMediumQuality];
    NSURL *output = [self.urlForPathToEightBarRecordings URLByAppendingPathComponent:@"mix.mov"];
    session.outputURL = output;
    session.outputFileType = AVFileTypeQuickTimeMovie;

    NSLog(@"%@", [session supportedFileTypes]);
    [session exportAsynchronouslyWithCompletionHandler:^() {
        switch (session.status) {
            case AVAssetExportSessionStatusCompleted:
                NSLog(@"It's done...hallelujah");
                break;

            default:
                break;
        }
    }];
}
4

2 に答える 2

7

ああ、そうですね、QuickTimeムービーのオプションしか提供されなかったのは、私のプリセットがAVAssetExportPresetMediumQualityビデオのみのプリセットに設定されていたからだと思います。プリセットをに設定しAVAssetExportPresetAppleM4A、出力ファイルの種類をに設定しAVFileTypeAppleM4Aてエクスポートしました。

于 2012-08-29T12:17:09.157 に答える