Class: Kaltura::KalturaExtractMediaJobData
- Inherits:
-
KalturaConvartableJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaConvartableJobData
- Kaltura::KalturaExtractMediaJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#calculate_complexity ⇒ Object
Returns the value of attribute calculate_complexity.
-
#dest_data_file_path ⇒ Object
The data output file.
-
#detect_gop ⇒ Object
Returns the value of attribute detect_gop.
-
#extract_id3tags ⇒ Object
Returns the value of attribute extract_id3tags.
-
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
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
#calculate_complexity ⇒ Object
Returns the value of attribute calculate_complexity.
17361 17362 17363 |
# File 'lib/kaltura_types.rb', line 17361 def calculate_complexity @calculate_complexity end |
#dest_data_file_path ⇒ Object
The data output file
17364 17365 17366 |
# File 'lib/kaltura_types.rb', line 17364 def dest_data_file_path @dest_data_file_path end |
#detect_gop ⇒ Object
Returns the value of attribute detect_gop.
17365 17366 17367 |
# File 'lib/kaltura_types.rb', line 17365 def detect_gop @detect_gop end |
#extract_id3tags ⇒ Object
Returns the value of attribute extract_id3tags.
17362 17363 17364 |
# File 'lib/kaltura_types.rb', line 17362 def @extract_id3tags end |
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
17360 17361 17362 |
# File 'lib/kaltura_types.rb', line 17360 def flavor_asset_id @flavor_asset_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 |
# File 'lib/kaltura_types.rb', line 17377 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['calculateComplexity'] != nil self.calculate_complexity = xml_element.elements['calculateComplexity'].text end if xml_element.elements['extractId3Tags'] != nil self. = xml_element.elements['extractId3Tags'].text end if xml_element.elements['destDataFilePath'] != nil self.dest_data_file_path = xml_element.elements['destDataFilePath'].text end if xml_element.elements['detectGOP'] != nil self.detect_gop = xml_element.elements['detectGOP'].text end end |