function video_process_video in Video 6.5
1 call to video_process_video()
- video_convert_process in ./
video_widget.inc - Adds a video to the video rendering table.
File
- ./
video.module, line 741 - Main file of the Video module.
Code
function video_process_video(stdClass $video) {
$transcoder = video_get_transcoder();
$filesystem = video_get_filesystem();
$presets = video_get_presets();
return _video_process_video($video, $transcoder, $filesystem, $presets);
}