You are here

public function html5_webm::get_properties in Video 6.4

Overrides video_preset_interface::get_properties

File

video_preset/html5_webm.inc, line 40

Class

html5_webm

Code

public function get_properties() {
  $properties = array(
    'extension' => 'webm',
    '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 -pass 1 -threads 16  -keyint_min 0 -g 250 -skip_threshold 0 -qmin 1 -qmax 51 -i !videofile -vcodec libvpx -b 204800 -s !widthx!height -aspect 4:3 -an -f webm -y NUL',
      '!cmd_path -y -pass 2 -threads 16  -keyint_min 0 -g 250 -skip_threshold 0 -qmin 1 -qmax 51 -i !videofile -vcodec libvpx -b 204800 -s !widthx!height -aspect 4:3 -acodec libvorbis -ac 2 -y !convertfile',
    ),
  );
  return $properties;
}