aboutsummaryrefslogtreecommitdiff
path: root/libraries/phpvideotoolkit/examples/example-config.php
diff options
context:
space:
mode:
authorHeshan <heshan@heidisoft.com>2011-03-17 12:42:05 +0530
committerHeshan <heshan@heidisoft.com>2011-03-17 12:42:05 +0530
commit87782dfb64baed1715634b08c51a5f2a6d77eebb (patch)
tree2fc2ab08845c7d0c07eb8ed22419e6d8cd45d419 /libraries/phpvideotoolkit/examples/example-config.php
parentc2132e3e04247ef8d39540161be895a9ceec63fd (diff)
parent972dd76d32128c6180271e5d10aff89a45f0ae74 (diff)
downloadvideo-87782dfb64baed1715634b08c51a5f2a6d77eebb.tar.gz
video-87782dfb64baed1715634b08c51a5f2a6d77eebb.tar.bz2
Merge branch '7.x-1.x' of git.drupal.org:project/video into 7.x-1.x
Diffstat (limited to 'libraries/phpvideotoolkit/examples/example-config.php')
-rw-r--r--libraries/phpvideotoolkit/examples/example-config.php70
1 files changed, 0 insertions, 70 deletions
diff --git a/libraries/phpvideotoolkit/examples/example-config.php b/libraries/phpvideotoolkit/examples/example-config.php
deleted file mode 100644
index 70540b7..0000000
--- a/libraries/phpvideotoolkit/examples/example-config.php
+++ /dev/null
@@ -1,70 +0,0 @@
-<?php
-
- /* SVN FILE: $Id$ */
-
- ini_set('error_reporting', E_ALL);
- ini_set('track_errors', '1');
- ini_set('display_errors', '1');
- ini_set('display_startup_errors', '1');
-
-// shortcut the DIRECTORY_SEPARATOR value
- if(!defined('DS'))
- {
- define('DS', DIRECTORY_SEPARATOR);
- }
-
-// define the paths to the required binaries
-// define('PHPVIDEOTOOLKIT_FFMPEG_BINARY', 'ffmpeg');
- define('PHPVIDEOTOOLKIT_FFMPEG_BINARY', 'c:/ffmpeg/ffmpeg.exe');
-// define('PHPVIDEOTOOLKIT_FFMPEG_BINARY', '/usr/local/bin/ffmpeg');
- define('PHPVIDEOTOOLKIT_FLVTOOLS_BINARY', '/usr/bin/flvtool2');
- define('PHPVIDEOTOOLKIT_MENCODER_BINARY', '/usr/local/bin/mencoder'); // only required for video joining
- define('PHPVIDEOTOOLKIT_FFMPEG_WATERMARK_VHOOK', '/usr/local/lib/vhook/watermark.dylib'); // only required for video wartermarking
- // define('PHPVIDEOTOOLKIT_FFMPEG_BINARY', 'xxxx');
-// define('PHPVIDEOTOOLKIT_FLVTOOLS_BINARY', 'xxxx');
-// define('PHPVIDEOTOOLKIT_MENCODER_BINARY', 'xxxx'); // only required for video joining
-// define('PHPVIDEOTOOLKIT_FFMPEG_WATERMARK_VHOOK', 'xxxx'); // only required for video wartermarking
-
-// define the absolute path of the example folder so that the examples only have to be edited once
-// REMEMBER the trailing slash
- define('PHPVIDEOTOOLKIT_EXAMPLE_ABSOLUTE_PATH', dirname(__FILE__).DS);
-
- if(PHPVIDEOTOOLKIT_FFMPEG_BINARY == 'xxxx' || PHPVIDEOTOOLKIT_FLVTOOLS_BINARY == 'xxxx' || PHPVIDEOTOOLKIT_MENCODER_BINARY == 'xxxx' || PHPVIDEOTOOLKIT_FFMPEG_WATERMARK_VHOOK == 'xxxx' || PHPVIDEOTOOLKIT_EXAMPLE_ABSOLUTE_PATH == 'xxxx')
- {
- die('<strong class="alert">Please open examples/example-config.php to set your servers values. Then <a href="?'.time().'">click here</a> to continue.</strong>');
-//<- exits
- }
-
-// use a particular version for the examples
- $use_version = 'php5';
- $has_version_warning = false;
-// check if php5 is ok
- if($use_version == 'php5' && version_compare(PHP_VERSION, '5.0.0', '<'))
- {
- $use_version = 'php4';
- $has_version_warning = true;
- }
-// print_r(array($use_version, version_compare('4', PHP_VERSION, '<')));
-// exit;
- if(!isset($ignore_demo_files) || !$ignore_demo_files)
- {
- $is_file = is_file(PHPVIDEOTOOLKIT_EXAMPLE_ABSOLUTE_PATH.'to-be-processed'.DS.'cat.mpeg');
- if($is_file)
- {
- if(!isset($ignore_config_output) || !$ignore_config_output)
- {
- echo '<span class="alert">Please note that this example requires demo files. If you have not got these demo files you can download them from <a href="http://www.buggedcom.co.uk/ffmpeg">here</a>.<br /><br />This example will now quit.</span>';
- exit;
- }
- }
- else
- {
- if(!isset($ignore_config_output) || !$ignore_config_output)
- {
- echo '<br />';
- }
- }
- }
-
-
- \ No newline at end of file