public static function PHPVideoToolkit::microtimeFloat in Video 7.2
Same name and namespace in other branches
- 7 libraries/phpvideotoolkit/phpvideotoolkit.php5.php \PHPVideoToolkit::microtimeFloat()
2 calls to PHPVideoToolkit::microtimeFloat()
- PHPVideoToolkit::execute in libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php - Commits all the commands and executes the ffmpeg procedure. This will also attempt to validate any outputted files in order to provide some level of stop and check system.
- PHPVideoToolkit::flvStreamSeek in libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php - Streams a FLV file from a given point. You can control bandwidth, cache and session options. Inspired by xmoov-php @access public
File
- libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php, line 493 - Libary to access FFmpeg
Class
Code
public static function microtimeFloat() {
list($usec, $sec) = explode(" ", microtime());
return (double) $usec + (double) $sec;
}