Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vertical Recording Issue - always record horizontal video #384

Open
faisvsqrl opened this issue Sep 19, 2023 · 2 comments
Open

Vertical Recording Issue - always record horizontal video #384

faisvsqrl opened this issue Sep 19, 2023 · 2 comments

Comments

@faisvsqrl
Copy link

Video cam recording always record as horizontal even param pass for vertical

const videoConstraints = { audio: false, video: { deviceId: selectedCamera, width: { ideal: 720 }, height: { ideal: 1280}, }, }; const audioConstraints = { audio: true }; const audioStream = await navigator.mediaDevices.getUserMedia(audioConstraints); const videoStream = await navigator.mediaDevices.getUserMedia(videoConstraints); setPermission(true); const combinedStream = new MediaStream([...videoStream.getVideoTracks(), ...audioStream.getAudioTracks()]); setStream(combinedStream);

@lukianenko
Copy link

Does it happen on iOS 17? Because I have the same problem in mobile safari.
IMG_5894
IMG_5895
It looks like the phone camera sends wrong video media stream size.

@mattigrthr
Copy link

mattigrthr commented Jan 25, 2024

As a workaround for now, you can add style={{ objectFit: "cover" }}. The underlying image is still in portrait but it at least it's displayed within the constraints.

For example:

<Webcam
     ref={webcamRef}
     audio={false}
     width={720}
     height={480}
     screenshotQuality={1}
     screenshotFormat="image/png"
     className="scale-x-[-1] rounded-lg max-w-full aspect-[3/2]"
     style={{ objectFit: 'cover' }}
     videoConstraints={{ width: 720, height: 480 }}
     onUserMedia={handleCameraLoaded}
/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants