This "mod" will create a file that is smaller than the original uploaded file while retaining nearly all its quality.
Location: /flash/modules/video/inc
File: header_inc.php
CHANGE: LINE 17 "play" => $GLOBALS['sFfmpegPath'] . " -y -i #input# -r #fps# -s #size# -sameq #video_filters# #audio_options# #output#",
TO: LINE 17 "play" => $GLOBALS['sFfmpegPath'] . " -y -i #input# -r #fps# -s #size# -qmin 3 -qmax 6 #video_filters# #audio_options# #output#",
Additionally you can make the same change to LINE 19 for MOBILE (MP4) creation.
Leave h.264 UNCHECKED in Flash Module Settings to continue using FLV/Flash files like 7.0.0
Original 7.0.0 Video Mod Patch information and test results http://www.boonex.com/unity/forums/topic/Flash-Video-Quality-Mod-.htm
What is happening: ffmpeg.exe converts your uploaded video file to a Flash FLV and a Mobile MP4 file for playback. Setting -qmin 1 -qmax 1 = -sameq which will be as "lossless" as the conversion can be. Ideally we want to create an output file that looks as good as the original but at a fraction of the original size to reduce our bandwidth and hard-drive costs. My testing has found that setting -qmin 3 -qmax 6 will do just that.
Enjoy!
Sydeburnz