Write .wav file , from buffer ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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?
0 comentarios
Respuesta aceptada
Walter Roberson
el 15 de Mzo. de 2013
newleftchannel = segment(:);
newrightchannel = .... ?? %a column vector
wavwrite( [newleftchannel, newrightchannel], filename );
Más respuestas (0)
Ver también
Categorías
Más información sobre Audio Processing Algorithm Design en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!