Our site is internal and not live on the internet yet...
Here is the contents of config.php
<?
error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
session_start();
$db_host = "localhost";
$db_user = "vshare";
$db_pass = "vshare";
$db_name = "vshare";
$config = array();
$config['ffmpeg'] = "/usr/bin/ffmpeg";
$config['mplayer'] = "/usr/local/bin/mplayer";
$config['mencoder'] = "/usr/local/bin/mencoder";
$config['flvtool'] = "/usr/bin/flvtool2";
$config['basedir'] = "/var/www/html/pro";
$config['baseurl'] = "http://ae/pro";
include("vshare.php");
?>
I checked the locations of the tools and all are correct. I am manually able to use ffmpeg to convert to .flv video via command line, and I can use mplayer to play videos. I am unsure of the correct syntax of mencoder, so I have not tested it to see if it converts properly. All files above are in the path, and if i type mencoder it executes and asks for input file etc...
EDIT: I figured out the command syntax for mencoder and it worked from command line as well...
I appreciate more assistance, thanks again.
Bookmarks