Class: Kaltura::KalturaPlayReadyPlayRight
- Inherits:
-
KalturaPlayReadyRight
- Object
- KalturaObjectBase
- KalturaPlayReadyRight
- Kaltura::KalturaPlayReadyPlayRight
- Defined in:
- lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb
Instance Attribute Summary collapse
-
#analog_video_opl ⇒ Object
Returns the value of attribute analog_video_opl.
-
#analog_video_output_protection_list ⇒ Object
Returns the value of attribute analog_video_output_protection_list.
-
#compressed_digital_audio_opl ⇒ Object
Returns the value of attribute compressed_digital_audio_opl.
-
#compressed_digital_video_opl ⇒ Object
Returns the value of attribute compressed_digital_video_opl.
-
#digital_audio_output_protection_list ⇒ Object
Returns the value of attribute digital_audio_output_protection_list.
-
#first_play_expiration ⇒ Object
Returns the value of attribute first_play_expiration.
-
#play_enablers ⇒ Object
Returns the value of attribute play_enablers.
-
#uncompressed_digital_audio_opl ⇒ Object
Returns the value of attribute uncompressed_digital_audio_opl.
-
#uncompressed_digital_video_opl ⇒ Object
Returns the value of attribute uncompressed_digital_video_opl.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#analog_video_opl ⇒ Object
Returns the value of attribute analog_video_opl.
301 302 303 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 301 def analog_video_opl @analog_video_opl end |
#analog_video_output_protection_list ⇒ Object
Returns the value of attribute analog_video_output_protection_list.
302 303 304 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 302 def analog_video_output_protection_list @analog_video_output_protection_list end |
#compressed_digital_audio_opl ⇒ Object
Returns the value of attribute compressed_digital_audio_opl.
303 304 305 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 303 def compressed_digital_audio_opl @compressed_digital_audio_opl end |
#compressed_digital_video_opl ⇒ Object
Returns the value of attribute compressed_digital_video_opl.
304 305 306 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 304 def compressed_digital_video_opl @compressed_digital_video_opl end |
#digital_audio_output_protection_list ⇒ Object
Returns the value of attribute digital_audio_output_protection_list.
305 306 307 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 305 def digital_audio_output_protection_list @digital_audio_output_protection_list end |
#first_play_expiration ⇒ Object
Returns the value of attribute first_play_expiration.
308 309 310 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 308 def first_play_expiration @first_play_expiration end |
#play_enablers ⇒ Object
Returns the value of attribute play_enablers.
309 310 311 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 309 def play_enablers @play_enablers end |
#uncompressed_digital_audio_opl ⇒ Object
Returns the value of attribute uncompressed_digital_audio_opl.
306 307 308 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 306 def uncompressed_digital_audio_opl @uncompressed_digital_audio_opl end |
#uncompressed_digital_video_opl ⇒ Object
Returns the value of attribute uncompressed_digital_video_opl.
307 308 309 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 307 def uncompressed_digital_video_opl @uncompressed_digital_video_opl end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 330 def from_xml(xml_element) super if xml_element.elements['analogVideoOPL'] != nil self.analog_video_opl = xml_element.elements['analogVideoOPL'].text end if xml_element.elements['analogVideoOutputProtectionList'] != nil self.analog_video_output_protection_list = KalturaClientBase.object_from_xml(xml_element.elements['analogVideoOutputProtectionList'], 'KalturaPlayReadyAnalogVideoOPIdHolder') end if xml_element.elements['compressedDigitalAudioOPL'] != nil self.compressed_digital_audio_opl = xml_element.elements['compressedDigitalAudioOPL'].text end if xml_element.elements['compressedDigitalVideoOPL'] != nil self.compressed_digital_video_opl = xml_element.elements['compressedDigitalVideoOPL'].text end if xml_element.elements['digitalAudioOutputProtectionList'] != nil self.digital_audio_output_protection_list = KalturaClientBase.object_from_xml(xml_element.elements['digitalAudioOutputProtectionList'], 'KalturaPlayReadyDigitalAudioOPIdHolder') end if xml_element.elements['uncompressedDigitalAudioOPL'] != nil self.uncompressed_digital_audio_opl = xml_element.elements['uncompressedDigitalAudioOPL'].text end if xml_element.elements['uncompressedDigitalVideoOPL'] != nil self.uncompressed_digital_video_opl = xml_element.elements['uncompressedDigitalVideoOPL'].text end if xml_element.elements['firstPlayExpiration'] != nil self.first_play_expiration = xml_element.elements['firstPlayExpiration'].text end if xml_element.elements['playEnablers'] != nil self.play_enablers = KalturaClientBase.object_from_xml(xml_element.elements['playEnablers'], 'KalturaPlayReadyPlayEnablerHolder') end end |