In my MATLAB scripts I’ve been doing something similar to the following to read .wav files;
[ref_data1,fs1,nbits1] = wavread('sample1.wav');
And from there I’ve been able to use ref_data1 nicely with other functions such as fft().
How can I do this if I have sample1 as a 3gp file?
Thanks.
From Matlab Documentation, if you have Matlab on a Mac you can use
VideoReaderit supports file Formats supported by QuickTime, including .3gp.Otherwise, I’d convert to
.wavoutside matlab.