Separate words in audio file
Ältere Kommentare anzeigen
Hello, I am trying to separate words in an audio file, leaving only samples between red lines, with also having a variable with a border of each word:

I understand I can remove the silence between words using
envelope = imdilate(abs(y), true(1500, 1));
quietParts = envelope < 0.05;
y(quietParts) = [];
but this does leave me without knowing the boundary between each of these words.
2 Kommentare
Arthur Goodhart
am 2 Nov. 2018
Did you ever work out how to do this?
Michael Saniuk
am 3 Nov. 2018
Akzeptierte Antwort
Weitere Antworten (1)
huda farooqui
am 1 Nov. 2018
0 Stimmen
I am facing the same problem .kindly help
Kategorien
Mehr zu Audio I/O and Waveform Generation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!