fix-webm-duration
fix-webm-duration copied to clipboard
navigator.mediaDevices.getUserMedia + MediaRecorder create WEBM files without duration metadata. This library appends missing metadata section right to the file blob.
Great library! It would be very nice if it was possible to run the first chunk received from MediaRecorder through this library to get a blob that has pre-allocated place...
I'm recording a canvas animation and trying to download it as webm file, when using this library I get 0xc00d3e8c error on the media player and duration is neither shown...
Hi, First of all thank you very much for this dev. I'm faced an issue when i make a record of more than 3 seconds. On Chrome, and VLC there...
this npm package can not be import correctly as below: `import fixWebmDuration from "fix-webm-duration";` when i use fixWebmDuration(myblob, duration); it reminds me of `Type 'typeof import("{mypath}/fix-webm-duration")' has no call signatures.`
Hey @yusitnikov, great work, thanks! I propose to add npm i command so devs can understand it is an official (yours) package on npm faster. Tested both commands on my...
I've been getting the message `[fix-webm-duration] Duration section is missing` when trying to add this to my app. On the latest Chrome on desktop Mac. I've tried both methods but...
Hello, My use case is i want to to have a screen recordered .webm file and extract the duration and fps value to do some processing. Up till now i...
Web js read all webm data in memory. But in a nodejs environment, you can process the data through streams,This means it can handle larger files. This is just a...
Im using react-webcam that uses MediaRecorder API to record my webcam video, when I try to fix the blob generated with the chunks of react-webcam, the video breaks in a...