class Kaltura::KalturaConvertProfileJobData

Attributes

input_file_sync_local_path[RW]
thumb_bitrate[RW]

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

thumb_height[RW]

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

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaJobData#from_xml
# File lib/kaltura_types.rb, line 12437
def from_xml(xml_element)
        super
        if xml_element.elements['inputFileSyncLocalPath'] != nil
                self.input_file_sync_local_path = xml_element.elements['inputFileSyncLocalPath'].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
end
thumb_bitrate=(val) click to toggle source
# File lib/kaltura_types.rb, line 12433
def thumb_bitrate=(val)
        @thumb_bitrate = val.to_i
end
thumb_height=(val) click to toggle source
# File lib/kaltura_types.rb, line 12430
def thumb_height=(val)
        @thumb_height = val.to_i
end