We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Black screen appears on the push stream and the sound is not continuous, Thanks.
The text was updated successfully, but these errors were encountered:
The not continuous could be caused by echo. Could you provide some advise?
Sorry, something went wrong.
消除回声可以用 AcousticEchoCanceler @ChillingVan 在 mAudioRecord.startRecording() 之前执行
// 消除回声导致的滋啦滋啦声音 if (AcousticEchoCanceler.isAvailable()) { aec = AcousticEchoCanceler.create(mAudioRecord.getAudioSessionId()); if (aec != null) { aec.setEnabled(true); //android 11 issue low volume } } if (AutomaticGainControl.isAvailable()) { agc = AutomaticGainControl.create(mAudioRecord.getAudioSessionId()); if (agc != null) { agc.setEnabled(true); } } mAudioRecord.startRecording(); mMediaCodec.start();
No branches or pull requests
Black screen appears on the push stream and the sound is not continuous, Thanks.
The text was updated successfully, but these errors were encountered: