You are here

interface transcoder_interface in Video 6.4

Same name and namespace in other branches
  1. 7 includes/transcoder.inc \transcoder_interface

Hierarchy

Expanded class hierarchy of transcoder_interface

All classes that implement transcoder_interface

File

includes/transcoder.inc, line 175

View source
interface transcoder_interface {
  public function create_job($video);
  public function update_job($video);
  public function delete_job($video);
  public function load_job($fid);
  public function load_job_queue();
  public function load_completed_job(&$video);
  public function change_status($vid, $status);
  public function generate_thumbnails($video);
  public function convert_video($video);
  public function get_name();
  public function get_value();
  public function get_help();
  public function admin_settings();
  public function admin_settings_validate($form, &$form_state);

}

Members