javascriptblobweb-mediarecordermediarecorder-api

Is there a size limit on MediaRecorder API record?


I'm using MediaRecorder API to record a video, the video is suppose to run for a few hours, It is eventually around 400MB in size, I want to know if there's a predefined limit on how much data can the browser store using the API.

I couldn't find it in MDN.


Solution

  • I've been looking in w3c standard and chromium's source code.

    And as it turns out, There is no standard for limiting records, every browser has its own implementation. Chrome's (chromium) limit seems to be only as the limit of its Blob's sizes that can be found here.