Borrar filtros
Borrar filtros

How to increase the length of an audio file with random white noise?

5 visualizaciones (últimos 30 días)
Hi, sorry if this does not make too much sense but here goes.
I have audio files, which are a second or less. I want to add random noise to the audio file (which is a wave file) at different levels of distortion too, so that the total audio length is 2.5 seconds. The level of random noise should be adjustable.
I am complete newby at Matlab and would appreciate the help.

Respuesta aceptada

Image Analyst
Image Analyst el 3 de Jul. de 2016
Use the semicolon operator. For a mono signal
[y, Fs] = audioread('guitartune.wav');
% Crop to 1 second
y = y(1:Fs);
% soundsc(y, Fs);
% Make noise
noiseSignal = rand(length(y), 1);
% Concatenate noise.
outputSignal = [y; noiseSignal];
% Play the sound
soundsc(outputSignal, Fs);

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