Skip to main content
Participant
January 24, 2014
Question

Audio drop outs during live recording

  • January 24, 2014
  • 1 reply
  • 870 views

Hi

My app allows users to record video and audio via their webcams.  If the user stops speaking for more than a second or two there seems to be an interruption to the recording....so when they start speaking again the first second (or so) of their audio doesn't get captured.  It's almost like Flash falls asleep when there's no voice input and then wakes up slightly too late to start recording again.

Ordinarily this wouldn't be an issue but my users want their recordings to be faultless and so aren't prepared to use the service unless every syllable gets recorded.

Any ideas on how to fix this would be greatly appreciated!

Elvin

    This topic has been closed for replies.

    1 reply

    Inspiring
    February 13, 2014

    Make sure you do:

    mic.setSilenceLevel(0);

    This will make it so data is still captured and streamed even when there is silence...

    ElvinTAuthor
    Participant
    February 14, 2014

    Fantastic!  Thanks a lot!