Voice
5 ビュー (過去 30 日間)
古いコメントを表示
I wrote a program that analysis a stereo voice file when I am trying to analysis a new voice file I have found error due to Mono file.
How can I change a stereo voice file to mono ?
0 件のコメント
回答 (1 件)
Wayne King
2012 年 5 月 6 日
If the stereo voice file is Nx2, then just extract 1 column
X = randn(2e4,2);
Y = X(:,1);
3 件のコメント
Image Analyst
2012 年 5 月 6 日
Or, since he already has his stereo analysis program written and done, just use repmat() to convert the new "Mono file" into a stereo file. This would make sure it doesn't break anything in his existing program that depends on the signal being stereo.
参考
カテゴリ
Help Center および File Exchange で Speech Recognition についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!