splitting an audio file into 1s, for max, audio files

Hello,
I searched for splitting an audio file into smaller audio files in MATLAB, but I couldn't find a clear way to do so.
Is there any way I can follow in MATLAB to split my audio file into smaller audio files where each file does not exceed 1s???
Regards

 Respuesta aceptada

Geoff Hayes
Geoff Hayes el 12 de Abr. de 2019
fatima - you could use audioread to read the data and then split into smaller ~1 second blocks of data. For example,
[y,Fs] = audioread(filename);
n = length(y);
for k = 1:Fs:n
audioBlock = y(k:min(k + Fs - 1, n), :);
% do something with this block
end
Note how we use the sampling frequency Fs (number of samples per second) to make sure that each audio block is of one second duration. We use
min(k + Fs - 1, n)
to handle the last audio block where we might not have Fs samples.
You could then use audiowrite to write the block to file. But do you really want to split the potentially large file into so many smaller ones?

3 comentarios

fatima alansari
fatima alansari el 12 de Abr. de 2019
Editada: fatima alansari el 12 de Abr. de 2019
Thank you Geoff ,
yes I do. I'll tell you why!
I'm working on detecting stuttering syllables in an audio signal.
To do so, I want to split the audio file then check each small file if it has a stutter.
I'll try using cross-correlation to compare the signals to find out which one is with a stutter.
First, I'll try using the way you mentioned in your answer.
Syed Islam
Syed Islam el 20 de Nov. de 2021
Hi i am new to matlab and i have a problem in which i have two audio signal "x" and "y". y is a snippet of x(full audio signal). Now i have to find where exactly y(snippet) is in x(full audio signal).

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Audio I/O and Waveform Generation en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 12 de Abr. de 2019

Comentada:

el 20 de Nov. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by