Class: Kaltura::KalturaImageFlavorParamsOutput

Inherits:
KalturaFlavorParamsOutput show all
Defined in:
lib/kaltura_plugins/kaltura_document_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaFlavorParamsOutput

#command_lines_str, #flavor_asset_id, #flavor_asset_version, #flavor_params_id, #flavor_params_version, #ready_behavior

Attributes inherited from KalturaFlavorParams

#anamorphic_pixels, #aspect_ratio_processing_mode, #audio_bitrate, #audio_channels, #audio_codec, #audio_sample_rate, #clip_duration, #clip_offset, #conversion_engines, #conversion_engines_extra_params, #deinterlice, #engine_version, #force_frame_to_multiplication16, #format, #frame_rate, #gop_size, #height, #is_avoid_forced_key_frames, #is_avoid_video_shrink_bitrate_to_source, #is_avoid_video_shrink_framesize_to_source, #is_crop_imx, #is_gop_in_sec, #is_video_frame_rate_for_low_br_apple_hls, #max_frame_rate, #multi_stream, #operators, #optimization_policy, #rotate, #two_pass, #video_bitrate, #video_bitrate_tolerance, #video_codec, #video_constant_bitrate, #watermark_data, #width

Attributes inherited from KalturaAssetParams

#created_at, #description, #id, #is_system_default, #media_parser_type, #name, #partner_id, #remote_storage_profile_ids, #required_permissions, #source_asset_params_ids, #source_remote_storage_profile_id, #system_name, #tags

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#density_heightObject

Returns the value of attribute density_height.



205
206
207
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 205

def density_height
  @density_height
end

#density_widthObject

Returns the value of attribute density_width.



204
205
206
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 204

def density_width
  @density_width
end

#depthObject

Returns the value of attribute depth.



208
209
210
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 208

def depth
  @depth
end

#size_heightObject

Returns the value of attribute size_height.



207
208
209
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 207

def size_height
  @size_height
end

#size_widthObject

Returns the value of attribute size_width.



206
207
208
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 206

def size_width
  @size_width
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



226
227
228
229
230
231
232
233
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 226

def from_xml(xml_element)
  super
  self.density_width = xml_element.elements['densityWidth'].text
  self.density_height = xml_element.elements['densityHeight'].text
  self.size_width = xml_element.elements['sizeWidth'].text
  self.size_height = xml_element.elements['sizeHeight'].text
  self.depth = xml_element.elements['depth'].text
end