I want a MATLAB code for removing silence from a speech signal..

조회 수: 1 (최근 30일)
Safi Khan
Safi Khan 2016년 9월 27일
답변: Walter Roberson 2016년 9월 27일
I need a short and simple code..

답변 (1개)

Walter Roberson
Walter Roberson 2016년 9월 27일
Suppose that your signal is stored in S. Then
newS = S( any(S,2), :);
This will create newS that has only the places where at least one of the sound channels is non-zero. For this purpose, I have defined "silence" as a sample value exactly equal to 0, of any duration.
Short and simple (and simplistic)

카테고리

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