Audio compression to compress recording
이전 댓글 표시
I am making an app with app designer in matlab the app will record from user I have done this part.
but it is required them to compress that recorderd audio I have made the button for the compress but I can't figure out the way to compress that audio
Here is the code for the recording.
function RecordButtonPushed(app, event)
audioObject = audiorecorder;
duration = 7;
msgbox("Recording started");
recordblocking(audioObject, duration);
msgbox("Recording Stopped");
assignin('base','audioObject',audioObject)
end
That the handler for the recording button then I should compress that audio and play it.
So, anyone has an idea about how to compress the audio?
댓글 수: 3
Geoff Hayes
2020년 4월 26일
okh99 - do you want to reduce the sampling rate (and so reduce the total number of samples? or do you want to compress the audio recording file size?
okh99
2020년 4월 26일
Sampath Rachumallu
2020년 4월 28일
You can try the code in file exchange. Below is the link
답변 (0개)
카테고리
도움말 센터 및 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!