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

Fullscreen + Camera not working in Chrome 80 on Windows 10 #91

Open
bisalwa opened this issue Feb 12, 2020 · 2 comments
Open

Fullscreen + Camera not working in Chrome 80 on Windows 10 #91

bisalwa opened this issue Feb 12, 2020 · 2 comments

Comments

@bisalwa
Copy link

bisalwa commented Feb 12, 2020

Up until chrome 79 on Windows 10, fullscreen + camera recording was working fine. However, in Chrome 80 which was released a couple of days ago, after initiating a Fullscreen + Camera recording on Chrome seems to hang and clicking on the badge (or on Stop Sharing) does not stop the recording.
On Mac with Chrome 80, there seems to be a delay on updating the time on the badge and a bit of a lag, however, the recording does stop.

@bisalwa
Copy link
Author

bisalwa commented Feb 12, 2020

Also, other options (including recording with Chrome tab and camera, just desktop, desktop and microphone) seem to work fine. It is just the full screen with camera is not working.

@bisalwa
Copy link
Author

bisalwa commented Feb 13, 2020

Update...changing

    constraints.video.mandatory.maxWidth = 3840;
    constraints.video.mandatory.maxHeight = 2160;

    constraints.video.mandatory.minWidth = 3840;
    constraints.video.mandatory.minHeight = 2160;

to

    constraints.video.mandatory.maxWidth = 1920;
    constraints.video.mandatory.maxHeight = 1080;

    constraints.video.mandatory.minWidth = 1920;
    constraints.video.mandatory.minHeight = 1080;

in

background.desktopCapture.js

seems to have mitigated the issue for now.

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

1 participant