Voglio riprodurre musica nel terminale con 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
La dimensione di music.wav
è +10 volte più grande di music.mp3
.
Non voglio convertire tutto *.mp3
in *.wav
.
È possibile aggiungere un gestore mp3 a sox?
libsox-fmt-all
superuser.com/a/421168/73961
sox -h
... esegui anche rapporti codec supportati dal programma ... controlla se mp3 è supportato ...