how can i play sound to the right stereo channel only?

11 次查看(过去 30 天)
The sound command sends sound to both earphones. how do I send a sound to just one?

采纳的回答

Star Strider
Star Strider 2016-2-14
The sound files are (usually) a (2xN) or (Nx2) matrix, one row or column for each channel. To have it play in only the right channel, set the other to a vector of zeros:
Fs = 44100;
t = linspace(0, Fs*2, Fs*2);
s = sin(2*pi*t*1000);
Out = [zeros(size(t)); s]';
sound(Out, Fs)
There is a problem with the sound on my laptop, so it’s not rendering this correctly. It should work on your computer.
  3 个评论
An
An 2024-2-6
Alireza Naghsh is right: Play works stereo, but when writing to file it doesn't seem to work.

请先登录,再进行评论。

更多回答(1 个)

Noam
Noam 2016-2-16
Thanks a lot Noam
  1 个评论
Jan
Jan 2016-2-16
Please accept the answer if it solves your problem. Use the section for answers for answers only. Thanks.

请先登录,再进行评论。

类别

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