Open
Bug 1406855
Opened 8 years ago
Updated 3 years ago
Media resolution does not match settings in screen
Categories
(Core :: WebRTC: Audio/Video, defect, P3)
Tracking
()
UNCONFIRMED
People
(Reporter: mmzhw51, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
Steps to reproduce:
1、my computer is 1920*1080
2、I getusermedia with screen
Actual results:
constraints.video = {
mediaSource: 'screen',
width: {
max: 1584,exact: 1584,
min: 1584,ideal: 1584,
},
height: {
max: 1034,exact: 1034,
min: 1034,ideal: 1034,
},
aspectRatio:1584/1034
};
window.navigator.mediaDevices.getUserMedia(constraints).then(function (mediaStream) { }).catch(function (err) {});
the stream i get is 1584*890,not 1584*1034
Expected results:
the stream I get shoud be what I set(1584*1034),not 1584*890
Updated•8 years ago
|
Rank: 35
Priority: -- → P2
Updated•8 years ago
|
Priority: P2 → P3
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•