feat: Implement WebcamFileSource for life webcam capture #12
1 changed files with 6 additions and 0 deletions
|
@ -100,6 +100,12 @@ export default {
|
||||||
if (this.stream) this.allowed = true;
|
if (this.stream) this.allowed = true;
|
||||||
},
|
},
|
||||||
async assignStream() {
|
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.capturing = true;
|
||||||
this.streaming = false;
|
this.streaming = false;
|
||||||
const {video} = this.$refs;
|
const {video} = this.$refs;
|
||||||
|
|
Loading…
Reference in a new issue