Class: Kaltura::KalturaPostConvertJobData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaConvartableJobData

#actual_src_file_sync_local_path, #current_operation_index, #current_operation_set, #engine_version, #flavor_params_output, #flavor_params_output_id, #media_info_id, #plugin_data, #src_file_sync_local_path, #src_file_sync_remote_url, #src_file_syncs

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#create_thumbObject

Indicates if a thumbnail should be created



17268
17269
17270
# File 'lib/kaltura_types.rb', line 17268

def create_thumb
  @create_thumb
end

#custom_dataObject

Returns the value of attribute custom_data.



17277
17278
17279
# File 'lib/kaltura_types.rb', line 17277

def custom_data
  @custom_data
end

#flavor_asset_encryption_keyObject

Returns the value of attribute flavor_asset_encryption_key.



17266
17267
17268
# File 'lib/kaltura_types.rb', line 17266

def flavor_asset_encryption_key
  @flavor_asset_encryption_key
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



17265
17266
17267
# File 'lib/kaltura_types.rb', line 17265

def flavor_asset_id
  @flavor_asset_id
end

#thumb_bitrateObject

The bit rate of the movie, will be used to comapare if this thumbnail is the best we can have



17276
17277
17278
# File 'lib/kaltura_types.rb', line 17276

def thumb_bitrate
  @thumb_bitrate
end

#thumb_heightObject

The height of the movie, will be used to comapare if this thumbnail is the best we can have



17274
17275
17276
# File 'lib/kaltura_types.rb', line 17274

def thumb_height
  @thumb_height
end

#thumb_offsetObject

The position of the thumbnail in the media file



17272
17273
17274
# File 'lib/kaltura_types.rb', line 17272

def thumb_offset
  @thumb_offset
end

#thumb_pathObject

The path of the created thumbnail



17270
17271
17272
# File 'lib/kaltura_types.rb', line 17270

def thumb_path
  @thumb_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17292
17293
17294
17295
17296
17297
17298
17299
17300
17301
17302
17303
17304
17305
17306
17307
17308
17309
17310
17311
17312
17313
17314
17315
17316
17317
17318
# File 'lib/kaltura_types.rb', line 17292

def from_xml(xml_element)
	super
	if xml_element.elements['flavorAssetId'] != nil
		self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
	end
	if xml_element.elements['flavorAssetEncryptionKey'] != nil
		self.flavor_asset_encryption_key = xml_element.elements['flavorAssetEncryptionKey'].text
	end
	if xml_element.elements['createThumb'] != nil
		self.create_thumb = xml_element.elements['createThumb'].text
	end
	if xml_element.elements['thumbPath'] != nil
		self.thumb_path = xml_element.elements['thumbPath'].text
	end
	if xml_element.elements['thumbOffset'] != nil
		self.thumb_offset = xml_element.elements['thumbOffset'].text
	end
	if xml_element.elements['thumbHeight'] != nil
		self.thumb_height = xml_element.elements['thumbHeight'].text
	end
	if xml_element.elements['thumbBitrate'] != nil
		self.thumb_bitrate = xml_element.elements['thumbBitrate'].text
	end
	if xml_element.elements['customData'] != nil
		self.custom_data = xml_element.elements['customData'].text
	end
end