You are here

public function video_phpvideotoolkit::get_video_info in Video 7

Get some information from the video file

3 calls to video_phpvideotoolkit::get_video_info()
video_phpvideotoolkit::convert_video in transcoders/video_phpvideotoolkit.inc
video_phpvideotoolkit::get_dimensions in transcoders/video_phpvideotoolkit.inc
video_phpvideotoolkit::get_playtime in transcoders/video_phpvideotoolkit.inc
Return the playtime seconds of a video

File

transcoders/video_phpvideotoolkit.inc, line 358

Class

video_phpvideotoolkit

Code

public function get_video_info($video) {
  $video_info = $this->toolkit
    ->getFileInfo($video);
  return $video_info;
}