Class: Kaltura::KalturaLiveParams
- Inherits:
-
KalturaFlavorParams
- Object
- KalturaObjectBase
- KalturaAssetParams
- KalturaFlavorParams
- Kaltura::KalturaLiveParams
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#stream_suffix ⇒ Object
Suffix to be added to the stream name after the entry id entry_id_#stream_suffix, e.g.
Attributes inherited from KalturaFlavorParams
#anamorphic_pixels, #aspect_ratio_processing_mode, #audio_bitrate, #audio_channels, #audio_codec, #audio_sample_rate, #chunked_encode_mode, #clip_duration, #clip_offset, #content_awareness, #conversion_engines, #conversion_engines_extra_params, #deinterlice, #engine_version, #force_frame_to_multiplication16, #forced_key_frames_mode, #format, #frame_rate, #gop_size, #height, #is_avoid_forced_key_frames, #is_avoid_video_shrink_bitrate_to_source, #is_avoid_video_shrink_framesize_to_source, #is_crop_imx, #is_encrypted, #is_gop_in_sec, #is_video_frame_rate_for_low_br_apple_hls, #max_frame_rate, #multi_stream, #operators, #optimization_policy, #rotate, #subtitles_data, #two_pass, #video_bitrate, #video_bitrate_tolerance, #video_codec, #video_constant_bitrate, #watermark_data, #width
Attributes inherited from KalturaAssetParams
#created_at, #description, #id, #is_system_default, #media_parser_type, #name, #partner_id, #remote_storage_profile_ids, #required_permissions, #source_asset_params_ids, #source_remote_storage_profile_id, #system_name, #tags
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#stream_suffix ⇒ Object
Suffix to be added to the stream name after the entry id entry_id_#stream_suffix, e.g. for entry id 0_kjdu5jr6 and suffix 1, the stream name will be 0_kjdu5jr6_1
17930 17931 17932 |
# File 'lib/kaltura_types.rb', line 17930 def stream_suffix @stream_suffix end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17933 17934 17935 17936 17937 17938 |
# File 'lib/kaltura_types.rb', line 17933 def from_xml(xml_element) super if xml_element.elements['streamSuffix'] != nil self.stream_suffix = xml_element.elements['streamSuffix'].text end end |