基本上我希望连接AVAsset
个文件。我已经大致了解该怎么做,但我正在努力加载音频文件。
我可以使用AVAudioPlayer
播放文件,我可以通过终端在目录中看到它们,但是当我尝试使用AVAssetURL
加载它们时,它总是为轨道返回一个空数组。 / p>
我正在使用的网址:
NSURL *firstAudioFileLocation = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@%@", workingDirectory , @"/temp.pcm"]];
结果是:
file:///Users/evolve/Library/Developer/CoreSimulator/Devices/8BF465E8-321C-47E6-BF2E-049C5E900F3C/data/Containers/Data/Application/4A2D29B2-E5B4-4D07-AE6B-1DD15F5E59A3/Documents/temp.pcm
正在加载的资产:
AVAsset *test = [AVURLAsset URLAssetWithURL:firstAudioFileLocation options:nil];
但是在调用时:
NSLog(@" total tracks %@", test.tracks);
我的输出始终为total tracks ()
。
我后来要求将它们添加到我的AVMutableCompositionTrack
,最终导致应用程序崩溃,因为AVAsset
似乎没有正确加载。
我已经使用其他变体来加载资产,包括:
NSURL *alternativeLocation = [[NSBundle mainBundle] URLForResource:@"temp" withExtension:@"pcm"];
尝试使用文档中的选项加载AVAsset:
NSDictionary *assetOptions = @{AVURLAssetPreferPreciseDurationAndTimingKey: @YES};
如何从最近由AVAudioRecorder
创建的本地资源加载曲目?
修改
我蠢蠢欲动,发现我可以记录并加载.CAF文件扩展名。
似乎.PCM不支持AVAsset,这个页面也有很大的帮助。 https://developer.apple.com/documentation/avfoundation/avfiletype
答案 0 :(得分:3)
AVAsset负载不是瞬时的。您需要等待数据可用。例如:
AVAsset *test = [AVURLAsset URLAssetWithURL:firstAudioFileLocation options:nil];
[test loadValuesAsynchronouslyForKeys:@[@"playable",@"tracks"] completionHandler:^{
// Now tracks is available
NSLog(@" total tracks %@", test.tracks);
}];
可以找到更详细的示例in the documentation。