Class: Kaltura::KalturaPostConvertJobData
- Inherits:
-
KalturaConvartableJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaConvartableJobData
- Kaltura::KalturaPostConvertJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#create_thumb ⇒ Object
Indicates if a thumbnail should be created.
-
#custom_data ⇒ Object
Returns the value of attribute custom_data.
-
#flavor_asset_encryption_key ⇒ Object
Returns the value of attribute flavor_asset_encryption_key.
-
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
-
#thumb_bitrate ⇒ Object
The bit rate of the movie, will be used to comapare if this thumbnail is the best we can have.
-
#thumb_height ⇒ Object
The height of the movie, will be used to comapare if this thumbnail is the best we can have.
-
#thumb_offset ⇒ Object
The position of the thumbnail in the media file.
-
#thumb_path ⇒ Object
The path of the created thumbnail.
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
Instance Attribute Details
#create_thumb ⇒ Object
Indicates if a thumbnail should be created
17346 17347 17348 |
# File 'lib/kaltura_types.rb', line 17346 def create_thumb @create_thumb end |
#custom_data ⇒ Object
Returns the value of attribute custom_data.
17355 17356 17357 |
# File 'lib/kaltura_types.rb', line 17355 def custom_data @custom_data end |
#flavor_asset_encryption_key ⇒ Object
Returns the value of attribute flavor_asset_encryption_key.
17344 17345 17346 |
# File 'lib/kaltura_types.rb', line 17344 def flavor_asset_encryption_key @flavor_asset_encryption_key end |
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
17343 17344 17345 |
# File 'lib/kaltura_types.rb', line 17343 def flavor_asset_id @flavor_asset_id end |
#thumb_bitrate ⇒ Object
The bit rate of the movie, will be used to comapare if this thumbnail is the best we can have
17354 17355 17356 |
# File 'lib/kaltura_types.rb', line 17354 def thumb_bitrate @thumb_bitrate end |
#thumb_height ⇒ Object
The height of the movie, will be used to comapare if this thumbnail is the best we can have
17352 17353 17354 |
# File 'lib/kaltura_types.rb', line 17352 def thumb_height @thumb_height end |
#thumb_offset ⇒ Object
The position of the thumbnail in the media file
17350 17351 17352 |
# File 'lib/kaltura_types.rb', line 17350 def thumb_offset @thumb_offset end |
#thumb_path ⇒ Object
The path of the created thumbnail
17348 17349 17350 |
# File 'lib/kaltura_types.rb', line 17348 def thumb_path @thumb_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 |
# File 'lib/kaltura_types.rb', line 17370 def from_xml(xml_element) super if xml_element.elements['flavorAssetId'] != nil self.flavor_asset_id = xml_element.elements['flavorAssetId'].text end if xml_element.elements['flavorAssetEncryptionKey'] != nil self.flavor_asset_encryption_key = xml_element.elements['flavorAssetEncryptionKey'].text end if xml_element.elements['createThumb'] != nil self.create_thumb = xml_element.elements['createThumb'].text end if xml_element.elements['thumbPath'] != nil self.thumb_path = xml_element.elements['thumbPath'].text end if xml_element.elements['thumbOffset'] != nil self.thumb_offset = xml_element.elements['thumbOffset'].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 if xml_element.elements['customData'] != nil self.custom_data = xml_element.elements['customData'].text end end |