.flv => .mp3
conversion @ linux command line:
ffmpeg -i /media/sata1/mp3conv/song_name.flv -ab 128000 -ar 44100 /media/sata1/mp3conv/newMP3/song_name.mp3
128000 is the bit rate 128Kbps you can change that to whatever you want ...
44100 Hz is the sample rate
|