fix: automatically select highest available video resolution
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
busti 2023-12-10 07:04:18 +01:00
parent 25ee3dd4f2
commit 64caa7e547

View file

@ -100,6 +100,12 @@ export default {
if (this.stream) this.allowed = true;
},
async assignStream() {
const capabilities = this.stream.getTracks()[0].getCapabilities();
await this.attemptGetUserMedia({
deviceId: capabilities.deviceId,
width: {exact: capabilities.width.max},
height: {exact: capabilities.height.max}
})
this.capturing = true;
this.streaming = false;
const {video} = this.$refs;