In-built Audio Files

24 views (last 30 days)
Piyush Annigeri
Piyush Annigeri on 14 Oct 2020
Commented: Piyush Annigeri on 15 Oct 2020
How can I find in built audio files?

Accepted Answer

Walter Roberson
Walter Roberson on 14 Oct 2020
If you are on Mac or Linux, go into a shell and cd to the installation directory and
find . -depth \( -name \*.wav -o -name \*.ogg -o -name \*.flac -o -name \*.au -o -name \*.aiff -o -name \*.aif -o -name \*.aifc -o -name \*.mp3 -o -name \*.m4a -o -name \*.mp4 \) -print | tee /tmp/r2020a_audio.txt
About 116 show up on my system. The major directories are
examples/audio/data
examples/deeplearning_shared/data
examples/dsp/data
examples/matlab/data
examples/phased/data
toolbox/audio/samples
toolbox/dsp/dsp
toolbox/dsp/dspdemos
with a few others showing up as well.

More Answers (0)

Categories

Find more on Audio Processing Algorithm Design in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!