I have developed a software that processes camera stream video specifically in Firefox.
Using the MediaRecorder API, I create a Blob containing video recordings.
To save this blob as a video in local storage, I utilize the FileSaver library:
FileSaver.saveAs(BlobVideo,"video.mp4");
However, I've noticed that the video does not have a set maximum duration, preventing me from navigating the timeline in VLC or other media players.
Is there a method to set duration metadata on a blob video?