You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mediaRecorder.onstop=function(){if(mediaRecorder.state=='inactive'){// bug: it is a temporary workaround; it must be fixed.mediaRecorder=newMediaRecorder(mediaStream);mediaRecorder.ondataavailable=self.ondataavailable;mediaRecorder.onstop=self.onstop;mediaRecorder.mimeType=self.mimeType;mediaRecorder.start(timeSlice);}};
We must not call stop automatically and repeatedly.
start method must be invoked once until mediaRecorder.stop method is manually called by the end-user.
Regardless of whether it is Windows 7, 8 or Mac. MediaRecorder.js must work fine; all the time.
The text was updated successfully, but these errors were encountered:
MediaRecorder
must work fine on latest Firefox Nightlies; without any single crash.Bug: Line 27
stop
automatically and repeatedly.start
method must be invoked once untilmediaRecorder.stop
method is manually called by the end-user.Regardless of whether it is Windows 7, 8 or Mac.
MediaRecorder.js
must work fine; all the time.The text was updated successfully, but these errors were encountered: