class Kaltura::KalturaConversionProfileAssetParams
Attributes
asset_params_id[RW]
The id of the asset params
chunked_encode_mode[RW]
content_awareness[RW]
conversion_profile_id[RW]
The id of the conversion profile
delete_policy[RW]
Specifies how to treat the flavor after conversion is finished
force_none_complied[RW]
Starts conversion even if the decision layer reduced the configuration to comply with the source
is_encrypted[RW]
origin[RW]
The ingestion origin of the asset params
overload_params[RW]
JSON string containing an array of flavotParams field-value pairs.
ready_behavior[RW]
The ingestion origin of the asset params
system_name[RW]
Asset params system name
two_pass[RW]
Public Instance Methods
asset_params_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3521 def asset_params_id=(val) @asset_params_id = val.to_i end
chunked_encode_mode=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3542 def chunked_encode_mode=(val) @chunked_encode_mode = val.to_i end
content_awareness=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3539 def content_awareness=(val) @content_awareness = val.to_f end
conversion_profile_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3518 def conversion_profile_id=(val) @conversion_profile_id = val.to_i end
delete_policy=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3533 def delete_policy=(val) @delete_policy = val.to_i end
force_none_complied=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3530 def force_none_complied=(val) @force_none_complied = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 3549 def from_xml(xml_element) super if xml_element.elements['conversionProfileId'] != nil self.conversion_profile_id = xml_element.elements['conversionProfileId'].text end if xml_element.elements['assetParamsId'] != nil self.asset_params_id = xml_element.elements['assetParamsId'].text end if xml_element.elements['readyBehavior'] != nil self.ready_behavior = xml_element.elements['readyBehavior'].text end if xml_element.elements['origin'] != nil self.origin = xml_element.elements['origin'].text end if xml_element.elements['systemName'] != nil self.system_name = xml_element.elements['systemName'].text end if xml_element.elements['forceNoneComplied'] != nil self.force_none_complied = xml_element.elements['forceNoneComplied'].text end if xml_element.elements['deletePolicy'] != nil self.delete_policy = xml_element.elements['deletePolicy'].text end if xml_element.elements['isEncrypted'] != nil self.is_encrypted = xml_element.elements['isEncrypted'].text end if xml_element.elements['contentAwareness'] != nil self.content_awareness = xml_element.elements['contentAwareness'].text end if xml_element.elements['chunkedEncodeMode'] != nil self.chunked_encode_mode = xml_element.elements['chunkedEncodeMode'].text end if xml_element.elements['twoPass'] != nil self.two_pass = xml_element.elements['twoPass'].text end if xml_element.elements['tags'] != nil self.tags = xml_element.elements['tags'].text end if xml_element.elements['overloadParams'] != nil self.overload_params = xml_element.elements['overloadParams'].text end end
is_encrypted=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3536 def is_encrypted=(val) @is_encrypted = val.to_i end
origin=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3527 def origin=(val) @origin = val.to_i end
ready_behavior=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3524 def ready_behavior=(val) @ready_behavior = val.to_i end
two_pass=(val)
click to toggle source
# File lib/kaltura_types.rb, line 3545 def two_pass=(val) @two_pass = val.to_i end