-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
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
Is there possible to adjust the volume of latency or turn off those live voice feedback? #160
Comments
Hi @YogarajRamesh the input channel used for recording the microphone is an AudioChannel like any other. As such, prior to invoking |
Hi @igorski ,
private class RecordOutputHandler implements View.OnClickListener { when i do the save with setRecordFromDeviceInputState. i am able to get the output with audio(voice). _engine.getInputChannel().setMuted( true ); Thank you @igorski |
Maybe I misunderstood. Am I correct that your intention is to: Record the microphone input with the input muted during playback |
Thank you so much for your time @igorski Yes you are correct |
Hi @igorski Eagerly waiting for your reply. Thanks in advance |
Hi, this is added in commit 6fe1355 When output recording is activated AND input recording is activated with a muted input channel, the input is written into the disk output (but remains inaudible on the device as before, to prevent feedback loops). // activate input recording with muted monitoring
MWEngineInstance.getInputChannel().setMuted( true );
MWEngineInstance.recordInput( true );
// record output handler
if ( shouldRecordOutput ) {
MWEngineInstance.startOutputRecording( Environment.getExternalStorageDirectory().getAbsolutePath() + "/path/file_name.wav" );
} else {
MWEngineInstance.stopOutputRecording();
} |
Hi @igorski |
Hi @igorski ,
While recording, their is live voice feedback (latency). In some older device those voices feed back is delayed by more than 200 milliseconds. So we need option to adjust the volume of latency or mute the live voice feedback while recording for those particular device.
Is there possible to adjust the volume of latency or turn off those live voice feedback?
Thanks in advance @igorski
The text was updated successfully, but these errors were encountered: