gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 06:16:46 25 4
gpt4 key购买 nike

这是一些代码段:

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吗?

谢谢!

最佳答案

您不能直接指定它。您唯一的选择是:

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

关于iphone - 我可以分配由 AVAssetExportSession 导出的 m4a 的采样率或比特率吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10223302/

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