Using sound function with .wav on MAC
이전 댓글 표시
I'm trying to play a .wav file on my MAC and I've seen a few posts online say that the sound function works for them. I've only been able to get it to work when using matlab demo sounds.
Am I just doing something wrong or will the song (.wav file) not play on a mac?
I used:
y = wavread('01_Bridge_Burning.wav') sound(y,Fs);
(It's for a school project.)
Thank you!
댓글 수: 3
Jan
2013년 2월 27일
You forgot to mention what is happening. Do you hear nothing or do you get an error message?
Meaghan
2013년 2월 27일
Jan
2013년 2월 27일
The favorable frequency is the frequency defined in the WAV file. Therefore it is obligatory to obtain this frequency as output when importing the WAV. Did you try the code I've posted?
3 minutes of iterations? You did not post any code with iterations.
답변 (1개)
Did you notice that you use FS without defining it? Perhaps you play a sound sampled at 44.1kHz with 8.000kHz, such that the recorded (low) frequence cannot be reproduced by the small speaker of your computer.
[y, Fs, nBits] = wavread(filename);
sound(y, Fs, nBits)
카테고리
도움말 센터 및 File 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!