You are here

function video_queue_process in Video 7

Same name and namespace in other branches
  1. 7.2 video.module \video_queue_process()

Process video transcoding queue

1 string reference to 'video_queue_process'
video_cron_queue_info in ./video.module
Implmentation of hook_cron_queue_info()

File

./video.module, line 145

Code

function video_queue_process($video) {
  module_load_include('inc', 'video', 'includes/conversion');
  $video_conversion = new video_conversion();
  $video_conversion
    ->process($video);
}