How can I control the timing of playing a sound?
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Chelsea
el 12 de Nov. de 2014
Comentada: Star Strider
el 12 de Nov. de 2014
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!
0 comentarios
Respuesta aceptada
Star Strider
el 12 de Nov. de 2014
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.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Measurements and Spatial Audio 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!