gpt4 book ai didi

cocoa - 在 Cocoa 应用程序中从 .mov 导出音频(aiff)文件格式

转载 作者:行者123 更新时间:2023-12-03 16:41:07 24 4
gpt4 key购买 nike

friend ,我尝试在我的应用程序中使用以下代码从 .mov 导出到 .aif。文件导出正确。但文件格式类型是AAC。那么您能告诉我如何在 cocoa 应用程序中导出 aif 格式吗?但文件仅保存为.aif 文件。但它只显示 AAC。我想要 AIFF 格式。

显示每个样本的位在该导出文件中没有任何内容。但是我从 qciktime 播放器手动将 mov 导出为 m4a 格式。在我将 m4a 导出为 aiff 后,从 itune 导出。格式正确。请告诉我哪里遗漏或错误

[manager createDirectoryAtPath:outputURL withIntermediateDirectories:YES attributes:nil error:nil];
outputURL = [outputURL stringByAppendingPathComponent:@"output.aif"];

//Remove Existing File
[manager removeItemAtPath:outputURL error:nil];

AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:mixComposition presetName:AVAssetExportPresetAppleM4A];
exportSession.outputURL = [NSURL fileURLWithPath:outputURL]; // output path;
exportSession.outputFileType = AVFileTypeAppleM4A;
exportSession.shouldOptimizeForNetworkUse = YES;

最佳答案

我有点晚了,但以防万一... AVFileTypeAIFF 而不是 AVFileTypeAppleM4A;

关于cocoa - 在 Cocoa 应用程序中从 .mov 导出音频(aiff)文件格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21794258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com