gpt4 book ai didi

swift - AVAudioSourceNode如何设置设置格式

转载 作者:行者123 更新时间:2023-11-30 10:34:49 25 4
gpt4 key购买 nike

我正在使用新的 AVAudioSourceNode 提供要通过我的音频接口(interface)播放的样本流。

但是我发现 AVAudioSourceNode 正在选择它自己的格式设置。

engine.connect(srcNode, to: engine.mainMixerNode, format: stimulusFormat)

我使用上面的代码行使用“stimulusFormat”格式将源节点连接到主混音器我已经使用以下方法设置了此格式:

let stimulusFormat = AVAudioFormat(commonFormat: .pcmFormatFloat32,
sampleRate: Double(sampleRate),
channels: 1,
interleaved: format.isInterleaved)

(使用交错参数查询输出期望看到的内容)。但是,每当我查询 srcNode (AVAudioSourceNode) 的格式时,控制台都会返回

<AVAudioFormat 0x600002131810:  2 ch,  44100 Hz, Float32, non-inter>

很明显,连接代码行中没有设置流格式。我也尝试过更改首选采样率,但这仍然不会改变 AVSourceNode 采样率。我的音频引擎中的其他所有内容都以 48000Hz 运行,因此我不确定它从哪里获得这个数字。

try AVAudioSession.sharedInstance().setCategory(.playAndRecord)
try AVAudioSession.sharedInstance().setPreferredSampleRate(Double(sampleRate))

任何人都可以建议一种定义流格式的方法吗?

最佳答案

尝试使用

engine.connect(srcNode, to: engine.mainMixerNode, format: srcNode.inputFormat(forBus: 0))

关于swift - AVAudioSourceNode如何设置设置格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58277206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com