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, #extra_params, #host_name, #id, #is_default, #media_protocols, #name, #parent_id, #partner_id, #priority, #recognizer, #status, #streamer_type, #supplementary_assets_filter, #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



12252
12253
12254
# File 'lib/kaltura_types.rb', line 12252

def enforce_rtmpe
  @enforce_rtmpe
end

#prefixObject

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



12254
12255
12256
# File 'lib/kaltura_types.rb', line 12254

def prefix
  @prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12260
12261
12262
12263
12264
12265
12266
12267
12268
# File 'lib/kaltura_types.rb', line 12260

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