PDA

View Full Version : flv and progressive download


newbie_2
11-10-2006, 05:59 AM
Hi,

any idea witch settings are suitable for flv-videos that will be published with progressive download? I currently use:

$width = 470;
$height = 370;

SimpleSet('video_options_SetVideoCodec', CODEC_VP6);
SimpleSet('video_options_SetRateControlType', VBR_2PASSControl);
SimpleSet('video_options_SetCompressMode', COMPRESSMODE_BEST);
SimpleSet('video_options_SetVideoFramerate', 25);
if($srcw != $width) SimpleSet('video_options_SetImageWidth', $width);
if($srch != $height) SimpleSet('video_options_SetImageHeight', $height);
SimpleSet('video_options_SetKeyframeInterval', ($framerate * 12));
SimpleSet('video_options_SetKeyframeIntervalType', MAX_KEYFRAMES);
SimpleSet('video_options_SetMaximumBitrate', 300);
SimpleSet('video_options_SetUseMaximumBitrate', on2true);
SimpleSet('audio_options_SetBitrate', 64);
SimpleSet('audio_options_SetSamplingrate', 22050);

are these settings o.k.?

kerrizor
11-16-2006, 12:09 PM
They're pretty close to "optimal" - I mean, they're what *I'm* using (although I don't resample the audio)