MediaRecorder Misses Last Blob #138
andrejhronco
announced in
! Welcome - readme first!
Replies: 2 comments
-
Let me know if this issue can be reproduced or if you need any more info. it's a simple fix that could prevent some confusion of why the last ~1sec is missing in people's videos. |
Beta Was this translation helpful? Give feedback.
0 replies
-
thank you for this fix! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When stopping recording, the last blob doesn't make it into the downloaded file (download gets called too soon, missing the last ~1sec of the recording). You can see this behavior if you log when
handleDataAvailable
gets called as well as whendownload
gets called fromstopRecording
. Ifdownload
is called on thestop
event, the recordedBlobs length is correct.mediaRecorder.onstop = download
Beta Was this translation helpful? Give feedback.
All reactions