作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 node-microphone 从 nodejs 录制音频(这只是一个用于 arecord 的 javascript 接口(interface)),并且想要将流 block 存储在 AudioBuffer
中使用 web-audio-api (这是 Web Audio API 的 nodejs 实现)。
我的音频源有两个 channel ,而我的 AudioBuffer
只有一个(故意)。
这是我通过 USB 声卡使用 arecord 录制音频的工作配置(我使用的是在 Raspbian buster 上运行的 Raspberry pi 3):
arecord -D hw:1,0 -c 2 -f S16_LE -r 44100
Buffer
实例)到
AudioBuffer
的桥接。 .更确切地说;我不确定传入数据的格式,不确定目标格式,也不确定如何进行转换:
Buffer
s 所以他们也是
Uint8Array
s。关于我的配置,我猜它们是 16 位有符号整数的二进制表示(小端,我不知道这是什么意思)。
AudioBuffer
拥有多个缓冲区(每个 channel 一个,所以在我的情况下只有一个),我可以作为
Float32Array
访问调用
AudioBuffer.prototype.getChannelData()
.
MDN还说:
The buffer contains data in the following format: non-interleaved IEEE754 32-bit linear PCM with a nominal range between -1 and +1, that is, 32bits floating point buffer, with each samples between -1.0 and 1.0.
Buffer
中提取的内容。 s 以及我应该如何转换它以使其适合
Float32Array
目的地(并且保持有效的波形数据),知道音频源是立体声,
AudioBuffer
不是。
Buffer.prototype.readFloatLE()
名称看起来可以解决我的问题的方法,但这并不成功(只是噪音)。
Float32Array
和交错索引来处理立体声/单声道转换。显然它主要产生噪音,但我可以听到我录制的一些声音(令人难以置信的失真但肯定存在)所以我想我应该提到这一点。
import { AudioBuffer } from 'web-audio-api'
import Microphone from 'node-microphone'
const rate = 44100
const channels = 2 // Number of source channels
const microphone = new Microphone({ // These parameters result to the arecord command above
channels,
rate,
device: 'hw:1,0',
bitwidth: 16,
endian: 'little',
encoding: 'signed-integer'
})
const audioBuffer = new AudioBuffer(
1, // 1 channel
30 * rate, // 30 seconds buffer
rate
})
const chunks = []
const data = audioBuffer.getChannelData(0) // This is the Float32Array
const stream = microphone.startRecording()
setTimeout(() => microphone.stopRecording(), 5000) // Recording for 5 seconds
stream.on('data', chunk => chunks.push(chunk))
stream.on('close', () => {
chunks.reduce((offset, chunk) => {
for (var index = 0; index < chunk.length; index += channels) {
let value = 0
for (var channel = 0; channel < channels; channel++) {
value += chunk[index + channel]
}
data[(offset + index) / channels] = value / channels // Average value from the two channels
}
return offset + chunk.length // Since data comes as chunks, this offsets AudioBuffer's index
}, 0)
})
最佳答案
因此输入立体声信号以 16 位有符号整数的形式出现,左右声道交错,这意味着相应的缓冲区(8 位无符号整数)对于单个立体声样本具有以下格式:
[LEFT ] 8 bits (LSB)
[LEFT ] 8 bits (MSB)
[RIGHT] 8 bits (LSB)
[RIGHT] 8 bits (MSB)
AudioBuffer
单 channel 缓冲区,由
Float32Array
表示, 期望值在
-1
之间和
1
(每个样本一个值)。
Buffer
映射值到目的地
Float32Array
,我不得不使用
Buffer.prototype.readInt16LE(offset)
增加字节的方法
offset
每个样本 4 个参数(2 个左字节 + 2 个右字节 = 4 个字节),并从
[-32768;+32768]
范围内插入输入值(16 位有符号整数范围)到范围
[-1;+1]
:
import { AudioBuffer } from 'web-audio-api'
import Microphone from 'node-microphone'
const rate = 44100
const channels = 2 // 2 input channels
const microphone = new Microphone({
channels,
rate,
device: 'hw:1,0',
bitwidth: 16,
endian: 'little',
encoding: 'signed-integer'
})
const audioBuffer = new AudioBuffer(
1, // 1 channel
30 * rate, // 30 seconds buffer
rate
})
const chunks = []
const data = audioBuffer.getChannelData(0)
const stream = microphone.startRecording()
setTimeout(() => microphone.stopRecording(), 5000) // Recording for 5 seconds
stream.on('data', chunk => chunks.push(chunk))
stream.on('close', () => {
chunks.reduce((offset, chunk) => {
for (var index = 0; index < chunk.length; index += channels + 2) {
let value = 0
for (var channel = 0; channel < channels; channel++) {
// Iterates through input channels and adds the values
// of all the channel so we can compute the
// average value later to reduce them into a mono signal
// Multiplies the channel index by 2 because
// there are 2 bytes per channel sample
value += chunk.readInt16LE(index + channel * 2)
}
// Interpolates index according to the number of input channels
// (also divides it by 2 because there are 2 bytes per channel sample)
// and computes average value as well as the interpolation
// from range [-32768;+32768] to range [-1;+1]
data[(offset + index) / channels / 2] = value / channels / 32768
}
return offset + chunk.length
}, 0)
})
关于javascript - Node JS : Capturing a stereo PCM wave stream into mono AudioBuffer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61777531/
我是一名优秀的程序员,十分优秀!