Class: Kaltura::KalturaMediaEntry
- Inherits:
-
KalturaPlayableEntry
- Object
- KalturaObjectBase
- KalturaBaseEntry
- KalturaPlayableEntry
- Kaltura::KalturaMediaEntry
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#conversion_quality ⇒ Object
Override the default conversion quality.
-
#credit_url ⇒ Object
The URL for credits.
-
#credit_user_name ⇒ Object
The user name used for credits.
-
#data_url ⇒ Object
The URL used for playback.
-
#flavor_params_ids ⇒ Object
Comma separated flavor params ids that exists for this media entry.
-
#is_trim_disabled ⇒ Object
True if trim action is disabled for this entry.
-
#media_date ⇒ Object
The media date extracted from EXIF data (For images) as Unix timestamp (In seconds).
-
#media_type ⇒ Object
The media type of the entry.
-
#search_provider_id ⇒ Object
The ID of the media in the importing site.
-
#search_provider_type ⇒ Object
The search provider type used to import this entry.
-
#source_type ⇒ Object
The source type of the entry.
-
#source_version ⇒ Object
The source version of the entry.
-
#streams ⇒ Object
Array of streams that exists on the entry.
Attributes inherited from KalturaPlayableEntry
#duration, #duration_type, #height, #last_played_at, #ms_duration, #plays, #views, #width
Attributes inherited from KalturaBaseEntry
#access_control_id, #admin_tags, #application, #application_version, #block_auto_transcript, #capabilities, #categories, #categories_ids, #conversion_profile_id, #created_at, #creator_id, #description, #display_in_search, #download_url, #end_date, #entitled_users_edit, #entitled_users_publish, #entitled_users_view, #group_id, #id, #license_type, #moderation_count, #moderation_status, #multi_lingual_description, #multi_lingual_name, #multi_lingual_tags, #name, #operation_attributes, #parent_entry_id, #partner_data, #partner_id, #partner_sort_value, #rank, #redirect_entry_id, #reference_id, #replaced_entry_id, #replacement_status, #replacing_entry_id, #root_entry_id, #search_text, #start_date, #status, #tags, #template_entry_id, #thumbnail_url, #total_rank, #type, #updated_at, #user_id, #version, #votes
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#conversion_quality ⇒ Object
Override the default conversion quality
4774 4775 4776 |
# File 'lib/kaltura_types.rb', line 4774 def conversion_quality @conversion_quality end |
#credit_url ⇒ Object
The URL for credits
4786 4787 4788 |
# File 'lib/kaltura_types.rb', line 4786 def credit_url @credit_url end |
#credit_user_name ⇒ Object
The user name used for credits
4784 4785 4786 |
# File 'lib/kaltura_types.rb', line 4784 def credit_user_name @credit_user_name end |
#data_url ⇒ Object
The URL used for playback. This is not the download URL.
4790 4791 4792 |
# File 'lib/kaltura_types.rb', line 4790 def data_url @data_url end |
#flavor_params_ids ⇒ Object
Comma separated flavor params ids that exists for this media entry
4792 4793 4794 |
# File 'lib/kaltura_types.rb', line 4792 def flavor_params_ids @flavor_params_ids end |
#is_trim_disabled ⇒ Object
True if trim action is disabled for this entry
4794 4795 4796 |
# File 'lib/kaltura_types.rb', line 4794 def is_trim_disabled @is_trim_disabled end |
#media_date ⇒ Object
The media date extracted from EXIF data (For images) as Unix timestamp (In seconds)
4788 4789 4790 |
# File 'lib/kaltura_types.rb', line 4788 def media_date @media_date end |
#media_type ⇒ Object
The media type of the entry
4772 4773 4774 |
# File 'lib/kaltura_types.rb', line 4772 def media_type @media_type end |
#search_provider_id ⇒ Object
The ID of the media in the importing site
4782 4783 4784 |
# File 'lib/kaltura_types.rb', line 4782 def search_provider_id @search_provider_id end |
#search_provider_type ⇒ Object
The search provider type used to import this entry
4780 4781 4782 |
# File 'lib/kaltura_types.rb', line 4780 def search_provider_type @search_provider_type end |
#source_type ⇒ Object
The source type of the entry
4776 4777 4778 |
# File 'lib/kaltura_types.rb', line 4776 def source_type @source_type end |
#source_version ⇒ Object
The source version of the entry
4778 4779 4780 |
# File 'lib/kaltura_types.rb', line 4778 def source_version @source_version end |
#streams ⇒ Object
Array of streams that exists on the entry
4796 4797 4798 |
# File 'lib/kaltura_types.rb', line 4796 def streams @streams end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 |
# File 'lib/kaltura_types.rb', line 4811 def from_xml(xml_element) super if xml_element.elements['mediaType'] != nil self.media_type = xml_element.elements['mediaType'].text end if xml_element.elements['conversionQuality'] != nil self.conversion_quality = xml_element.elements['conversionQuality'].text end if xml_element.elements['sourceType'] != nil self.source_type = xml_element.elements['sourceType'].text end if xml_element.elements['sourceVersion'] != nil self.source_version = xml_element.elements['sourceVersion'].text end if xml_element.elements['searchProviderType'] != nil self.search_provider_type = xml_element.elements['searchProviderType'].text end if xml_element.elements['searchProviderId'] != nil self.search_provider_id = xml_element.elements['searchProviderId'].text end if xml_element.elements['creditUserName'] != nil self.credit_user_name = xml_element.elements['creditUserName'].text end if xml_element.elements['creditUrl'] != nil self.credit_url = xml_element.elements['creditUrl'].text end if xml_element.elements['mediaDate'] != nil self.media_date = xml_element.elements['mediaDate'].text end if xml_element.elements['dataUrl'] != nil self.data_url = xml_element.elements['dataUrl'].text end if xml_element.elements['flavorParamsIds'] != nil self.flavor_params_ids = xml_element.elements['flavorParamsIds'].text end if xml_element.elements['isTrimDisabled'] != nil self.is_trim_disabled = xml_element.elements['isTrimDisabled'].text end if xml_element.elements['streams'] != nil self.streams = KalturaClientBase.object_from_xml(xml_element.elements['streams'], 'KalturaStreamContainer') end end |