*** config_data.inc.orig Thu Jan 16 02:33:43 2003
--- config_data.inc Tue Jan 21 19:03:55 2003
***************
*** 151,156 ****
--- 151,172 ----
$common_messages["getting-imagemagick"],
"open-basedir-note" => $common_messages["open-basedir-active"],
),
+
+ "ffmpeg" => array(
+ "optional" => 1,
+ "desc" => "Check to see if ffmpeg is installed so that " .
+ "Gallery can create thumbnails for movies," ,
+ "func" => "check_ffmpeg",
+ "fail-ffmpeg" => "I can't find ffmpeg. If it's installed and not in " .
+ "the path of the webserver user that's OK -- you can specify the " .
+ "path to ffmpeg by hand on the following page. If it's not " .
+ "installed, you can install it yourself. " .
+ "ffmpeg is a public domain utility. Source, linux binaries, and " .
+ "windows binaries can be found at " .
+ "the sourceforge " .
+ "homepage.",
+ ),
+
"exif" => array(
"optional" => 1,
"desc" => "Check to see if jhead is installed so that " .
***************
*** 275,280 ****
--- 291,308 ----
"so if you don't have it, don't worry about it too much. Eg. " .
"/usr/local/bin/jhead or c:\\bin\\jhead.exe",
"value" => locateFile("jhead"),
+ "must-be-file" => 1,
+ "must-be-executable" => 1,
+ "optional" => 1,
+ "filename" => 1,
+ "attrs" => array("size" => 50),
+ ),
+ "use_ffmpeg" => array(
+ "prompt" => "FFMPEG",
+ "desc" => "The filesystem path to the 'ffmpeg' command. This is optional " .
+ "so if you don't have it, don't worry about it too much. Eg. " .
+ "/usr/local/bin/ffmpeg or c:\\bin\\ffmpeg.exe",
+ "value" => locateFile("ffmpeg"),
"must-be-file" => 1,
"must-be-executable" => 1,
"optional" => 1,