在我们的一对一视频通话应用程序中,我们将麦克风增益设置如下:
mic.gain = 50;
问题在于,在某些电话中,另一方非常轻柔地通过。在这种情况下,我们希望自动增加麦克风增益。
似乎只允许MicrophoneEnhancedOptions.autoGain
属性。它在Flash Player 10.3 announcement中被暗示过;它也出现在Flash Builder的代码完整弹出窗口中。但是,此属性不在当前文档中,无论我们将其设置为false
,它似乎始终保持在var mic:Microphone = Microphone.getEnhancedMicrophone();
var options:MicrophoneEnhancedOptions = mic.enhancedOptions;
options.autoGain = true;
mic.enhancedOptions = options;
trace(String(mic.enhancedOptions.autoGain)); // Outputs "false"
:
MicrophoneEnhancedOptions.autoGain
请通过{{1}}或其他方式分享有关Flex中自动增益控制的任何建议。