I have part of my system that uploads stream from mobile webapp in html5, it works for chrome browser on Android, in samsung internet browser the picture constantly freez sometimes from the beginning of record and sometimes suddenly during while recording, i have reproduced it by interrupting with for example a phone call while recording, any ideas?
the video tag and the constraints define as follow:
video = document.getElementById('vid');
video.setAttribute('autoplay', '');
video.setAttribute('muted', '');
video.setAttribute('playsinline', '');
video.style.width = '160px';
video.style.height = '90px';
//constraints:
video: {
mandatory: {
minWidth: CANVAS_WIDTH,
minHeight: CANVAS_HEIGHT,
maxWidth: CANVAS_WIDTH,
maxHeight: CANVAS_HEIGHT
}