Class: Kaltura::KalturaDeliveryProfileRtmp

Inherits:
KalturaDeliveryProfile show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaDeliveryProfileGenericRtmp

Instance Attribute Summary collapse

Attributes inherited from KalturaDeliveryProfile

#created_at, #description, #host_name, #id, #is_default, #media_protocols, #name, #parent_id, #partner_id, #priority, #recognizer, #status, #streamer_type, #system_name, #tokenizer, #type, #updated_at, #url

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#enforce_rtmpeObject

enforceRtmpe



8426
8427
8428
# File 'lib/kaltura_types.rb', line 8426

def enforce_rtmpe
  @enforce_rtmpe
end

#prefixObject

a prefix that is added to all stream urls (replaces storageProfile::rtmpPrefix)



8429
8430
8431
# File 'lib/kaltura_types.rb', line 8429

def prefix
  @prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8435
8436
8437
8438
8439
# File 'lib/kaltura_types.rb', line 8435

def from_xml(xml_element)
  super
  self.enforce_rtmpe = xml_element.elements['enforceRtmpe'].text
  self.prefix = xml_element.elements['prefix'].text
end