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.
8171 8172 8173 |
# File 'lib/kaltura_types.rb', line 8171 def delivery_profile_id @delivery_profile_id end |
#drm ⇒ Object
drm data object containing relevant license url ,scheme name and certificate
8180 8181 8182 |
# File 'lib/kaltura_types.rb', line 8180 def drm @drm end |
#flavor_ids ⇒ Object
comma separated string of flavor ids
8177 8178 8179 |
# File 'lib/kaltura_types.rb', line 8177 def flavor_ids @flavor_ids end |
#format ⇒ Object
source format according to delivery profile streamer type (applehttp, mpegdash etc.)
8173 8174 8175 |
# File 'lib/kaltura_types.rb', line 8173 def format @format end |
#protocols ⇒ Object
comma separated string according to deliveryProfile media protocols (‘http,https’ etc.)
8175 8176 8177 |
# File 'lib/kaltura_types.rb', line 8175 def protocols @protocols end |
#url ⇒ Object
Returns the value of attribute url.
8178 8179 8180 |
# File 'lib/kaltura_types.rb', line 8178 def url @url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 |
# File 'lib/kaltura_types.rb', line 8183 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 |