Home
last modified time | relevance | path

Searched refs:recordAsync (Results 1 – 7 of 7) sorted by relevance

/expo/apps/test-suite/tests/
H A DCamera.js281 const recordingPromise = instance.recordAsync();
294 .recordAsync({
313 const response = await instance.recordAsync({ maxDuration: 2 });
331 const response = await instance.recordAsync({ maxDuration: 2 });
370 await instance.recordAsync({ maxFileSize: 256 * 1024 }); // 256 KiB
389 const recordingPromise = instance.recordAsync();
413 const response = await instance.recordAsync({ maxDuration: duration / 1000 });
/expo/packages/expo-camera/build/
H A DCamera.d.ts131 recordAsync(options?: CameraRecordingOptions): Promise<{
H A DCamera.js236 async recordAsync(options) { method in Camera
H A DCamera.js.map1recordAsync(options?: CameraRecordingOptions): Promise<{ uri: string }> {\n if (!CameraManager.…
/expo/packages/expo-camera/src/
H A DCamera.tsx289 async recordAsync(options?: CameraRecordingOptions): Promise<{ uri: string }> {
291 throw new UnavailabilityError('Camera', 'recordAsync');
/expo/packages/expo-camera/
H A DCHANGELOG.md195 - Fix regression in video quality option of recordAsync() ([#13659](https://github.com/expo/expo/pu…
212 - On iOS added new `codec` parameter in `recordAsync()` method and new method `getAvailableVideoCod…
/expo/apps/native-component-list/src/screens/Camera/
H A DCameraScreen.tsx174 return await this.camera.recordAsync();