MCPcopy Create free account
hub / github.com/Roy3838/Observer / AudioStreamResult

Interface AudioStreamResult

app/src/utils/tauriStreamCapture.ts:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83
84/** Result of starting an audio-only stream */
85export interface AudioStreamResult {
86 /** Screen audio as MediaStream */
87 audioStream: MediaStream;
88 /** Stop the audio capture and cleanup */
89 stop: () => Promise<void>;
90 /** Get the latest audio data (raw PCM) */
91 getLatestAudio: () => AudioData | null;
92}
93
94/**
95 * Unified Tauri screen capture - works on both mobile and desktop

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected