1

AVAssetExportSessionファイルのメタデータを変更するために使用しようとしていますが、使用しようとしているメタデータが機能していないようです。空の配列を[AVAssetExportSession setMetadata:Array];ファイルに渡すと、本来のように未編集AVMetadataItemのメタデータが書き込まれますが、配列に を入れるとすぐにメタデータは新しいファイルに書き込まれません。私が使用したコードは次のとおりです。

//NSMutableArray *newArray = [NSMutableArray arrayWithArray:[exportSession metadata]];

AVMutableMetadataItem *addingNew = [[AVMutableMetadataItem alloc] init];
[addingNew setKeySpace:AVMetadataKeySpaceiTunes];
[addingNew setKey:AVMetadataiTunesMetadataKeyUserComment];
[addingNew setValue:[NSString stringWithFormat:@"This is my comment"]];

NSArray *newArray = [NSArray arrayWithObject:addingNew];

NSURL *fileURL = [NSURL fileURLWithPath: outputFile];

[exportSession setMetadata:metaMuteArray];
[exportSession setOutputURL:fileURL];
[exportSession setOutputFileType:AVFileTypeMPEG4];
[exportSession shouldOptimizeForNetworkUse:YES]; //false doesn't work either

[exportSession exportAsynchronouslyWithCompletionHandler:^{
    switch ([exportSession status])
    {
        case AVAssetExportSessionStatusCompleted:
            NSLog(@"Export sucess");
        case AVAssetExportSessionStatusFailed:
            NSLog(@"Export failed: %@", [[exportSession error] localizedDescription]);
        case AVAssetExportSessionStatusCancelled:
            NSLog(@"Export canceled");
        default:
            break;
    }
}];
4

1 に答える 1