Add metadata for video which recording by MediaRecorder

Viewed 645

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?

0 Answers
Related