Good evening, I'm trying to figure out what the best method for converting my videos for a Wordpress website is. I record footage with my HD Camcorder and edit the video in Sony Vegas 9. This is where I need help. How should I render the video? The video player that I'm using on my wordpress website is http://rodrigopolo.com/about/wp-stream-video if you go there you will see that the author of the video player has two examples, one for HD and one for SD quality videos. That's what I want to do with my website. He did give the commands used to convert the mp4 video to flv using the .264 codec - my question is how do I get the mp4 video from Sony Vegas? the commands that the author provided were # SD HQ (512kbps) ffmpeg -y -threads 8 -i Input-For-Encoding.mp4 -s 640x352 -aspect 16:9 -r 24 -b 360k -bt 416k -vcodec libx264 -pass 1 -vpre fastfirstpass -an pre-SD-HQ-512kbps.flv && ffmpeg -y -threads 8 -i Input-For-Encoding.mp4 -s 640x352 -aspect 16:9 -r 24 -b 360k -bt 416k -vcodec libx264 -pass 2 -vpre hq -acodec libfaac -ac 2 -ar 44100 -ab 64k pre-SD-HQ-512kbps.flv # HD (2mbps) ffmpeg -y -threads 8 -i Input-For-Encoding.mp4 -s 1280x720 -aspect 16:9 -r 24 -b 1536k -bt 1792k -vcodec libx264 -pass 1 -vpre fastfirstpass -an pre-HD-2Mbps.flv && ffmpeg -y -threads 8 -i Input-For-Encoding.mp4 -s 1280x720 -aspect 16:9 -r 24 -b 1536k -bt 1792k -vcodec libx264 -pass 2 -vpre hq -acodec libfaac -ac 2 -ar 44100 -ab 128k pre-HD-2Mbps.flv http://rodrigopolo.com/wp-content/up...g-commands.txt So if anyone and tell me how to accomplish getting the mp4 file to begin with I would greatly appreciate it. Thanks a lot.