3

I’ve got some video from the web in Flash video format (.flv). I want to convert it to h.264.

I’ve got Perian installed. QuickTime seems to play the video fine, but when I use any of the options to export it, I get audio, and a blank white screen instead of the video footage.

Are there any Mac OS X apps that convert FLV to h.264? (Command-line or GUI.)

4 Answers4

5

Have you tried Evom?

ghoppe
  • 6,558
  • 25
  • 21
1

You can do this with ffmpeg and no transcoding if the FLV contains an already H264 encoded video (quite common). Here's how I got it (assuming you have git and Xcode installed, e.g. that you can compile)

git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
./configure --enable-shared --disable-mmx --arch=x86_64
make
make install
ffmpeg -i "file.flv" -vcodec copy -acodec copy file.mkv

Optionally, you can convert the file.mkv to MP4 in Subler

RipperDoc
  • 457
1

VLC doesn't just play anything, it can also reencode things. If you need batch conversion with a GUI, you could do worse than AppGeeker (flv to mp4 h.264 mac). If you want batch conversion, and insanely precise control at the expense of an insanely obtuse command line interface, ffmpeg is the best thing ever.

Simon
  • 3,973
Dells Mark
  • 11
  • 1
0

HandBrake would be a better option, and is much faster than Evom for me.

hcharge
  • 101