public function PHPVideoToolkit::hasVHookSupport in Video 7
Same name and namespace in other branches
- 7.2 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. * * @access public *
File
- libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php, line 835
Class
Code
public function hasVHookSupport() {
$info = $this
->getFFmpegInfo(true);
return $info['binary']['vhook-support'];
}