Separate words in audio file
Show older comments
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 Comments
Arthur Goodhart
on 2 Nov 2018
Did you ever work out how to do this?
Michael Saniuk
on 3 Nov 2018
Accepted Answer
More Answers (1)
huda farooqui
on 1 Nov 2018
0 votes
I am facing the same problem .kindly help
Categories
Find more on Audio I/O and Waveform Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!