You are here

public function PHPVideoToolkit::hasVHookSupport in Video 7.2

Same name and namespace in other branches
  1. 7 libraries/phpvideotoolkit/phpvideotoolkit.php5.php \PHPVideoToolkit::hasVHookSupport()

Determines if the ffmpeg binary has been compiled with vhook support.

@access public

Return value

mixed. Boolean FALSE if there is no support, TRUE there is support.

1 call to PHPVideoToolkit::hasVHookSupport()
PHPVideoToolkit::addWatermark in libraries/phpvideotoolkit/phpvideotoolkit.php5.php
Adds a watermark to the outputted files. This effects both video and image output.

File

libraries/phpvideotoolkit/phpvideotoolkit.php5.php, line 872
Libary to access FFmpeg

Class

PHPVideoToolkit

Code

public function hasVHookSupport() {
  $info = $this
    ->getFFmpegInfo();
  return $info['binary']['vhook-support'];
}