@streamoji/aitwin 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aitwin.cjs +6 -6
- package/dist/aitwin.js +2125 -2117
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -300,6 +300,9 @@ export declare type AvatarTtsLipsyncController = {
|
|
|
300
300
|
setLipsyncWarmupHold: (enabled: boolean, shouldHold?: () => boolean) => void;
|
|
301
301
|
/** Live MediaStream of the synthesized voice for recording/mixing (null until audio is primed). */
|
|
302
302
|
getVoiceStream: () => MediaStream | null;
|
|
303
|
+
/** Mute/unmute speaker output (capture stream stays live). */
|
|
304
|
+
setMuted: (muted: boolean) => void;
|
|
305
|
+
isMuted: () => boolean;
|
|
303
306
|
setPlaybackSpeed: (rate: number) => void;
|
|
304
307
|
getPlaybackSpeed: () => number;
|
|
305
308
|
subscribe: (listener: () => void) => () => void;
|