You are here

function ffmpeg_wrapper_cron in Video 6.3

File

plugins/ffmpeg_wrapper.inc, line 30
Provide a api for video conversion and auto thumbnailing using ffmpeg.

Code

function ffmpeg_wrapper_cron() {
  global $base_url;
  if (variable_get('video_ffmpeg_helper_auto_cvr_cron', true)) {
    exec("php video_scheduler.php {$base_url} > /dev/null &");
  }
}