How to read from audio device and write to .wav file?
조회 수: 2 (최근 30일)
이전 댓글 표시
I was wondering if it is possible to record audio from your speakers/headset and save it to a .wav file? I was able to write a program that records audio from your microphone and saves it but I am a little stuck on how to capture the audio from something like a youtube video and save it. Any ideas? This is the code I have at the moment and it works great but I want to record the audio output instead of recording my audio input (mic).
deviceReader = audioDeviceReader;
setup(deviceReader);
fileWriter = dsp.AudioFileWriter('test.wav', 'FileFormat', 'WAV');
tic
while toc < 10
aquiredAudio = deviceReader();
fileWriter(aquiredAudio);
end
release(deviceReader);
release(fileWriter);
댓글 수: 0
채택된 답변
Walter Roberson
2021년 1월 31일
On Windows, you need a special device driver for that, and it is incompatible with directsound . See https://www.mathworks.com/matlabcentral/answers/386734-how-do-i-get-sound-data-from-a-speaker#answer_309137
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!