Class: Kaltura::KalturaPlaybackSource
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaPlaybackSource
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#delivery_profile_id ⇒ Object
Returns the value of attribute delivery_profile_id.
-
#drm ⇒ Object
drm data object containing relevant license url ,scheme name and certificate.
-
#flavor_ids ⇒ Object
comma separated string of flavor ids.
-
#format ⇒ Object
source format according to delivery profile streamer type (applehttp, mpegdash etc.).
-
#protocols ⇒ Object
comma separated string according to deliveryProfile media protocols (‘http,https’ etc.).
-
#url ⇒ Object
Returns the value of attribute url.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#delivery_profile_id ⇒ Object
Returns the value of attribute delivery_profile_id.
8280 8281 8282 |
# File 'lib/kaltura_types.rb', line 8280 def delivery_profile_id @delivery_profile_id end |
#drm ⇒ Object
drm data object containing relevant license url ,scheme name and certificate
8289 8290 8291 |
# File 'lib/kaltura_types.rb', line 8289 def drm @drm end |
#flavor_ids ⇒ Object
comma separated string of flavor ids
8286 8287 8288 |
# File 'lib/kaltura_types.rb', line 8286 def flavor_ids @flavor_ids end |
#format ⇒ Object
source format according to delivery profile streamer type (applehttp, mpegdash etc.)
8282 8283 8284 |
# File 'lib/kaltura_types.rb', line 8282 def format @format end |
#protocols ⇒ Object
comma separated string according to deliveryProfile media protocols (‘http,https’ etc.)
8284 8285 8286 |
# File 'lib/kaltura_types.rb', line 8284 def protocols @protocols end |
#url ⇒ Object
Returns the value of attribute url.
8287 8288 8289 |
# File 'lib/kaltura_types.rb', line 8287 def url @url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 |
# File 'lib/kaltura_types.rb', line 8292 def from_xml(xml_element) super if xml_element.elements['deliveryProfileId'] != nil self.delivery_profile_id = xml_element.elements['deliveryProfileId'].text end if xml_element.elements['format'] != nil self.format = xml_element.elements['format'].text end if xml_element.elements['protocols'] != nil self.protocols = xml_element.elements['protocols'].text end if xml_element.elements['flavorIds'] != nil self.flavor_ids = xml_element.elements['flavorIds'].text end if xml_element.elements['url'] != nil self.url = xml_element.elements['url'].text end if xml_element.elements['drm'] != nil self.drm = KalturaClientBase.object_from_xml(xml_element.elements['drm'], 'KalturaDrmPlaybackPluginData') end end |