class Kaltura::KalturaPlayReadyPlayRight

Attributes

analog_video_opl[RW]
analog_video_output_protection_list[RW]
compressed_digital_audio_opl[RW]
compressed_digital_video_opl[RW]
digital_audio_output_protection_list[RW]
first_play_expiration[RW]
play_enablers[RW]
uncompressed_digital_audio_opl[RW]
uncompressed_digital_video_opl[RW]

Public Instance Methods

analog_video_opl=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 311
def analog_video_opl=(val)
        @analog_video_opl = val.to_i
end
compressed_digital_audio_opl=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 314
def compressed_digital_audio_opl=(val)
        @compressed_digital_audio_opl = val.to_i
end
compressed_digital_video_opl=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 317
def compressed_digital_video_opl=(val)
        @compressed_digital_video_opl = val.to_i
end
first_play_expiration=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 326
def first_play_expiration=(val)
        @first_play_expiration = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaPlayReadyRight#from_xml
# 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
uncompressed_digital_audio_opl=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 320
def uncompressed_digital_audio_opl=(val)
        @uncompressed_digital_audio_opl = val.to_i
end
uncompressed_digital_video_opl=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 323
def uncompressed_digital_video_opl=(val)
        @uncompressed_digital_video_opl = val.to_i
end