diff options
author | Dalyn Cessac <dalyn.cessac@1214036.no-reply.drupal.org> | 2011-03-16 13:02:17 -0500 |
---|---|---|
committer | Dalyn Cessac <dalyn.cessac@1214036.no-reply.drupal.org> | 2011-03-16 13:02:17 -0500 |
commit | 8d5c044ae91efb64ef7d85f6371b043d981a3829 (patch) | |
tree | d35ed75adf64c4028ebdce517cdca164dd73c112 /libraries/phpvideotoolkit/examples/example-config.php | |
parent | 8ba51e62308276de5240e8ee3569e41f29c36ada (diff) | |
download | video-8d5c044ae91efb64ef7d85f6371b043d981a3829.tar.gz video-8d5c044ae91efb64ef7d85f6371b043d981a3829.tar.bz2 |
Removed phpvideotoolkit examples
Diffstat (limited to 'libraries/phpvideotoolkit/examples/example-config.php')
-rw-r--r-- | libraries/phpvideotoolkit/examples/example-config.php | 70 |
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 |