Hi @igorski
I am trying to post process the recorded voice by using below code snippet
_engine.getInputChannel().setMuted( false );
_engine.recordInput(false);
_engine.startInputRecording(
Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download/test/outputt2.wav”,true);
Then add effect to that recorded voice using below code snippet.
JavaUtilities.createSampleFromFile("ms07", Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download/test/outputt1.wav");
drumEvent1 = new SampleEvent(_sampler1);
drumEvent1.setSample(SampleManager.getSample("ms07"));
_sampler1.getAudioChannel().getProcessingChain().addProcessor(reverbSM);
AudioRenderer.renderEvent(
Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download/test/outputt11.wav",
drumEvent1,
_sampler1.getAudioChannel().getProcessingChain());
But the Rendered output having some noise along the voice.
Please check the attachment
Voice without effect
https://mega.nz/file/MV0W1IZI#mevMNFCPADtPiB6Q08rWEdxphmjvo8NqTx4RdfbJE_c
Voice with effect (having some noise)
https://mega.nz/file/YBVnhAbA#ByhrCK15jFmNqJpIoWaQUc3nDKhpKVDWj38D6vYz4qc
Thanks in advance
Hi @igorski
I am trying to post process the recorded voice by using below code snippet
Then add effect to that recorded voice using below code snippet.
But the Rendered output having some noise along the voice.
Please check the attachment
Voice without effect
https://mega.nz/file/MV0W1IZI#mevMNFCPADtPiB6Q08rWEdxphmjvo8NqTx4RdfbJE_c
Voice with effect (having some noise)
https://mega.nz/file/YBVnhAbA#ByhrCK15jFmNqJpIoWaQUc3nDKhpKVDWj38D6vYz4qc
Thanks in advance