You are here

public static function PHPVideoToolkit::canFormatBeMuxed in Video 7

Same name and namespace in other branches
  1. 7.2 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 boolean True if the codec can be encoded by ffmpeg, otherwise false.

File

libraries/phpvideotoolkit/phpvideotoolkit.php5.php, line 2862

Class

PHPVideoToolkit

Code

public static function canFormatBeMuxed($format) {
  return self::validateFormat($format, 'mux');
}