<?php
// original ffmpeg command line is:
$cmd_ffmpeg = "$config[ffmpeg] -i $video_src -acodec mp3 -ar 22050 -ab 32 -f flv -b 700 $video_flv";
// I changed it to this to get higher quality video, adding the -b switch
$cmd_ffmpeg = "$config[ffmpeg] -i $video_src -acodec mp3 -f flv -b 700000 $video_flv";
To get FFMPEG in play instead of Mencoder in the first place, just a bit further down, change:
Code: Select all
$cmd_all = $cmd_mencoder;
to
Code: Select all
$cmd_all = $cmd_ffmpeg;
pretty simple. Thanks admin.
I made all the changes, but I don,t see any difference, what about the rest, did you do it in a video_conversion.php file?




Reply With Quote
Bookmarks