Skip to content

Latest commit

 

History

History
116 lines (77 loc) · 1.89 KB

audio.rst

File metadata and controls

116 lines (77 loc) · 1.89 KB

Audio.

To configure audio devices:

$ alsamixer
$ pavucontrol

To hier voice from mic in speaker:

$ arecord | aplay
$ arecord -f cd | aplay -f cd

To list of available devices:

$ aplay -l
$ aplay -L
$ arecord -l
$ arecord -L

$ pactl list
$ sudo apt-get install sox
$ play -n synth sin 440 vol -40dB
$ play -n synth 10 square 100-10000 synth sin fmod 100 vol -40dB
$ sudo apt-get install alsa-tools-gui
$ hdajackretask

See also:

http://www.alsa-project.org/main/index.php/HDA_Analyzer
provides a graphical interface to access the raw HD-audio control
$ sudo apt-get install ffmpeg

or:

$ sudo apt-get install sox

List of sox supported format: See sox(1).

List of ffmpeg supported format:

$ ffmpeg -formats

TODO

$ sox in.mp3 out.ogg
$ sox in.ogg out.wav
... etc
$ flac -c -d $file.flac | lame -m j -q 0 -V 0 -s 44.1 - $file.mp3
$ mplayer -vo null -vc dummy -af resample=44100 -ao pcm:waveheader $file.wma
$ lame -m s audiodump.wav -o "$file.mp3
$ rm audiodump.wav
$ faad -o - $file.m4a | lame -V 0 - $file.mp3

Split mp3 and ogg files:

$ mp3splt

See:

http://mp3splt.sourceforge.net/mp3splt_page/home.php
              home page