I want to make an application that records user's voice but turns recording off when user stops to talk. How can I do that?
Asked
Active
Viewed 166 times
1
-
Create an event listener that handles the audio input. Once the audio level is below a predetermined threshold, you put the logic to stop the recording. – Ahmed Faisal Aug 14 '15 at 14:56
-
@Ahmed, How can I Create an event listener that handles the audio input. Do you have a link on this topic? – user101 Aug 17 '15 at 06:55