端末でsox
を使って音楽を再生したいです。
# install sox/lame
Sudo apt-get install sox
Sudo apt-get install lame
# play music
play music.mp3
# play FAIL formats: no handler for file extension `mp3'
# mp3 -> wav
lame --decode music.mp3 music.wav
# play music
play music.wav
~ $ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"
~ $ sox --version
sox: SoX v14.3.2
music.wav
のサイズはmusic.mp3
の10倍です。
すべての*.mp3
を*.wav
に変換したくありません。
mp3-handlerをsoxに追加することは可能ですか?
パイプ?
lame --decode music.mp3 - | play -
痕跡を残さないでください。
Libsox-fmt-mp3をインストールします。
Sudo apt-get install libsox-fmt-mp3