Class: Kaltura::KalturaPostConvertJobData

Inherits:
KalturaConvartableJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaConvartableJobData

#actual_src_file_sync_local_path, #current_operation_index, #current_operation_set, #engine_version, #flavor_params_output, #flavor_params_output_id, #media_info_id, #plugin_data, #src_file_sync_local_path, #src_file_sync_remote_url, #src_file_syncs

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#create_thumbObject

Indicates if a thumbnail should be created



11913
11914
11915
# File 'lib/kaltura_types.rb', line 11913

def create_thumb
  @create_thumb
end

#custom_dataObject

Returns the value of attribute custom_data.



11926
11927
11928
# File 'lib/kaltura_types.rb', line 11926

def custom_data
  @custom_data
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



11910
11911
11912
# File 'lib/kaltura_types.rb', line 11910

def flavor_asset_id
  @flavor_asset_id
end

#thumb_bitrateObject

The bit rate of the movie, will be used to comapare if this thumbnail is the best we can have



11925
11926
11927
# File 'lib/kaltura_types.rb', line 11925

def thumb_bitrate
  @thumb_bitrate
end

#thumb_heightObject

The height of the movie, will be used to comapare if this thumbnail is the best we can have



11922
11923
11924
# File 'lib/kaltura_types.rb', line 11922

def thumb_height
  @thumb_height
end

#thumb_offsetObject

The position of the thumbnail in the media file



11919
11920
11921
# File 'lib/kaltura_types.rb', line 11919

def thumb_offset
  @thumb_offset
end

#thumb_pathObject

The path of the created thumbnail



11916
11917
11918
# File 'lib/kaltura_types.rb', line 11916

def thumb_path
  @thumb_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11941
11942
11943
11944
11945
11946
11947
11948
11949
11950
# File 'lib/kaltura_types.rb', line 11941

def from_xml(xml_element)
	super
	self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
	self.create_thumb = xml_element.elements['createThumb'].text
	self.thumb_path = xml_element.elements['thumbPath'].text
	self.thumb_offset = xml_element.elements['thumbOffset'].text
	self.thumb_height = xml_element.elements['thumbHeight'].text
	self.thumb_bitrate = xml_element.elements['thumbBitrate'].text
	self.custom_data = xml_element.elements['customData'].text
end