You are here

class iphone_mov in Video 6.4

Hierarchy

Expanded class hierarchy of iphone_mov

File

video_preset/iphone_mov.inc, line 7

View source
class iphone_mov implements video_preset_interface {
  protected $name = 'iPhone MOV';
  protected $value = 'iphone_mov';
  public function __construct() {
  }

  /**
   * Interface Implementations
   * @see sites/all/modules/video/includes/metadata_interface#get_name()
   */
  public function get_name() {
    return $this->name;
  }

  /**
   * Interface Implementations
   * @see sites/all/modules/video/includes/metadata_interface#get_help()
   */
  public function get_help() {
    return t('Creates files that natively play on the iPhone using HTML5.', array());
  }

  /**
   * Interface Implementations
   * @see sites/all/modules/video/includes/metadata_interface#get_value()
   */
  public function get_value() {
    return $this->value;
  }
  public function get_properties() {
    $properties = array(
      'extension' => 'mov',
      'quality' => '',
      'speed' => '',
      'upscale' => '',
      'stretch' => '',
      'frame_rate' => '',
      'max_frame_rate' => '',
      'keyframe_interval' => '',
      'video_codec' => '',
      'video_bitrate' => '',
      'aspect_mode' => '',
      'bitrate_cap' => '',
      'buffer_size' => '',
      'h264_profile' => '',
      'h264_level' => '',
      'skip_video' => '',
      'audio_codec' => '',
      'audio_quality' => '',
      'audio_bitrate' => '',
      'audio_channels' => '',
      'audio_sample_rate' => '',
      'skip_audio' => '',
      'start_clip' => '',
      'clip_length' => '',
      'command' => array(
        '!cmd_path -strict experimental -i !videofile -f mp4 -vcodec mpeg4 -maxrate 1000k -b 700k -qmin 3 -qmax 5 -bufsize 4096k -g 300 -acodec aac -ab 192k -s 320x240 -aspect 4:3 !convertfile',
      ),
    );
    return $properties;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
iphone_mov::$name protected property
iphone_mov::$value protected property
iphone_mov::get_help public function Interface Implementations Overrides video_preset_interface::get_help
iphone_mov::get_name public function Interface Implementations Overrides video_preset_interface::get_name
iphone_mov::get_properties public function Overrides video_preset_interface::get_properties
iphone_mov::get_value public function Interface Implementations Overrides video_preset_interface::get_value
iphone_mov::__construct public function