我有用于保存mp3文件的代码
NSArray *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *docDirectory = [documentPath objectAtIndex:0];
NSString *fileName = [[NSString alloc] initWithFormat:@"%@%@.mp3", dateString ,timeString ];
NSURL* fileURL = [NSURL URLWithString:myString];
NSError* error = nil;
NSData* data = [NSData dataWithContentsOfURL:fileURL options:0 error:&error];
NSString *savePath = [docDirectory stringByAppendingPathComponent:fileName];
[data writeToFile:savePath atomically:YES];
现在我想通过 MPMoviePlayerController
读取此文件如何获取路径或nsurl文件
---与此相同的代码
NSURL * urlv = [[NSURL alloc] initWithString:myString];
avPlayer = [[MPMoviePlayerController alloc] initWithContentURL:urlv];
[avPlayer prepareToPlay];
[avPlayer play];
请帮助搜索mystrig或nsurl源
答案 0 :(得分:8)
NSString *filename = @"whatever you've saved your filename as";
NSArray *pathArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
NSString *documentsDirectory = [pathArray objectAtIndex:0];
NSString *yourSoundPath = [documentsDirectory stringByAppendingPathComponent:filename];
if ([[NSFileManager defaultManager] fileExistsAtPath:soundPath])
{
NSURL *soundURL = [NSURL fileURLWithPath:soundPath isDirectory:NO];
}
//Then just init your player with the contents of that URL