필터 지우기
필터 지우기

reverb effect in MATLAB

조회 수: 45 (최근 30일)
adnan abid
adnan abid 2021년 1월 8일
편집: etai nardi 2022년 7월 13일
I am new to matlab. i want to know if i have a audio file how will i add reverb effect to it. All i could find out by now is that matlab already has a function for that if anyone could help with this i would be really thankful

채택된 답변

jibrahim
jibrahim 2021년 1월 11일
Hi Adnan,
You can accomplish this with the reverberator object in Audio Toolbox:
Here is an example where you read a signal from a file and add reverb to it:
[audioIn, fs] = audioread('speech_dft.mp3');
r = reverberator('SampleRate',fs);
audioOut = r(audioIn);
sound(audioOut,fs)
See the ref page for information about reverberation parameters you can set.
  댓글 수: 2
adnan abid
adnan abid 2021년 1월 11일
thank you so much for your help
etai nardi
etai nardi 2022년 7월 12일
편집: etai nardi 2022년 7월 13일
@jibrahim Can someone tell me how can I create a 0.1sec delay decaying reverb in an audio file using this command? I want to use the command in order to create a reverb accroding to the following impulse response in the photo.
willl be of great help.
Below I have attached a photo of the reverb I am trying to add to the audio using the reverberator command.
Thank you everyone!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Code Generation and Deployment에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by