Class: Kaltura::KalturaConcatJobData

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

#concatenated_durationObject

duration of the concated video



7903
7904
7905
# File 'lib/kaltura_types.rb', line 7903

def concatenated_duration
  @concatenated_duration
end

#dest_file_pathObject

Output file



7891
7892
7893
# File 'lib/kaltura_types.rb', line 7891

def dest_file_path
  @dest_file_path
end

#durationObject

Clipping duration in seconds



7900
7901
7902
# File 'lib/kaltura_types.rb', line 7900

def duration
  @duration
end

#flavor_asset_idObject

Flavor asset to be ingested with the output



7894
7895
7896
# File 'lib/kaltura_types.rb', line 7894

def flavor_asset_id
  @flavor_asset_id
end

#offsetObject

Clipping offset in seconds



7897
7898
7899
# File 'lib/kaltura_types.rb', line 7897

def offset
  @offset
end

#src_filesObject

Source files to be concatenated



7888
7889
7890
# File 'lib/kaltura_types.rb', line 7888

def src_files
  @src_files
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7915
7916
7917
7918
7919
7920
7921
7922
7923
# File 'lib/kaltura_types.rb', line 7915

def from_xml(xml_element)
  super
  self.src_files = KalturaClientBase.object_from_xml(xml_element.elements['srcFiles'], 'KalturaString')
  self.dest_file_path = xml_element.elements['destFilePath'].text
  self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
  self.offset = xml_element.elements['offset'].text
  self.duration = xml_element.elements['duration'].text
  self.concatenated_duration = xml_element.elements['concatenatedDuration'].text
end