| /expo/packages/expo-camera/src/ |
| H A D | WebUserMediaManager.ts | 62 isMuted: boolean, 70 if (!isMuted) { 79 isMuted: boolean = true 82 return await sourceSelectedAsync(isMuted, props.audio, props.video); 85 return await sourceSelectedAsync(isMuted, audio, video);
|
| /expo/packages/expo-camera/build/ |
| H A D | WebUserMediaManager.js | 46 async function sourceSelectedAsync(isMuted, audioConstraints, videoConstraints) { argument 50 if (!isMuted) { 55 export async function requestUserMediaAsync(props, isMuted = true) { argument 57 return await sourceSelectedAsync(isMuted, props.audio, props.video); 60 return await sourceSelectedAsync(isMuted, audio, video);
|
| H A D | WebUserMediaManager.d.ts | 6 }, isMuted?: boolean): Promise<MediaStream>;
|
| H A D | ExponentCamera.web.js | 74 const isMuted = true; constant 87 … React.createElement(Video, { autoPlay: true, playsInline: true, muted: isMuted, poster: poster,
|
| /expo/apps/native-component-list/src/screens/AV/ |
| H A D | Player.tsx | 41 setIsMutedAsync: (isMuted: boolean) => void; 56 isMuted: boolean; 188 isMuted={props.isMuted} 193 props.setIsMutedAsync(isMuted); 390 isMuted, 397 isMuted: boolean; 412 }, [isMuted]); 415 return isMuted || value <= 0; 416 }, [isMuted, value]); 427 onValueChanged({ volume, isMuted }); [all …]
|
| H A D | AudioPlayer.tsx | 38 isMuted: boolean; 46 isMuted: false, 121 _setIsMutedAsync = async (isMuted: boolean) => this._sound?.setIsMutedAsync(isMuted);
|
| H A D | VideoPlayer.tsx | 59 const setIsMutedAsync = async (isMuted: boolean) => video.current?.setIsMutedAsync(isMuted); 105 isMuted={status.isLoaded ? status.isMuted : false}
|
| /expo/packages/expo-video/ios/ |
| H A D | VideoModule.swift | 68 return player.pointer.isMuted in definition() 70 .set { (player, isMuted: Bool) in in definition() 71 player.pointer.isMuted = isMuted in definition()
|
| /expo/packages/expo-av/build/ |
| H A D | AV.types.d.ts | 165 isMuted: boolean; 228 isMuted?: boolean;
|
| H A D | AV.js | 43 isMuted: false, property 205 async setIsMutedAsync(isMuted) { argument 206 return this.setStatusAsync({ isMuted }); field
|
| H A D | AV.d.ts | 139 setIsMutedAsync(isMuted: boolean): Promise<AVPlaybackStatus>; 165 setIsMutedAsync(isMuted: boolean): Promise<AVPlaybackStatus>;
|
| H A D | ExponentAV.web.js | 73 isMuted: media.muted, 109 if (status.isMuted !== undefined) { 110 media.muted = status.isMuted;
|
| H A D | Video.types.d.ts | 201 isMuted?: boolean;
|
| H A D | Video.d.ts | 72 setIsMutedAsync: (isMuted: boolean) => Promise<AVPlaybackStatus>;
|
| /expo/packages/expo-av/src/ |
| H A D | AV.types.ts | 184 isMuted: boolean; 251 isMuted?: boolean;
|
| H A D | AV.ts | 54 isMuted: false, 331 setIsMutedAsync(isMuted: boolean): Promise<AVPlaybackStatus>; 404 async setIsMutedAsync(isMuted: boolean): Promise<AVPlaybackStatus> { 405 return (this as any as Playback).setStatusAsync({ isMuted });
|
| H A D | ExponentAV.web.ts | 87 isMuted: media.muted, 127 if (status.isMuted !== undefined) { 128 media.muted = status.isMuted;
|
| H A D | Video.types.ts | 228 isMuted?: boolean;
|
| /expo/packages/expo-video/src/ |
| H A D | VideoPlayer.ts | 13 isMuted: boolean; property in VideoPlayer
|
| /expo/packages/expo-video/build/ |
| H A D | VideoPlayer.d.ts | 12 isMuted: boolean; property in VideoPlayer
|
| H A D | VideoPlayer.js.map | 1 …/**\n * Boolean value whether the player is currently muted.\n */\n isMuted: boolean;\n\n /*…
|
| /expo/home/components/ |
| H A D | AudioPlayer.tsx | 27 isMuted: boolean; 51 isMuted: status.isMuted, 168 active={playback.isLoaded && playback.isMuted} 171 playback.sound.setIsMutedAsync(!playback.isMuted);
|
| /expo/apps/native-component-list/src/screens/Video/ |
| H A D | VideoScreen.tsx | 41 player.isMuted = !player.isMuted;
|
| /expo/apps/test-suite/tests/ |
| H A D | Audio.js | 324 isMuted: false, property 339 isMuted: false, property 540 await soundObject.loadAsync(mainTestingSource, { isMuted: true }); property 541 await retryForStatus(soundObject, { isMuted: true }); property 543 await retryForStatus(soundObject, { isMuted: false }); property
|
| /expo/packages/expo-av/android/src/main/java/expo/modules/av/ |
| H A D | AVManagerInterface.java | 20 float getVolumeForDuckAndFocus(boolean isMuted, float volume); in getVolumeForDuckAndFocus() argument
|