webcamjs icon indicating copy to clipboard operation
webcamjs copied to clipboard

Edge Mobile (Android) requires video.play();

Open reneherbrich opened this issue 2 years ago • 0 comments

On Android with Edge Mobile the live video is not beeing displayed.

Solution:

if ("srcObject" in video) {
  video.srcObject = stream;
  video.play(); //added video.play(); to make it work with Edge Mobile on Android
}

reneherbrich avatar May 27 '22 10:05 reneherbrich