How to record audio for infinite time?
6 ビュー (過去 30 日間)
古いコメントを表示
I am trying to build an audioplayer application. In order to make the application user friendly recording must be controlled by user. But recordblocking() always takes a certain time in seconds. How can I remove this time limit?
0 件のコメント
回答 (2 件)
jibrahim
2022 年 7 月 12 日
Hi Harsha,
deviceReader = audioDeviceReader;
while 1 % for example
% Record a frame
acquiredAudio = deviceReader();
end
0 件のコメント
Adithi
2022 年 7 月 14 日
Hello,
I understand that you are trying to figure out how to record audio for infinite time using recordblocking(). But the recordblocking takes 2 parameter recorderObj and the length of the audio. Since the purpose of this function is to record the audio and hold control until recording completes, we should look for other options like using record function.
Refer to the below documentation on for more information on record function.
Hope this helps!.
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!