You are here

video.drush.inc in Video 7

Same filename and directory in other branches
  1. 6.5 video.drush.inc
  2. 6.4 video.drush.inc
  3. 7.2 video.drush.inc

Implement an drush commands to trasncode videos.

File

video.drush.inc
View source
<?php

/**
 * @file
 * Implement an drush commands to trasncode videos.
 */

/**
 * Implementation of hook_drush_command().
 */
function video_drush_command() {
  $items = array();
  $items['video-scheduler'] = array(
    'description' => 'Run video transcoder scheduler',
    'callback' => 'drush_video_scheduler',
    'drupal dependencies' => array(
      'video',
    ),
    'options' => array(
      '--limit' => 'Change the number of video items to transcode',
    ),
  );
  return $items;
}

/**
 * Callback function
 */
function drush_video_scheduler() {
  $limit = (int) drush_get_option('limit', variable_get('video_ffmpeg_instances', 5));
  $GLOBALS['conf']['video_ffmpeg_instances'] = $limit;

  // include our conversion class (also contains our defines)
  module_load_include('inc', 'video', 'includes/conversion');
  $video_conversion = new video_conversion();
  $video_conversion
    ->run_queue();
}

Functions

Namesort descending Description
drush_video_scheduler Callback function
video_drush_command Implementation of hook_drush_command().