Class: Kaltura::KalturaConvertLiveSegmentJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaConvertLiveSegmentJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#asset_id ⇒ Object
Returns the value of attribute asset_id.
-
#dest_data_file_path ⇒ Object
The data output file.
-
#dest_file_path ⇒ Object
The output file.
-
#end_time ⇒ Object
Duration of the live entry including all recorded segments including the current.
-
#entry_id ⇒ Object
Live stream entry id.
-
#file_index ⇒ Object
The index of the file within the entry.
-
#media_server_index ⇒ Object
Primary or secondary media server.
-
#src_file_path ⇒ Object
The recorded live media.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#asset_id ⇒ Object
Returns the value of attribute asset_id.
12599 12600 12601 |
# File 'lib/kaltura_types.rb', line 12599 def asset_id @asset_id end |
#dest_data_file_path ⇒ Object
The data output file
12611 12612 12613 |
# File 'lib/kaltura_types.rb', line 12611 def dest_data_file_path @dest_data_file_path end |
#dest_file_path ⇒ Object
The output file
12607 12608 12609 |
# File 'lib/kaltura_types.rb', line 12607 def dest_file_path @dest_file_path end |
#end_time ⇒ Object
Duration of the live entry including all recorded segments including the current
12609 12610 12611 |
# File 'lib/kaltura_types.rb', line 12609 def end_time @end_time end |
#entry_id ⇒ Object
Live stream entry id
12598 12599 12600 |
# File 'lib/kaltura_types.rb', line 12598 def entry_id @entry_id end |
#file_index ⇒ Object
The index of the file within the entry
12603 12604 12605 |
# File 'lib/kaltura_types.rb', line 12603 def file_index @file_index end |
#media_server_index ⇒ Object
Primary or secondary media server
12601 12602 12603 |
# File 'lib/kaltura_types.rb', line 12601 def media_server_index @media_server_index end |
#src_file_path ⇒ Object
The recorded live media
12605 12606 12607 |
# File 'lib/kaltura_types.rb', line 12605 def src_file_path @src_file_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 |
# File 'lib/kaltura_types.rb', line 12620 def from_xml(xml_element) super if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['assetId'] != nil self.asset_id = xml_element.elements['assetId'].text end if xml_element.elements['mediaServerIndex'] != nil self.media_server_index = xml_element.elements['mediaServerIndex'].text end if xml_element.elements['fileIndex'] != nil self.file_index = xml_element.elements['fileIndex'].text end if xml_element.elements['srcFilePath'] != nil self.src_file_path = xml_element.elements['srcFilePath'].text end if xml_element.elements['destFilePath'] != nil self.dest_file_path = xml_element.elements['destFilePath'].text end if xml_element.elements['endTime'] != nil self.end_time = xml_element.elements['endTime'].text end if xml_element.elements['destDataFilePath'] != nil self.dest_data_file_path = xml_element.elements['destDataFilePath'].text end end |