それはいくつかのコードセグメントです:
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を圧縮できますか?
ありがとう!