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.
-
#should_sort ⇒ Object
Should Sort the clip parts.
-
#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
11822 11823 11824 |
# File 'lib/kaltura_types.rb', line 11822 def concatenated_duration @concatenated_duration end |
#dest_file_path ⇒ Object
Output file
11814 11815 11816 |
# File 'lib/kaltura_types.rb', line 11814 def dest_file_path @dest_file_path end |
#duration ⇒ Object
Clipping duration in seconds
11820 11821 11822 |
# File 'lib/kaltura_types.rb', line 11820 def duration @duration end |
#flavor_asset_id ⇒ Object
Flavor asset to be ingested with the output
11816 11817 11818 |
# File 'lib/kaltura_types.rb', line 11816 def flavor_asset_id @flavor_asset_id end |
#offset ⇒ Object
Clipping offset in seconds
11818 11819 11820 |
# File 'lib/kaltura_types.rb', line 11818 def offset @offset end |
#should_sort ⇒ Object
Should Sort the clip parts
11824 11825 11826 |
# File 'lib/kaltura_types.rb', line 11824 def should_sort @should_sort end |
#src_files ⇒ Object
Source files to be concatenated
11812 11813 11814 |
# File 'lib/kaltura_types.rb', line 11812 def src_files @src_files end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 |
# File 'lib/kaltura_types.rb', line 11839 def from_xml(xml_element) super if xml_element.elements['srcFiles'] != nil self.src_files = KalturaClientBase.object_from_xml(xml_element.elements['srcFiles'], 'KalturaString') end if xml_element.elements['destFilePath'] != nil self.dest_file_path = xml_element.elements['destFilePath'].text end if xml_element.elements['flavorAssetId'] != nil self.flavor_asset_id = xml_element.elements['flavorAssetId'].text end if xml_element.elements['offset'] != nil self.offset = xml_element.elements['offset'].text end if xml_element.elements['duration'] != nil self.duration = xml_element.elements['duration'].text end if xml_element.elements['concatenatedDuration'] != nil self.concatenated_duration = xml_element.elements['concatenatedDuration'].text end if xml_element.elements['shouldSort'] != nil self.should_sort = xml_element.elements['shouldSort'].text end end |