In-built Audio Files
조회 수: 6 (최근 30일)
이전 댓글 표시
How can I find in built audio files?
댓글 수: 0
채택된 답변
Walter Roberson
2020년 10월 14일
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.
추가 답변 (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!