필터 지우기
필터 지우기

pauses in audio data

조회 수: 3 (최근 30일)
Mengjia Lyu
Mengjia Lyu 2021년 1월 6일
답변: Kiran Felix Robert 2021년 2월 12일
Dear community,
Is there a way to insert timed pauses (say 1s pause) into an audio array in MATLAB?

답변 (1개)

Kiran Felix Robert
Kiran Felix Robert 2021년 2월 12일
Hi Mengjia,
You can use array concatenation to introduce pauses into an audio array.
Assuming you need to have a 1s pause and you will have Fs number of samples in one second (Fs is the sampling frequency), refer the following script for an example,
load gong.mat
% Fs -> Sampling Frequency
% y -> Audio data
% A 1 second pause, in one second you will have Fs number of samples
pause = zeros(Fs,1);
% New array Y
Y = [y(1:4201);pause;y(4202:end)]; % Array concatenation
sound(Y)

카테고리

Help CenterFile 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!

Translated by