Andrii

Results 14 comments of Andrii

update: When I added props `fps={24}` to Camera component, video doesn't stretched anymore

yes, I'm sure. I did download the recorded video and watched it on my computer and the video also was be stretched.

If I don't use preset, recording video works well. I mean recorded video will not be stretched.

@dylan-westbury For works well. Using react-native-vision-camera: 2.12.1 ``` const newVideoPath = await new Promise((resolve, reject) => { cameraRef.current.startRecording({ fileType: `mp4`, videoCodec: Platform.OS === `android` ? undefined : `h264`, onRecordingFinished: (video)...

@qhulamm How did you detect fps for webm video format?

Will be enough to set false to isVideoMirrored in the [CameraView+Orientation.swift](https://github.com/mrousavy/react-native-vision-camera/blob/3ed019d018cce9ff20afb0fcc81146732419f17e/ios/CameraView%2BOrientation.swift#L39) file `connection.isVideoMirrored = false` https://github.com/mrousavy/react-native-vision-camera/blob/3ed019d018cce9ff20afb0fcc81146732419f17e/ios/CameraView%2BOrientation.swift#L39

> I wonder what `automaticallyAdjustsVideoMirroring` actually does? As I understand correctly the [`automaticallyAdjustsVideoMirroring`](https://developer.apple.com/documentation/avfoundation/avcaptureconnection/1387082-automaticallyadjustsvideomirrori) automatically adjusts the video mirroring based on the capture device's position, while [`isVideoMirrored`](https://developer.apple.com/documentation/avfoundation/avcaptureconnection/1389172-isvideomirrored) allows you to explicitly...