iOS 8 录音重放出现 OSStatus error 1685348671 / 2003334207 问题的解决办法
许多录音类 APP 都提供录音回放功能,大家在做这类 APP 的时候也经常会遇到这个需求。当大家用以前的套路在 iOS 8 上录音的时候,在模拟器上跑得挺好的,但是一上真机就跪了,为什么?因为真机底层是真实的硬件,跟模拟器还是有一些差别的,例如真机支持硬件解码等等。
在 iOS 8 上,录音并播放需要在录音前就申请“录音并播放”的 session(swift):
func setSessionPlayAndRecord() { let session:AVAudioSession = AVAudioSession.sharedInstance() var error: NSError? if !session.setCategory("AVAudioSessionCategoryPlayAndRecord", withOptions: AVAudioSessionCategoryOptions.DefaultToSpeaker, error:&error) { println("could not set session category") if let e = error { println(e.localizedDescription) } } if !session.setActive(true, error: &error) { println("could not make session active") if let e = error { println(e.localizedDescription) } } }
之后再开始录音,等录音结束后就可以正常播放啦。
← iOS 在 UIViewController 中手动增加 TableView 出现 Type 'SomeViewController' does not confirm to protocol 'UITableViewDataSource' 问题的解决办法
JohnLui/AliyunOSS v2.0 发布,大幅优化了 API 易用性,改进了文件结构 →
评论:
Chauyan
2015-05-25 15:18
2015-05-25 15:18
@mask:OC 的部分跟 Swift 差不多, 一樣是需要先設定 Session 為 PlayAndRecord.
接著錄完音在播放就行了.
AVAudioSession *session = [AVAudioSession sharedInstance];
[session setCategory:AVAudioSessionCategoryPlayAndRecord error:&setCategoryError];
if(setCategoryError){
NSLog(@"%@", [setCategoryError description]);
}
接著錄完音在播放就行了.
AVAudioSession *session = [AVAudioSession sharedInstance];
[session setCategory:AVAudioSessionCategoryPlayAndRecord error:&setCategoryError];
if(setCategoryError){
NSLog(@"%@", [setCategoryError description]);
}
2015-09-24 21:29
self.audioURL = NSUUID().UUIDString + "sound.m4a"
let pathComponents = [baseString, audioURL]
audioNSURL = NSURL.fileURLWithPathComponents(pathComponents)!
data.writeToFile(self.audioNSURL.path!, atomically: true) 音频写入路径
self.audioPlayer = try AVAudioPlayer(contentsOfURL: self.audioNSURL)
self.audioPlayer.prepareToPlay()
self.audioPlayer.play()
从网络下载音频存在了audioNSURL路径下,但是通过 self.audioPlayer = try AVAudioPlayer(contentsOfURL: self.audioNSURL) 播放,有的音频能播放,有的不能。不能播放的音频,我检查了audioNSURL路径下文件是存在的。能播放的音频插入耳机的时候才有声音 .
期待小伙伴们的帮助