Saya ingin bermain musik di terminal dengan 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...