AVAudioEngine 实时音频播放问题
Posted
技术标签:
【中文标题】AVAudioEngine 实时音频播放问题【英文标题】:AVAudioEngine Realtime Audio Playing Issue 【发布时间】:2018-10-05 19:51:27 【问题描述】:我正在开发一键通功能,发送方可以将字节数组形式的音频发送到服务器,接收方可以通过套接字连接实时收听。
当我尝试使用 AVAudioEngine 在接收器端播放视频时,它不起作用。
let buffer = dataToPCMBuffer(format: format16KHzMono!, data: data)
let player = AVAudioPlayerNode()
self.audioEngine?.attach(audioPlayerNode)
let mixer = self.audioEngine?.mainMixerNode
self.audioEngine?.connect(player, to: mixer!, format: AVAudioFormat.init(commonFormat: AVAudioCommonFormat.pcmFormatInt16, sampleRate: 16000, channels: 1, interleaved: true) )
self.playerQueue.async
self.audioPlayerNode.scheduleBuffer(buffer!)
print("stopping")
if self.audioEngine!.isRunning
self.audioPlayerNode.play()
else
try? self.audioEngine?.start()
而且,我在给定行下方面临崩溃。
self.audioEngine?.connect(player, to: mixer!, format: AVAudioFormat.init(commonFormat: AVAudioCommonFormat.pcmFormatInt16, sampleRate: 16000, channels: 1, interleaved: true) )
任何帮助将不胜感激。
【问题讨论】:
你能发布崩溃吗? :124:_AVAE_CheckSuccessAndNoNSError: [AUInterface.mm:526:SetFormat: ([[busArray objectAtIndexedSubscript:(NSUInteger)element] setFormat:format error:&nsErr])] 返回 false,错误 Error Domain=NSOSStatusErrorDomain代码=-10868 "(null)" 我遇到了类似的问题;你最后解决了吗? 【参考方案1】:我认为这是您连接中的格式。尝试使用 nil 代替。采样率需要一些神奇的数字,也许 16000 不是其中之一。
【讨论】:
以上是关于AVAudioEngine 实时音频播放问题的主要内容,如果未能解决你的问题,请参考以下文章
使用 AVAudioEngine 从 AVAudioPCMBuffer 播放音频