How can I control the timing of playing a sound?

16 次查看(过去 30 天)
Hi,
I'm trying to play a sound (clip is 10 seconds) for 5 seconds. How can I stop the sound after 5 seconds? I also want to play this sound file at 75 decibels. I know the function...
soundsc(y,[-.75 .75]);
How does this relate to decibels?
Thanks!

采纳的回答

Star Strider
Star Strider 2014-11-12
If you have a sound clip of length(y) = n, create y2 = y(1:fix(n/2),:) assuming y is a (nx2) array, then soundsc(y2) will play it for half the time y would play.
The intensity of the sound in dB is not determined by the sound functions in MATLAB but rather by the amplifier characteristics that output it to the whatever transducer you choose to use (speaker, headphones, etc.). You need to calibrate your sound system to determine and set the sound intensity.

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by