getaudiodata
녹음된 오디오 신호를 숫자형 배열로 저장
설명
예제
오디오 레코더 객체에서 데이터 가져오기
audiorecorder
객체를 사용하여 녹음을 한 다음 그 오디오 신호를 다양한 데이터형의 숫자형 배열로 가져옵니다.
audiorecorder
객체를 만들고 마이크를 사용하여 5초 분량의 오디오 클립을 녹음합니다.
recObj = audiorecorder;
disp('Start speaking.')
Start speaking.
recordblocking(recObj,5);
disp('End of Recording.');
End of Recording.
오디오 신호를 double
형 배열로 가져와서 데이터를 플로팅합니다.
doubleArray = getaudiodata(recObj);
plot(doubleArray);
title('Audio Signal (double)');
오디오 신호를 int8
형 배열로 가져와서 데이터를 플로팅합니다. 동일한 오디오 신호가 지정된 데이터형에 따라 다양한 값으로 반환됩니다. 아래의 경우 int8
형 배열의 값은 -128
과 127
사이에 있게 됩니다.
int8Array = getaudiodata(recObj,'int8'); plot(int8Array); title('Audio Signal (int8)');
입력 인수
recorder
— 오디오 레코더 객체
audiorecorder
객체
오디오 레코더 객체로, audiorecorder
객체로 지정됩니다. audiorecorder
함수를 사용하여 이 객체를 생성합니다.
dataType
— 데이터형
'double'
(디폴트 값) | 'single'
| 'int16'
| 'int8'
| 'uint8'
출력 오디오 신호의 데이터형으로, 값 'double'
, 'single'
, 'int16'
, 'int8'
, 'uint8'
중 하나로 지정됩니다.
데이터형: char
| string
출력 인수
y
— 오디오 신호 데이터
숫자형 배열
오디오 신호 데이터로, 숫자형 배열로 반환됩니다.
y
의 열 개수는 녹음 채널 개수에 따라 달라집니다. 즉, 모노이면 1개이고, 스테레오이면 2개입니다.
y
의 값 범위는 지정된 dataType
에 따라 달라집니다.
데이터형 | 샘플 값 범위 |
---|---|
| -128~127 |
| 0~255 |
| -32,768~32,767 |
| -1~1 |
버전 내역
R2006a에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)