Register:
Do you like ffmpegX and want to support its development? Please register.
Download and install:
Click to download and install the latest version of ffmpegX for MacOSX 10.2, 10.3 et 10.4.

Mailing list:
If you want to receive an email when ffmpegX is updated, sign up to the mailing list by entering your email address here:

Support and feedback:
For support, check the FAQ page and the ffmpegX forum. You may also like to sign up the mailing list. Have a suggestion on how to make ffmpegX even more useful? Send your feedback and comments to major.

 

Home - News - Download - How-To's - Benchmarks - FAQ - Forum
HOW TO ENCODE A MOVIE IN FLV FLASH VIDEO FORMAT FOR YOUR WEBSITE OR BLOG WITH FFMPEGX FOR MAC OSX
  • This guide provides a step-by-step process to convert a movie into Flash Video, and set up your website to stream the movie directly on a http connection.

Opening the source movie
Choosing the preset
Encoding
Enable online viewing of the FLV file


Opening the source movie

  • You have an .AVI DivX, a VOB file, or a movie in some other format, and you want to encode it for playback on a website or blog. Currently, the best format for such use is FLV (Flash Video), as almost all browsers will display it natively without need of installing extra plugins. It is for example the format used in Google Video. FLV is played from within a SWF file, which supports pseudo-streaming, meaning that the playback will start immediately without need for the whole file to be downloaded first.

  • Open ffmpegX and drop your movie file to ffmpegX icon or "Open" field or "From" area to open it, or click the Open.. button to locate the file from your hard disk.
  • The "Save as..." name will be set by ffmpegX. You may modify it if needed.

Choosing the preset:

  • Click the Target Format pulldown menu in the Summary tab and choose "FLV".

  • You may change the preset values if you wish. Just remember that bigger image sizes, bitrate, framerate, etc will lead to bigger file sizes, and that you will probably burn out your bandwidth quota in a snap if you allow too large file sizes on a website.
  • You may go in the Filters tab to add cropping and/or padding if needed.
  • Subtitles are not supported (unless you create a file beforehand with subtitles burned in the image, and then encode such file).

Encoding:

  • Click the "Encode" button.
  • Encoding takes places in ffmpegX Progress window.
  • You can continue working with other applications while encoding. OSX Unix core reallocates processor ressources in realtime as needed.

    Enable online viewing of the FLV file:

    • Locate the encoded file by clicking the icon.
    • You may preview the file with the ffmpegX "Preview" button.
    • To make a webpage containing your movie, you need first a controller in SWF format. It is the SWF file which will be embedded in your webpage as a normal Flash element. The SWF file will load any FLV video files and display them on the page, as well as control any function like start/stop. There are many ways to make the SWF player, and there are many SWF open source players ready to use. I would suggest to download this one by Jeroen Wijering (but you may do your research and find better ones).
    • To make it work, just copy the files on your webserver, and replace the file "video.flv" with your own flv file as encoded above. Point your browser to the flvplayer.html file and you should see and hear the movie playing in the browser.

        

    • To customize the code used to embed the movie in the page, put this in your html page:

    <object type="application/x-shockwave-flash" width="320" height="260"

    wmode="transparent" data="flvplayer.swf?file=movies/holiday.flv&autoStart=false">

    <param name="movie" value="flvplayer.swf?file=movies/holiday.flv&autoStart=false" />

    <param name="wmode" value="transparent" />

    </object>

    • The height should be the height of the movie+20 to allow for the control bar.
    • The "file=" parameter provides the actual relative or absolute URL to the FLV file.
    • The "autoStart=" parameter can be set to false to avoid the movie beginning to play immediately (good to save bandwidth), and rather wait for a click.


      © Copyright 2003-2006 Major