Class: Kaltura::KalturaExtractMediaJobData

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

#calculate_complexityObject

Returns the value of attribute calculate_complexity.



16544
16545
16546
# File 'lib/kaltura_types.rb', line 16544

def calculate_complexity
  @calculate_complexity
end

#dest_data_file_pathObject

The data output file



16547
16548
16549
# File 'lib/kaltura_types.rb', line 16547

def dest_data_file_path
  @dest_data_file_path
end

#detect_gopObject

Returns the value of attribute detect_gop.



16548
16549
16550
# File 'lib/kaltura_types.rb', line 16548

def detect_gop
  @detect_gop
end

#extract_id3tagsObject

Returns the value of attribute extract_id3tags.



16545
16546
16547
# File 'lib/kaltura_types.rb', line 16545

def extract_id3tags
  @extract_id3tags
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



16543
16544
16545
# File 'lib/kaltura_types.rb', line 16543

def flavor_asset_id
  @flavor_asset_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16560
16561
16562
16563
16564
16565
16566
16567
16568
16569
16570
16571
16572
16573
16574
16575
16576
16577
# File 'lib/kaltura_types.rb', line 16560

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.extract_id3tags = 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