Write .wav file , from buffer ?

How to convert back after using buffer function on a signal, e.g i have code
f=wavread('example.wav',native);
leftchanel=f(1:size(f),1);
rightchanel=f(1:size(f),2);
segment=buffer(leftchanel,512);
how do i convert back "segment" into "leftchanel" ? then what to do to combine the "leftchanel" and "rightchanel" back and rewrite it back to .wav file again? because :
wavwrite(y,filename);
only above write to wav code i can find, there is no chanel parameter in it? am i supposed to combine "rightchanel" and "leftchanel" into "f" first?

 채택된 답변

Walter Roberson
Walter Roberson 2013년 3월 15일

0 개 추천

newleftchannel = segment(:);
newrightchannel = .... ?? %a column vector
wavwrite( [newleftchannel, newrightchannel], filename );

댓글 수: 1

I Made
I Made 2013년 3월 16일
I actually figured it out myself a little different using for loop to combine it, but yours work great too. Thanks :D

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by