public function PHPVideoToolkit::disableAudio in Video 7.2
Same name and namespace in other branches
- 7 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 1470 - Libary to access FFmpeg
Class
Code
public function disableAudio() {
return $this
->addCommand('-an');
}