second link.
http://tinyurl.com/d4ovk9
I need to convert some FLAC files to MP3 so I can listen to them in my car. Can anyone point me towards a free converter that won't turn my PC into a glowing virus infection?
Don't blame me, I didn't vote for either of those motherf*ckers.
second link.
http://tinyurl.com/d4ovk9
this looks safe
http://techie-buzz.com/how-to/how-to...es-to-mp3.html
Step 1: http://www.ehow.com/how_4716678_inst...g-windows.html
Step 2: ffmpeg -i input.flac -ab 196k -ac 2 -ar 48000 output.mp3
Finito!
If you want to get really spicy you can create a bash script to do an entire source directory into a destination directory! : )
Foobar2000 is very safe, I use it on my work and home computers. = )
Assuming you don't have any crazy filenames:
That'll get the filename of all FLACs in a dir, run them through ffmpeg and output them with the same filename with an mp3 extension.Code:#!/bin/sh for i in `ls *.flac` do ffmpeg -i $i.flac -ab 196k -ac 2 -ar 48000 $i.mp3 done
That shit aint gunna werk in windowes.
^When you said bash I assumed you weren't talking about winshit![]()
Oh, I was thinking batch and typed bash. My dumb.
I'm running a batch right now.
Heard good things about all2lame for windows. Pretty straightforward.
There are currently 1 users browsing this thread. (0 members and 1 guests)