speechflow
Version:
Speech Processing Flow Graph
17 lines (16 loc) • 450 B
TypeScript
import SpeechFlowNode from "./speechflow-node";
export default class SpeechFlowNodeA2AMeter extends SpeechFlowNode {
static name: string;
private emitInterval;
private calcInterval;
private silenceTimer;
private chunkBuffer;
private destroyed;
constructor(id: string, cfg: {
[id: string]: any;
}, opts: {
[id: string]: any;
}, args: any[]);
open(): Promise<void>;
close(): Promise<void>;
}