Flashphoner v3 flash fallback, how to get access to audio?

enflicker

New Member
Hello,

I am wondering how to actually get access to the microphone when using a browser without WecRTC.
When I call "flashphoner.getAccessToAudioAndVideo()" on your sample client app, nothing happens. Users can have their flash microphone disabled so I can't just assume it always enabled.

thanks
 

Alex

Administrator
Staff member
When you are trying to call from our default client, Flash mic is attached to NetStream. At this moment you can see Flash Security palel which requests microphone access.
You can also display this panel before call using "openSettingsPanel" method.
You can also check if user has access to audio and video in Flash:
Code:
ExternalInterface.addCallback("hasAccessToAudio",hasAccessToAudio);
ExternalInterface.addCallback("hasAccessToVideo",hasAccessToVideo);
 
Top