please help me to translate wavread to audioread

조회 수: 3 (최근 30일)
david chuang
david chuang 2020년 3월 18일
댓글: david chuang 2020년 3월 19일
how can i use audioread to express [x1, fs, bits]=wavread(location);
thanks

답변 (1개)

Geoff Hayes
Geoff Hayes 2020년 3월 18일
David - from audioread, you could do (assuming that location is the name of (and path to) the audio file
[x1,fs] = audioread(location);
If you need to know the bits per sample, then you can use audioinfo as
info = audioinfo(location);
to get a structure that will have a field corresponding to the bits per sample.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by