Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ def initialize
# supported languages are English ('en-US' and 'en-GB'), Spanish ('es-ES'
# and 'es-MX'), French ('fr-FR'), Italian ('it-IT'), Japanese ('ja-JP'),
# Portuguese ('pt-BR'), Chinese ('zh-CN'), German ('de-DE'), Arabic
# ('ar-EG'), Russian ('ru-RU'), Hindi ('hi-IN'), and Korean ('ko-KR'). If
# you know the language of your content, it is recommended that you
# specify it. If the language isn't specified or set to null, automatic
# language detection will choose the first language detected and process
# with the selected language for the duration of the file. This language
# detection feature currently supports English, Chinese, French, German,
# Italian, Japanese, Spanish, Russian, and Portuguese. It does not
# currently support dynamically switching between languages after the
# first language is detected. The automatic detection works best with
# audio recordings with clearly discernable speech. If automatic
# detection fails to find the language, transcription would fallback to
# 'en-US'."
# ('ar-EG' and 'ar-SY'), Russian ('ru-RU'), Hindi ('hi-IN'), and Korean
# ('ko-KR'). If you know the language of your content, it is recommended
# that you specify it. If the language isn't specified or set to null,
# automatic language detection will choose the first language detected
# and process with the selected language for the duration of the file.
# This language detection feature currently supports English, Chinese,
# French, German, Italian, Japanese, Spanish, Russian, and Portuguese. It
# does not currently support dynamically switching between languages
# after the first language is detected. The automatic detection works
# best with audio recordings with clearly discernable speech. If
# automatic detection fails to find the language, transcription would
# fallback to 'en-US'."
attr_accessor :audio_language


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ def initialize
# @return [EncoderNamedPreset] The built-in preset to be used for
# encoding videos. Possible values include: 'H264SingleBitrateSD',
# 'H264SingleBitrate720p', 'H264SingleBitrate1080p', 'AdaptiveStreaming',
# 'AACGoodQualityAudio', 'H264MultipleBitrate1080p',
# 'H264MultipleBitrate720p', 'H264MultipleBitrateSD'
# 'AACGoodQualityAudio', 'ContentAwareEncodingExperimental',
# 'H264MultipleBitrate1080p', 'H264MultipleBitrate720p',
# 'H264MultipleBitrateSD'
attr_accessor :preset_name


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ module EncoderNamedPreset
H264SingleBitrate1080p = "H264SingleBitrate1080p"
AdaptiveStreaming = "AdaptiveStreaming"
AACGoodQualityAudio = "AACGoodQualityAudio"
ContentAwareEncodingExperimental = "ContentAwareEncodingExperimental"
H264MultipleBitrate1080p = "H264MultipleBitrate1080p"
H264MultipleBitrate720p = "H264MultipleBitrate720p"
H264MultipleBitrateSD = "H264MultipleBitrateSD"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ def initialize

attr_accessor :@odatatype

# @return [H264VideoProfile] Which profile of the H.264 standard should
# be used when encoding this layer. Default is Auto. Possible values
# include: 'Auto', 'Baseline', 'Main', 'High', 'High422', 'High444'
# @return [H264VideoProfile] We currently support Baseline, Main, High,
# High422, High444. Default is Auto. Possible values include: 'Auto',
# 'Baseline', 'Main', 'High', 'High422', 'High444'
attr_accessor :profile

# @return [String] Which level of the H.264 standard should be used when
# encoding this layer. The value can be Auto, or a number that matches
# the H.264 profile. If not specified, the default is Auto, which lets
# the encoder choose the Level that is appropriate for this layer.
# @return [String] We currently support Level up to 6.2. The value can be
# Auto, or a number that matches the H.264 profile. If not specified, the
# default is Auto, which lets the encoder choose the Level that is
# appropriate for this layer.
attr_accessor :level

# @return [Duration] The VBV buffer window length. The value should be in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
module Azure::MediaServices::Mgmt::V2018_07_01
module Models
#
# Describes a list of inputs to a Job.
# Describes a list of of inputs to a Job.
#
class JobInputs < JobInput

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def initialize

# @return [InsightsType] The type of insights to be extracted. If not set
# then based on the content the type will selected. If the content is
# audio only then only audio insights are extracted and if it is video
# audi only then only audio insights are extraced and if it is video
# only. Possible values include: 'AudioInsightsOnly',
# 'VideoInsightsOnly', 'AllInsights'
attr_accessor :insights_to_extract
Expand Down