You are here

public function video_ffmpeg::update_job in Video 6.4

Overrides transcoder_interface::update_job

File

transcoders/video_ffmpeg.inc, line 458

Class

video_ffmpeg

Code

public function update_job($video) {
  if (!$this
    ->load_job($video['fid'])) {
    return;
  }

  //lets update our table to include the nid
  db_query("UPDATE {video_files} SET nid=%d WHERE fid=%d", $video['nid'], $video['fid']);
}