Home
last modified time | relevance | path

Searched refs:maxDuration (Results 1 – 22 of 22) sorted by relevance

/expo/packages/expo-camera/android/src/main/java/expo/modules/camera/
H A DOptions.kt19 @Field val maxDuration: Int = -1 constant in expo.modules.camera.RecordingOptions
H A DExpoCameraView.kt168 …if (cameraView.record(path, options.maxDuration * 1000, options.maxFileSize, !options.mute, profil… in <lambda>()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/camera/
H A DOptions.kt18 @Field val maxDuration: Int = -1 constant in abi47_0_0.expo.modules.camera.RecordingOptions
H A DExpoCameraView.kt168 …if (cameraView.record(path, options.maxDuration * 1000, options.maxFileSize, !options.muteValue, p… in <lambda>()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/camera/
H A DOptions.kt19 @Field val maxDuration: Int = -1 constant in abi48_0_0.expo.modules.camera.RecordingOptions
H A DExpoCameraView.kt168 …if (cameraView.record(path, options.maxDuration * 1000, options.maxFileSize, !options.muteValue, p… in <lambda>()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/camera/
H A DOptions.kt19 @Field val maxDuration: Int = -1 constant in abi49_0_0.expo.modules.camera.RecordingOptions
H A DExpoCameraView.kt168 …if (cameraView.record(path, options.maxDuration * 1000, options.maxFileSize, !options.mute, profil… in <lambda>()
/expo/ios/vendored/sdk49/react-native-gesture-handler/ios/Handlers/
H A DABI49_0_0RNTapHandler.m16 // because the latter does not allow for parameters like maxDelay, maxDuration, minPointers,
24 @property (nonatomic) NSTimeInterval maxDuration; property
211 recognizer.maxDuration = defaultMaxDuration;
232 recognizer.maxDuration = [ABI49_0_0RCTConvert CGFloat:prop] / 1000.0;
/expo/ios/vendored/unversioned/react-native-gesture-handler/ios/Handlers/
H A DRNTapHandler.m16 // because the latter does not allow for parameters like maxDelay, maxDuration, minPointers,
24 @property (nonatomic) NSTimeInterval maxDuration; property
211 recognizer.maxDuration = defaultMaxDuration;
232 recognizer.maxDuration = [RCTConvert CGFloat:prop] / 1000.0;
/expo/ios/vendored/sdk48/react-native-gesture-handler/ios/Handlers/
H A DABI48_0_0RNTapHandler.m16 // because the latter does not allow for parameters like maxDelay, maxDuration, minPointers,
24 @property (nonatomic) NSTimeInterval maxDuration; property
211 recognizer.maxDuration = defaultMaxDuration;
232 recognizer.maxDuration = [ABI48_0_0RCTConvert CGFloat:prop] / 1000.0;
/expo/ios/vendored/sdk47/react-native-gesture-handler/ios/Handlers/
H A DABI47_0_0RNTapHandler.m16 // because the latter does not allow for parameters like maxDelay, maxDuration, minPointers,
24 @property (nonatomic) NSTimeInterval maxDuration; property
210 recognizer.maxDuration = defaultMaxDuration;
231 recognizer.maxDuration = [ABI47_0_0RCTConvert CGFloat:prop] / 1000.0;
/expo/packages/expo-camera/build/
H A DCamera.types.d.ts216 maxDuration?: number;
H A DCamera.types.js.map1 …gOptions = {\n /**\n * Maximum video duration in seconds.\n */\n maxDuration?: number;\n /*…
H A DCamera.js.map1 …\n * The Promise is returned if `stopRecording` was invoked, one of `maxDuration` and `maxFileSi…
/expo/packages/expo-camera/src/
H A DCamera.types.ts240 maxDuration?: number;
H A DCamera.tsx285 …* The Promise is returned if `stopRecording` was invoked, one of `maxDuration` and `maxFileSize` i…
/expo/apps/test-suite/tests/
H A DCamera.js313 const response = await instance.recordAsync({ maxDuration: 2 }); property
331 const response = await instance.recordAsync({ maxDuration: 2 }); property
413 const response = await instance.recordAsync({ maxDuration: duration / 1000 }); property
/expo/ios/versioned/sdk47/EXCamera/EXCamera/
H A DABI47_0_0EXCamera.m611 if (options[@"maxDuration"]) {
612 Float64 maxDuration = [options[@"maxDuration"] floatValue];
613 self.movieFileOutput.maxRecordedDuration = CMTimeMakeWithSeconds(maxDuration, 30);
/expo/ios/versioned/sdk48/EXCamera/EXCamera/
H A DABI48_0_0EXCamera.m611 if (options[@"maxDuration"]) {
612 Float64 maxDuration = [options[@"maxDuration"] floatValue];
613 self.movieFileOutput.maxRecordedDuration = CMTimeMakeWithSeconds(maxDuration, 30);
/expo/ios/versioned/sdk49/EXCamera/EXCamera/
H A DABI49_0_0EXCamera.m645 if (options[@"maxDuration"]) {
646 Float64 maxDuration = [options[@"maxDuration"] floatValue];
647 self.movieFileOutput.maxRecordedDuration = CMTimeMakeWithSeconds(maxDuration, 30);
/expo/packages/expo-camera/ios/EXCamera/
H A DEXCamera.m651 if (options[@"maxDuration"]) {
652 Float64 maxDuration = [options[@"maxDuration"] floatValue];
653 self.movieFileOutput.maxRecordedDuration = CMTimeMakeWithSeconds(maxDuration, 30);