You are here

public static function video_jobs::setCompleted in Video 7.2

2 calls to video_jobs::setCompleted()
Transcoder::executeConversion in includes/Transcoder.inc
This helper function will help to execute video conversion job by loading job from the database and once it completed saving its data in to the database.
TranscoderAbstractionFactoryZencoder::processPostback in transcoders/TranscoderAbstractionFactoryZencoder.inc
Process postback jobs

File

includes/jobs.inc, line 85
Static class containing transcoding job related operations.

Class

video_jobs
@file Static class containing transcoding job related operations.

Code

public static function setCompleted(stdClass $video) {
  self::setCompletedOrFailed($video, VIDEO_RENDERING_COMPLETE, 'video_success');
}