diff --git a/src/components/widgets/VideoPlayer.vue b/src/components/widgets/VideoPlayer.vue index 4202da7e3..c278c5541 100644 --- a/src/components/widgets/VideoPlayer.vue +++ b/src/components/widgets/VideoPlayer.vue @@ -3,6 +3,13 @@
No video stream selected.
+
+

The selected stream is not available.

+

Please check its source or select another stream.

+
+
+ Loading stream... +
@@ -116,6 +123,10 @@ const streamConnectionRoutine = setInterval(() => { if (!isEqual(updatedMediaStream, mediaStream.value)) { mediaStream.value = updatedMediaStream } + + console.log('nameSelectedStream.value', nameSelectedStream.value) + console.log('mediaStream.value', mediaStream.value) + console.log('------------------') }, 1000) onBeforeUnmount(() => clearInterval(streamConnectionRoutine))