You are here

function video_queue_process in Video 7.2

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

Process video transcoding queue

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

File

./video.module, line 307
All module hooks implementation can be found in this file.

Code

function video_queue_process(stdClass $video) {
  $video_conversion = new Transcoder();
  $video_conversion
    ->executeConversion($video);
}