Class: Kaltura::KalturaConvertProfileJobData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#input_file_sync_local_pathObject

Returns the value of attribute input_file_sync_local_path.



11868
11869
11870
# File 'lib/kaltura_types.rb', line 11868

def input_file_sync_local_path
  @input_file_sync_local_path
end

#thumb_bitrateObject

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



11872
11873
11874
# File 'lib/kaltura_types.rb', line 11872

def thumb_bitrate
  @thumb_bitrate
end

#thumb_heightObject

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



11870
11871
11872
# File 'lib/kaltura_types.rb', line 11870

def thumb_height
  @thumb_height
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11881
11882
11883
11884
11885
11886
11887
11888
11889
11890
11891
11892
# File 'lib/kaltura_types.rb', line 11881

def from_xml(xml_element)
	super
	if xml_element.elements['inputFileSyncLocalPath'] != nil
		self.input_file_sync_local_path = xml_element.elements['inputFileSyncLocalPath'].text
	end
	if xml_element.elements['thumbHeight'] != nil
		self.thumb_height = xml_element.elements['thumbHeight'].text
	end
	if xml_element.elements['thumbBitrate'] != nil
		self.thumb_bitrate = xml_element.elements['thumbBitrate'].text
	end
end