1

Possible Duplicate:
How do you convert FLV file format to a format that Picasa recognizes (e.g. AVI, MPEG, WMV)?

Well i've been looking around google for hours trying to find a way on how to convert a FLV (Flash Video File) into an .AVI or .MP4 Video. There's something that let's me do this type of converts?

Kazuma
  • 113

3 Answers3

5
  1. Get the latest FFmpeg build from Zeranoe
  2. Extract the executable to a searchable path (e.g. %windir%)
  3. Use the following at the command prompt

    ffmpeg -i "your flv file.flv" "your avi file.avi"
    

There are a lot of other things that you can do with FFmpeg, for example trying to copy the video and audio streams instead of re-encoding the FLV file (which would result in noticeable quality loss):

ffmpeg -i "your flv file.flv" -vcodec copy -acodec copy "your avi file.avi"

This may or may not work depending on the codecs used in the original file.

slhck
  • 235,242
IUnknown
  • 2,326
  • 1
  • 19
  • 21
0

If you want something quick you can use:

http://www.mediaconverter.org/

or

http://www.zamzar.com/

or you can google it:

https://www.google.com/#hl=en&q=convert+videos+online

You don't have to download any programs for these, you just upload your video online and download the converted file.

gadgetmo
  • 786
  • 4
  • 9
  • 25
0

You could try using Pazera FLV to Avi converter

MrShoy
  • 21