我可以分配由AVAssetExportSession导出的m4a的采样率或比特率

时间:2012-04-19 07:16:16

标签: iphone ios avfoundation

这是一些代码段:

AVURLAsset *songAsset = [AVURLAsset URLAssetWithURL:assetURL options:nil];
AVAssetExportSession *exporter = [[AVAssetExportSession alloc]
                                      initWithAsset: songAsset
                                      presetName: AVAssetExportPresetAppleM4A];
NSLog (@"created exporter. supportedFileTypes: %@", exporter.supportedFileTypes);
exporter.outputFileType = @"com.apple.m4a-audio";
[exporter exportAsynchronouslyWithCompletionHandler:^{}.....

我用它从ipod库导出m4a。

此m4a文件的大小为10M。

我可以通过设置比特率的采样率来压缩m4a吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

您无法直接指定。您唯一的选择是:

NSString *const AVAssetExportPresetLowQuality;
NSString *const AVAssetExportPresetMediumQuality;
NSString *const AVAssetExportPresetHighestQuality;