radio button to play song
Ältere Kommentare anzeigen
im trying to come up with the code for selecting a radio button and making it play a song... i have asked my instructor with no luck, my book says nothing... if someone can point me in a direction... that would be great. !
Akzeptierte Antwort
Weitere Antworten (1)
roget dubose
am 14 Mär. 2014
2 Kommentare
Benjamin Avants
am 15 Mär. 2014
You can read pretty much any audio file with
[y,Fs] = audioread('filename') ;
instead and the audio player will be initialized as
audioplayer(y,Fs);
If the audio data is in floating point format (shouldn't be with mp3) then you'll need to specify NBITS, the bits per sample.
roget dubose
am 15 Mär. 2014
Kategorien
Mehr zu Audio and Video Data finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!