extendable-media-recorder
Version:
An extendable drop-in replacement for the native MediaRecorder.
11 lines (7 loc) • 413 B
text/typescript
import { IRecorderAudioWorkletNode } from 'recorder-audio-worklet';
import { IMediaStreamAudioSourceNode, IMinimalAudioContext } from 'standardized-audio-context';
export interface IAudioNodesAndEncoderInstanceId {
encoderInstanceId: number;
mediaStreamAudioSourceNode: IMediaStreamAudioSourceNode<IMinimalAudioContext>;
recorderAudioWorkletNode: IRecorderAudioWorkletNode<IMinimalAudioContext>;
}