Class: Kaltura::KalturaConvertProfileJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaConvertProfileJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#input_file_sync_local_path ⇒ Object
Returns the value of attribute input_file_sync_local_path.
-
#thumb_bitrate ⇒ Object
The bit rate of last created thumbnail, will be used to comapare if this thumbnail is the best we can have.
-
#thumb_height ⇒ Object
The height of last created thumbnail, will be used to comapare if this thumbnail is the best we can have.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#input_file_sync_local_path ⇒ Object
Returns the value of attribute input_file_sync_local_path.
12617 12618 12619 |
# File 'lib/kaltura_types.rb', line 12617 def input_file_sync_local_path @input_file_sync_local_path end |
#thumb_bitrate ⇒ Object
The bit rate of last created thumbnail, will be used to comapare if this thumbnail is the best we can have
12621 12622 12623 |
# File 'lib/kaltura_types.rb', line 12621 def thumb_bitrate @thumb_bitrate end |
#thumb_height ⇒ Object
The height of last created thumbnail, will be used to comapare if this thumbnail is the best we can have
12619 12620 12621 |
# File 'lib/kaltura_types.rb', line 12619 def thumb_height @thumb_height end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 |
# File 'lib/kaltura_types.rb', line 12630 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 |