How can I add predefined length to audio recorded from MediaRecorder in Chrome?

This is a chrome bug. FF does expose the duration of the recorded media, and if you do set the currentTimeof the recorded media to more than its actual duration, then the property is available in chrome… var recorder, chunks = [], ctx = new AudioContext(), aud = document.getElementById(‘aud’); function exportAudio() { var blob = … Read more