speechflow
Version:
Speech Processing Flow Graph
17 lines (16 loc) • 465 B
TypeScript
import SpeechFlowNode from "./speechflow-node";
export default class SpeechFlowNodeXIODevice extends SpeechFlowNode {
static name: string;
private io;
constructor(id: string, cfg: {
[id: string]: any;
}, opts: {
[id: string]: any;
}, args: any[]);
private audioDeviceFromURL;
private setupDuplexStream;
private setupInputStream;
private setupOutputStream;
open(): Promise<void>;
close(): Promise<void>;
}