Class: Kaltura::KalturaConversionProfile

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#calculate_complexityObject

Should calculate file conversion complexity



3215
3216
3217
# File 'lib/kaltura_types.rb', line 3215

def calculate_complexity
  @calculate_complexity
end

#clip_durationObject

Clipping duration (in miliseconds)



3207
3208
3209
# File 'lib/kaltura_types.rb', line 3207

def clip_duration
  @clip_duration
end

#clip_startObject

Clipping start position (in miliseconds)



3205
3206
3207
# File 'lib/kaltura_types.rb', line 3205

def clip_start
  @clip_start
end

#collection_tagsObject

Defines the tags that should be used to define ‘collective’/group/multi-flavor processing, like ‘mbr’ or ‘ism’



3218
3219
3220
# File 'lib/kaltura_types.rb', line 3218

def collection_tags
  @collection_tags
end

#conditional_profilesObject

JSON string with array of “condition,profile-id” pairs.



3220
3221
3222
# File 'lib/kaltura_types.rb', line 3220

def conditional_profiles
  @conditional_profiles
end

#created_atObject

Creation date as Unix timestamp (In seconds)



3195
3196
3197
# File 'lib/kaltura_types.rb', line 3195

def created_at
  @created_at
end

#crop_dimensionsObject

Cropping dimensions



3203
3204
3205
# File 'lib/kaltura_types.rb', line 3203

def crop_dimensions
  @crop_dimensions
end

#default_audio_langObject

Returns the value of attribute default_audio_lang.



3227
3228
3229
# File 'lib/kaltura_types.rb', line 3227

def default_audio_lang
  @default_audio_lang
end

#default_entry_idObject

ID of the default entry to be used for template data



3193
3194
3195
# File 'lib/kaltura_types.rb', line 3193

def default_entry_id
  @default_entry_id
end

#default_replacement_optionsObject

Default replacement options to be applied to entries



3226
3227
3228
# File 'lib/kaltura_types.rb', line 3226

def default_replacement_options
  @default_replacement_options
end

#descriptionObject

The description of the Conversion Profile



3191
3192
3193
# File 'lib/kaltura_types.rb', line 3191

def description
  @description
end

#detect_gopObject

When set, the ExtractMedia job should detect the source file GOP using this value as the max calculated period



3222
3223
3224
# File 'lib/kaltura_types.rb', line 3222

def detect_gop
  @detect_gop
end

#flavor_params_idsObject

List of included flavor ids (comma separated)



3197
3198
3199
# File 'lib/kaltura_types.rb', line 3197

def flavor_params_ids
  @flavor_params_ids
end

#idObject

The id of the Conversion Profile



3180
3181
3182
# File 'lib/kaltura_types.rb', line 3180

def id
  @id
end

#is_defaultObject

Indicates that this conversion profile is system default



3199
3200
3201
# File 'lib/kaltura_types.rb', line 3199

def is_default
  @is_default
end

#is_partner_defaultObject

Indicates that this conversion profile is partner default



3201
3202
3203
# File 'lib/kaltura_types.rb', line 3201

def is_partner_default
  @is_partner_default
end

#media_info_xsl_transformationObject

XSL to transform ingestion Media Info XML



3224
3225
3226
# File 'lib/kaltura_types.rb', line 3224

def media_info_xsl_transformation
  @media_info_xsl_transformation
end

#media_parser_typeObject

Media parser type to be used for extract media



3213
3214
3215
# File 'lib/kaltura_types.rb', line 3213

def media_parser_type
  @media_parser_type
end

#nameObject

The name of the Conversion Profile



3185
3186
3187
# File 'lib/kaltura_types.rb', line 3185

def name
  @name
end

#partner_idObject

Returns the value of attribute partner_id.



3181
3182
3183
# File 'lib/kaltura_types.rb', line 3181

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



3182
3183
3184
# File 'lib/kaltura_types.rb', line 3182

def status
  @status
end

#storage_profile_idObject

ID of default storage profile to be used for linked net-storage file syncs



3211
3212
3213
# File 'lib/kaltura_types.rb', line 3211

def storage_profile_id
  @storage_profile_id
end

#system_nameObject

System name of the Conversion Profile



3187
3188
3189
# File 'lib/kaltura_types.rb', line 3187

def system_name
  @system_name
end

#tagsObject

Comma separated tags



3189
3190
3191
# File 'lib/kaltura_types.rb', line 3189

def tags
  @tags
end

#typeObject

Returns the value of attribute type.



3183
3184
3185
# File 'lib/kaltura_types.rb', line 3183

def type
  @type
end

#xsl_transformationObject

XSL to transform ingestion MRSS XML



3209
3210
3211
# File 'lib/kaltura_types.rb', line 3209

def xsl_transformation
  @xsl_transformation
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
# File 'lib/kaltura_types.rb', line 3260

def from_xml(xml_element)
  super
  if xml_element.elements['id'] != nil
    self.id = xml_element.elements['id'].text
  end
  if xml_element.elements['partnerId'] != nil
    self.partner_id = xml_element.elements['partnerId'].text
  end
  if xml_element.elements['status'] != nil
    self.status = xml_element.elements['status'].text
  end
  if xml_element.elements['type'] != nil
    self.type = xml_element.elements['type'].text
  end
  if xml_element.elements['name'] != nil
    self.name = xml_element.elements['name'].text
  end
  if xml_element.elements['systemName'] != nil
    self.system_name = xml_element.elements['systemName'].text
  end
  if xml_element.elements['tags'] != nil
    self.tags = xml_element.elements['tags'].text
  end
  if xml_element.elements['description'] != nil
    self.description = xml_element.elements['description'].text
  end
  if xml_element.elements['defaultEntryId'] != nil
    self.default_entry_id = xml_element.elements['defaultEntryId'].text
  end
  if xml_element.elements['createdAt'] != nil
    self.created_at = xml_element.elements['createdAt'].text
  end
  if xml_element.elements['flavorParamsIds'] != nil
    self.flavor_params_ids = xml_element.elements['flavorParamsIds'].text
  end
  if xml_element.elements['isDefault'] != nil
    self.is_default = xml_element.elements['isDefault'].text
  end
  if xml_element.elements['isPartnerDefault'] != nil
    self.is_partner_default = xml_element.elements['isPartnerDefault'].text
  end
  if xml_element.elements['cropDimensions'] != nil
    self.crop_dimensions = KalturaClientBase.object_from_xml(xml_element.elements['cropDimensions'], 'KalturaCropDimensions')
  end
  if xml_element.elements['clipStart'] != nil
    self.clip_start = xml_element.elements['clipStart'].text
  end
  if xml_element.elements['clipDuration'] != nil
    self.clip_duration = xml_element.elements['clipDuration'].text
  end
  if xml_element.elements['xslTransformation'] != nil
    self.xsl_transformation = xml_element.elements['xslTransformation'].text
  end
  if xml_element.elements['storageProfileId'] != nil
    self.storage_profile_id = xml_element.elements['storageProfileId'].text
  end
  if xml_element.elements['mediaParserType'] != nil
    self.media_parser_type = xml_element.elements['mediaParserType'].text
  end
  if xml_element.elements['calculateComplexity'] != nil
    self.calculate_complexity = xml_element.elements['calculateComplexity'].text
  end
  if xml_element.elements['collectionTags'] != nil
    self.collection_tags = xml_element.elements['collectionTags'].text
  end
  if xml_element.elements['conditionalProfiles'] != nil
    self.conditional_profiles = xml_element.elements['conditionalProfiles'].text
  end
  if xml_element.elements['detectGOP'] != nil
    self.detect_gop = xml_element.elements['detectGOP'].text
  end
  if xml_element.elements['mediaInfoXslTransformation'] != nil
    self.media_info_xsl_transformation = xml_element.elements['mediaInfoXslTransformation'].text
  end
  if xml_element.elements['defaultReplacementOptions'] != nil
    self.default_replacement_options = KalturaClientBase.object_from_xml(xml_element.elements['defaultReplacementOptions'], 'KalturaEntryReplacementOptions')
  end
  if xml_element.elements['defaultAudioLang'] != nil
    self.default_audio_lang = xml_element.elements['defaultAudioLang'].text
  end
end