public function PHPVideoToolkit::disableAudio in Video 7
Same name and namespace in other branches
- 7.2 libraries/phpvideotoolkit/phpvideotoolkit.php5.php \PHPVideoToolkit::disableAudio()
* Disables audio encoding * * @access public *
Return value
boolean false on error encountered, true otherwise
1 call to PHPVideoToolkit::disableAudio()
- PHPVideoToolkit::extractFrames in libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php - * Extracts frames from a video. * (Note; If set to 1 and the duration set by $extract_begin_timecode and $extract_end_timecode is equal to 1 you get more than one frame. * For example if you set $extract_begin_timecode='00:00:00' and…
File
- libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php, line 1490
Class
Code
public function disableAudio() {
return $this
->addCommand('-an');
}