Class: Kaltura::KalturaConcatJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaConcatJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#concatenated_duration ⇒ Object
duration of the concated video.
-
#dest_file_path ⇒ Object
Output file.
-
#duration ⇒ Object
Clipping duration in seconds.
-
#flavor_asset_id ⇒ Object
Flavor asset to be ingested with the output.
-
#offset ⇒ Object
Clipping offset in seconds.
-
#src_files ⇒ Object
Source files to be concatenated.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#concatenated_duration ⇒ Object
duration of the concated video
7903 7904 7905 |
# File 'lib/kaltura_types.rb', line 7903 def concatenated_duration @concatenated_duration end |
#dest_file_path ⇒ Object
Output file
7891 7892 7893 |
# File 'lib/kaltura_types.rb', line 7891 def dest_file_path @dest_file_path end |
#duration ⇒ Object
Clipping duration in seconds
7900 7901 7902 |
# File 'lib/kaltura_types.rb', line 7900 def duration @duration end |
#flavor_asset_id ⇒ Object
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 |
#offset ⇒ Object
Clipping offset in seconds
7897 7898 7899 |
# File 'lib/kaltura_types.rb', line 7897 def offset @offset end |
#src_files ⇒ Object
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 |