private function video_conversion::load_job_queue in Video 6.4
Same name and namespace in other branches
- 7 includes/conversion.inc \video_conversion::load_job_queue()
Select videos from our queue
Return value
An array containing all the videos to be proccessed.
1 call to video_conversion::load_job_queue()
- video_conversion::run_queue in includes/
conversion.inc - Our main function to call when converting queued up jobs.
File
- includes/
conversion.inc, line 45
Class
Code
private function load_job_queue() {
// @TODO : allow only limited jobs to process
return $this->transcoder
->load_job_queue();
}