我正在尝试从我的扬声器转录音频
我正在将声音从扬声器传输到 node.js 文件(https://askubuntu.com/a/850174)
parec -d alsa_output.pci-0000_00_1b.0.analog-stereo.monitor --rate=16000 --channels=1 | node transcribe.js
这是我的 transcribe.js
const speech = require('@google-cloud/speech');
const client = new speech.SpeechClient();
const encoding = 'LINEAR16';
const sampleRateHertz = 16000;
const languageCode = 'en-US';
const request = {
config: {
encoding: encoding,
sampleRateHertz: sampleRateHertz,
languageCode: languageCode,
},
interimResults: false, // If you want interim results, set this to true
};
const recognizeStream = client
.streamingRecognize(request)
.on('error', console.error)
.on('data', data => {
console.log(
`Transcription: ${data.results[0].alternatives[0].transcript}`
);
});
process.stdin.pipe(recognizeStream);
但是 Google Cloud Speech-to-Text 在大约 1 分钟内进行流式识别有一个限制。所以我有错误“超过 65 秒的最大允许流持续时间”。
如何将流拆分为静音作为拆分器的块或持续时间为 30 秒的块?