我正在尝试接收传入的麦克风音频并将其传输到另一部iPhone。基本上是电话,但通过蓝牙。我通过AVAudioRecorder
传入了音频:
func startRecording() {
audioRecorder = nil
let audioSession:AVAudioSession = AVAudioSession.sharedInstance()
audioSession.setCategory(AVAudioSessionCategoryRecord, error: nil)
var recordSettings:NSMutableDictionary = NSMutableDictionary(capacity: 10)
recordSettings.setObject(NSNumber(integerLiteral: kAudioFormatLinearPCM), forKey: AVFormatIDKey)
recordSettings.setObject(NSNumber(float: 44100.0), forKey: AVSampleRateKey)
recordSettings.setObject(NSNumber(int: 2), forKey: AVNumberOfChannelsKey)
recordSettings.setObject(NSNumber(int: 16), forKey: AVLinearPCMBitDepthKey)
recordSettings.setObject(NSNumber(bool: false), forKey: AVLinearPCMIsBigEndianKey)
recordSettings.setObject(NSNumber(bool: false), forKey: AVLinearPCMIsFloatKey)
soundPath = documentsDirectory.stringByAppendingPathComponent("record.caf")
refURL = NSURL(fileURLWithPath: soundPath as String)
var error:NSError?
audioRecorder = AVAudioRecorder(URL: refURL, settings: recordSettings as [NSObject : AnyObject], error: &error)
if audioRecorder.prepareToRecord() == true {
audioRecorder.meteringEnabled = true
audioRecorder.record()
} else {
println(error?.localizedDescription)
}
}
然后我尝试使用来自@ martin-r
的HERE - StreamReader的StreamReader
使用:
if let aStreamReader = StreamReader(path: documentsDirectory.stringByAppendingPathComponent("record.caf")) {
while let line = aStreamReader.nextLine() {
let dataz = line.dataUsingEncoding(NSUTF8StringEncoding)
println (line)
然后使用以下方法将数据发送到另一台设备:
self.appDelegate.mpcDelegate.session.sendData(data: NSData!, toPeers: [AnyObject]!, withMode: MCSessionSendDataMode, error: NSErrorPointer )
我将行转换为NSData,然后使用dispatch_after 0.5秒不断运行,我通过蓝牙将其发送到另一台设备。
它似乎不起作用,我不认为这是一种实用的方法。我已经做了很多搜索,并且通过蓝牙在流数据上看不到多少。关键词流(可以理解)将我发送到有关服务器流的页面。
我的问题是,如何从麦克风中取出音频并通过蓝牙将其发送到另一部iPhone?我有蓝牙部分都设置好,它很棒。我的问题与THIS非常相似,除了iPhone和Swift之外 - 我想通过蓝牙拨打电话。
提前谢谢。
答案 0 :(得分:8)
要同时录制和重定向输出,您需要使用类别AVAudioSessionCategoryMultiRoute
。
如果所有其他方法都失败了,您可以使用预先制定的解决方案: http://audiob.us
它有一个API,可让您将音频流从一个应用程序集成到另一个应用程序: https://developer.audiob.us/
它支持多个输出端点。
希望这有帮助。