hi friends,
recently i came across some interesting Linux commands to play multimedia files and to convert them to a different formats, say for example mp3 to .wav.
first let us see how to play multimedia files from command lines:
-> to play mp3 files:
mplayer filename.mp3
for this,mplayer has to be installed or you can use any other players
-> to play video files:
vlc filename.avi
then how to convert the files to other formats??????
There are plenty of tools that to convert an MP3 file into WAV format. I prefer mpg321 which is a free command-line mp3 player
to install the mpg123 in fedora Linux, turn on “rpmforge” repo and type the following command:
yum install mpg123
once the package get installed type the following command for conversion:
mpg123 -w output.wav input.mp3
hope it ll be useful
Thanks