关闭。这个问题需要更多
focused .它目前不接受答案。
Best Answer-推荐答案 strong>
可能有不止一种方法,但 AVAssetExportSession
简单且有效。
注意这会创建一个新文件。 AVFoundation
并没有真正做 修改。
#import <AVFoundation/AVFoundation.h>
#import <CoreMedia/CoreMedia.h>
// ...
NSURL *outputURL = [NSURL fileURLWithPath:[NSString stringWithFormat"%@/output.m4a", [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]]];
[[NSFileManager defaultManager] removeItemAtURLutputURL error:nil];
NSURL *inputURL = [[NSBundle mainBundle] URLForResource"foo" withExtension"m4a"];
AVAsset *asset = [AVAsset assetWithURL:inputURL];
AVAssetExportSession *session = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetPassthrough];
session.outputURL = outputURL;
session.outputFileType = AVFileTypeAppleM4A;
AVMutableMetadataItem *metaTitle = [[AVMutableMetadataItem alloc] init];
metaTitle.identifier = AVMetadataCommonIdentifierTitle; // more in AVMetadataIdentifiers.h
metaTitle.dataType = (__bridge NSString *)kCMMetadataBaseDataType_UTF8; // more in CoreMedia/CMMetadata.h
metaTitle.value = @"Choon!";
AVMutableMetadataItem *metaArtist = [[AVMutableMetadataItem alloc] init];
metaArtist.identifier = AVMetadataCommonIdentifierArtist;
metaArtist.dataType = (__bridge NSString *)kCMMetadataBaseDataType_UTF8;
metaArtist.value = @"Me, of course";
session.metadata = @[metaTitle, metaArtist];
[session exportAsynchronouslyWithCompletionHandler:^{
if (session.status == AVAssetExportSessionStatusCompleted) {
// hurray
}
}];
此示例适用于 m4a
文件,您需要将文件扩展名更改为 mp4
并将 outputFileType
更改为 AVFileTypeMPEG4
。
关于ios - 编辑 mp4/m4a 文件的元标记,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34578684/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) |
Powered by Discuz! X3.4 |