commit
8cc007e315
|
@ -73,7 +73,7 @@ a:hover {
|
|||
|
||||
.video-content {
|
||||
height: 485px;
|
||||
background-color: black;
|
||||
// background-color: black;
|
||||
}
|
||||
|
||||
.half {
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
const contactsVideo = document.getElementById("contacts-video")
|
||||
|
||||
try {
|
||||
const contactsStream = navigator.mediaDevices.getUserMedia({
|
||||
audio: false,
|
||||
video: true
|
||||
}).then(stream => {
|
||||
contactsVideo.srcObject = stream;
|
||||
contactsVideo.muted = true;
|
||||
})
|
||||
} catch(e) {
|
||||
console.error(e);
|
||||
contactsVideo.innerHTML = "Unable to getUserMedia()";
|
||||
}
|
|
@ -15,7 +15,7 @@
|
|||
</div>
|
||||
<div class="video-feed half">
|
||||
<div class="video-content">
|
||||
<!-- <video id="contacts-video" autoplay=""></video> -->
|
||||
<video id="contacts-video" autoplay=""></video>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -29,5 +29,6 @@
|
|||
</form>
|
||||
|
||||
<%= javascript_pack_tag 'notifications' %>
|
||||
<%= javascript_pack_tag 'local_video' %>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue