mattdiamond / Recorderjs

A plugin for recording/exporting the output of Web Audio API nodes
4.16k stars 1.46k forks source link

How to limit audio recording time to 5min #185

Open Nunivenkatarao opened 6 years ago

Nunivenkatarao commented 6 years ago

Hi I have implemented and everything is working fine, But i am not able to restrict the audio recording for 5minutes is there any way to restrict that

I am converting audio to mp3

Thanks

Isaac-cura commented 6 years ago

In your startRecord method you can fire a timeout to your stopRecord metho like this

startRecord(){ setTimeout(function(){ stopRecord(); },5000); }

Isaac-cura commented 6 years ago

5000*60