You are here

class video_conversion in Video 7

Same name and namespace in other branches
  1. 6.4 includes/conversion.inc \video_conversion

Hierarchy

Expanded class hierarchy of video_conversion

1 string reference to 'video_conversion'
_video_aspect_ratio in ./video.module

File

includes/conversion.inc, line 9

View source
class video_conversion {
  protected $transcoder;
  public function __construct() {
    module_load_include('inc', 'video', '/includes/transcoder');
    $this->transcoder = new video_transcoder();
  }

  /**
   * Our main function to call when converting queued up jobs.
   */
  public function run_queue() {
    if ($videos = $this
      ->load_job_queue()) {
      foreach ($videos as $video) {
        $this
          ->process($video);
      }

      //clear cache once completed the conversion to update the file paths
      cache_clear_all();
    }
  }

  /**
   * Select videos from our queue
   *
   * @return
   *   An array containing all the videos to be proccessed.
   */
  public function load_job_queue() {
    return $this->transcoder
      ->load_job_queue();
  }

  /**
   * Process the video through ffmpeg.
   *
   * @param $video
   *   This can either be the file object or the file id (fid)
   *
   * @return
   *   TRUE of FALSE if video was converted successfully.
   */
  public function process($video) {
    if (is_object($video) && isset($video->fid)) {
      $return = $this
        ->render($video);
    }
    else {
      $video_object = $this
        ->load_job($video);
      $return = $this
        ->render($video_object);
    }
    return $return;
  }
  private function render($video) {
    if (!is_object($video)) {
      watchdog('transcoder', 'Video object is not present', array(), WATCHDOG_ERROR);
      return FALSE;
    }

    // Make sure this video is pending or do nothing.
    if ($video->video_status == VIDEO_RENDERING_PENDING) {
      return $this->transcoder
        ->convert_video($video);
    }
    else {
      $status = array(
        VIDEO_RENDERING_INQUEUE => 'in queue',
        VIDEO_RENDERING_COMPLETE => 'completed',
        VIDEO_RENDERING_FAILED => 'failed',
      );
      watchdog('transcoder', 'Video conversion has been !status. You should add video to the queue. Please check the re-queue to enable the video conversion.', array(
        '!status' => $status[$video->video_status],
      ), WATCHDOG_WARNING);
      return FALSE;
    }
  }

  /**
   * Load a converted video based on the file id ($fid)
   *
   * @todo: Need to figure something out here for multiple files (HTML 5)
   * @param $fid
   *   Integer of the file id to be loaded.
   */
  public function load_completed_job($video) {
    return $this->transcoder
      ->load_completed_job($video);
  }
  public function create_job($video, $nid) {
    return $this->transcoder
      ->create_job($video, $nid);
  }
  public function delete_job($video) {
    return $this->transcoder
      ->delete_job($video);
  }
  public function change_status($vid, $status) {
    return $this->transcoder
      ->change_status($vid, $status);
  }

  /**
   * Load a file based on the file id ($fid)
   *
   * @param $fid
   *   Integer of the file id to be loaded.
   */
  public function load_job($fid) {
    return $this->transcoder
      ->load_job($fid);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
video_conversion::$transcoder protected property
video_conversion::change_status public function
video_conversion::create_job public function
video_conversion::delete_job public function
video_conversion::load_completed_job public function Load a converted video based on the file id ($fid)
video_conversion::load_job public function Load a file based on the file id ($fid)
video_conversion::load_job_queue public function Select videos from our queue
video_conversion::process public function Process the video through ffmpeg.
video_conversion::render private function
video_conversion::run_queue public function Our main function to call when converting queued up jobs.
video_conversion::__construct public function