How to increase the length of an audio file with random white noise?
2 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Image Analyst
2016-7-3
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);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!