public static function PHPVideoToolkit::microtimeFloat in Video 7
Same name and namespace in other branches
- 7.2 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. * * @access public *
- 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 * * - @link http://xmoov.com/ * - @author Eric Lorenzo Benjamin jr * @access public *
File
- libraries/
phpvideotoolkit/ phpvideotoolkit.php5.php, line 531
Class
Code
public static function microtimeFloat() {
list($usec, $sec) = explode(" ", microtime());
return (double) $usec + (double) $sec;
}