Skip to main content
Participant
November 2, 2010
Question

Anyone know the Audio mixing method?

  • November 2, 2010
  • 1 reply
  • 673 views

I searched audio mixing from pdfs.
but can't find audio mix process.
Anyone know the method of audio mixing?

-Hiromi

This topic has been closed for replies.

1 reply

November 2, 2010

API CallLegService.pushNewStream(legID, streamName) can be invoked multiple time to push multiple audio streams(with unique names) from FMS to FMG on single call.  FMG mixes them in real time and delivers the mixed audio to remote participant of the call.

     Example:

               myLegService.pushNewStream(<legID>, <streamToMix1>);

               myLegService.pushNewStream(<legID>, <streamToMix2>);

Participant
November 12, 2010

Hi

Is there any way to control the signal level/gain of individual streams?

Thanks

Kashaan

November 12, 2010

In a way,  each flash player generating the audio can control its own microphone gain using Microphone.gain. Sample Flash Phone's source contains a reference AS3 routine to monitor microphone activity. This should help for live audio inputs generated from Flash Players.