Borrar filtros
Borrar filtros

reverb effect in MATLAB

19 visualizaciones (últimos 30 días)
adnan abid
adnan abid el 8 de En. de 2021
Editada: etai nardi el 13 de Jul. de 2022
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

Respuesta aceptada

jibrahim
jibrahim el 11 de En. de 2021
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 comentarios
adnan abid
adnan abid el 11 de En. de 2021
thank you so much for your help
etai nardi
etai nardi el 12 de Jul. de 2022
Editada: etai nardi el 13 de Jul. de 2022
@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!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by