Separate words in audio file
이전 댓글 표시
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
Arthur Goodhart
2018년 11월 2일
Did you ever work out how to do this?
Michael Saniuk
2018년 11월 3일
채택된 답변
추가 답변 (1개)
huda farooqui
2018년 11월 1일
0 개 추천
I am facing the same problem .kindly help
카테고리
도움말 센터 및 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!