You are here

public function PHPVideoToolkit::canFormatBeMuxed in Video 7.2

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

Checks to see if a given format can be muxed by the current ffmpeg binary. @access public

Parameters

$format string The shortcode for the codec to check for.:

Return value

boolean True if the codec can be encoded by ffmpeg, otherwise FALSE.

File

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

Class

PHPVideoToolkit

Code

public function canFormatBeMuxed($format) {
  return $this
    ->validateFormat($format, 'mux');
}