I am writing a software that manipulates camera stream video in firefox.
I am generating a Blob with video type recorded with MediaRecorder API.
What i am doing to save the blob as video in local storage is using FileSaver library :
FileSaver.saveAs(BlobVideo,"video.mp4");
It seems the video doesnt have any max duration, so i cannot navigate in timeline in my newly generated video in VLC, for example.
Is there a way to set duration metadatas on a blob video?