我正在制作一个 iOS 应用程序。它的功能之一是它可以保存记录和保存音频文件。
为了保存录制的音频文件的 URL,我将它们作为 filePaths 存储在 NSUserDefaults 中,如下所示:
file:///var/mobile/Containers/Data/Application/17F8E799-D7E1-4B3C-9DFE-7BA48E346314/Documents/recordName.aif
我正在使用一个名为“FVSoundWaveDemo”的库来尝试显示录制文件的声波。但是我的网址有问题...
“FVSoundWaveDemo”中的示例加载一个本地导入的文件,如下所示:
NSString* filename = [NSString stringWithFormat:@"song1.m4a"];
NSURL* url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:filename ofType:nil]];
_soundWaveView.soundURL = url;
您会看到带有“song1.m4a”的位,我想替换它并让应用程序改用 filePath URL。就像我在上面的问题中显示的 filePath URL 一样。
我已经尝试过各种各样的事情,比如尝试将 filePath “转换”为普通 URL 并尝试使用 AVAssets 等等。但我尝试的一切都出现了这个错误:
由于未捕获的异常“NSRangeException”而终止应用程序,原因:“*** -[__NSArrayM objectAtIndex:]:索引 0 超出空数组的范围”
这是因为我正在使用的库使用 AVAssets,如下所示:
AVAssetReader* reader = [[AVAssetReader alloc] initWithAsset:songAsset error:&error];
AVAssetTrack* songTrack = [songAsset.tracks objectAtIndex:0];
NSDictionary* outputSettingsDict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithInt:kAudioFormatLinearPCM],AVFormatIDKey,
[NSNumber numberWithInt:1],AVNumberOfChannelsKey,
[NSNumber numberWithInt:8],AVLinearPCMBitDepthKey,
[NSNumber numberWithBool:NO],AVLinearPCMIsBigEndianKey,
[NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey,
[NSNumber numberWithBool:NO],AVLinearPCMIsNonInterleaved,
nil];
那么我如何才能让 AVAsset 只与 filePath URL 一起工作呢?
请记住,我试图让它查看应用程序保存的录制音频文件,而不是开发人员可以添加到 Xcode 项目中的本地导入的音频文件。
我已经坚持了好几天了,如果你能帮助我,那将不胜感激,谢谢。
谢谢你的时间,丹。