Wednesday, 2 June 2021

Add metadata for video which recording by MediaRecorder

I'm using MediaRecorder to record animation from the canvas element. After downloading the video, the video information is empty (duration, bitrate, frame rate...)

enter image description here

Here is how I make the download URL

    const blob = new Blob(data, { type: 'video/webm' });
    const url = window.URL.createObjectURL(blob);

Is there any way to add metadata to download files?



from Add metadata for video which recording by MediaRecorder

No comments:

Post a Comment