You are here

class hq_flash in Video 6.4

Hierarchy

Expanded class hierarchy of hq_flash

1 string reference to 'hq_flash'
video_preset::__construct in includes/preset.inc

File

video_preset/hq_flash.inc, line 7

View source
class hq_flash implements video_preset_interface {
  protected $name = 'Flash';
  protected $value = 'hq_flash';
  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 play in any Flash player, including older versions.', 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' => 'flv',
      '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 -i !videofile -s !widthx!height -r 15 -b 250 -ar 22050 -ab 48 !convertfile',
      ),
    );
    return $properties;
  }

}

Members

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