1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linux で録音と再生

Posted at

モノラルで録音

$ arecord -t wav -d 5 mono.wav
録音中 WAVE 'mono.wav' : Unsigned 8 bit, レート 8000 Hz, モノラル

録音を再生

$ aplay mono.wav 
再生中 WAVE 'mono.wav' : Unsigned 8 bit, レート 8000 Hz, モノラル

ステレオで録音

$ arecord -t wav -d 5 -c 2 stereo.wav
録音中 WAVE 'stereo.wav' : Unsigned 8 bit, レート 8000 Hz, ステレオ

録音を再生

$ aplay stereo.wav 
再生中 WAVE 'stereo.wav' : Unsigned 8 bit, レート 8000 Hz, ステレオ

Ubuntu 20.04 で確認しました。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?