You are here

protected property PHPVideoToolkit::$image_output_timecode_format in Video 7

Same name and namespace in other branches
  1. 7.2 libraries/phpvideotoolkit/phpvideotoolkit.php5.php \PHPVideoToolkit::image_output_timecode_format

* The format in which the image %timecode placeholder string is outputted. * - %hh (hours) representative of hours * - %mm (minutes) representative of minutes * - %ss (seconds) representative of seconds * - %fn (frame number) representative of frames (of the current second, not total frames) * - %ms (milliseconds) representative of milliseconds (of the current second, not total milliseconds) (rounded to 3 decimal places) * - %ft (frames total) representative of total frames (ie frame number) * - %st (seconds total) representative of total seconds (rounded). * - %sf (seconds floored) representative of total seconds (floored). * - %mt (milliseconds total) representative of total milliseconds. (rounded to 3 decimal places) * NOTE; there are special characters that will be replace by PHPVideoToolkit::$timecode_seperator_output, these characters are * - : * - . * * @access public

Type: string

File

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

Class

PHPVideoToolkit

Code

protected $image_output_timecode_format = '%hh-%mm-%ss-%fn';