Combining wavplay and filepath not working ?
    5 次查看(过去 30 天)
  
       显示 更早的评论
    
Can't we dynamically choose the file we wanted to play? i tried this :
    [FileName,PathName] = uigetfile('*.wav','Select Audio File ');
    wavplay(FileName,45040);
and i've tried :
    [FileName,PathName] = uigetfile('*.wav','Select Audio File ');
    FILE=fullfile(PathName, FileName);
    wavplay(FILE,45040);
I got this following error: Input arguments must be real uint8, int16, single, or double-precision.
3 个评论
  Walter Roberson
      
      
 2013-3-29
				Is anything else able to play the file? 'RIFF' is very common in WAV files but it needs to be followed by binary 0 not by '0'
回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Audio and Video Data 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

