Skip to content
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 @@ -161,14 +161,14 @@ class H264Complexity(str, Enum):

class EncoderNamedPreset(str, Enum):

h264_single_bitrate_sd = "H264SingleBitrateSD" #: Produces an MP4 file where the video is encoded with H.264 codec at 2200 kbps and a picture height of 480 pixels, and the stereo audio is encoded with AAC-LC codec at 64 kbps.
h264_single_bitrate720p = "H264SingleBitrate720p" #: Produces an MP4 file where the video is encoded with H.264 codec at 4500 kbps and a picture height of 720 pixels, and the stereo audio is encoded with AAC-LC codec at 64 kbps.
h264_single_bitrate1080p = "H264SingleBitrate1080p" #: Produces an MP4 file where the video is encoded with H.264 codec at 6750 kbps and a picture height of 1080 pixels, and the stereo audio is encoded with AAC-LC codec at 64 kbps.
h264_single_bitrate_sd = "H264SingleBitrateSD" #: Produces an MP4 file where the video is encoded with H.264 codec at 2200 Kbps and a picture height of 480 pixels, and the stereo audio is encoded with AAC-LC codec at 64 Kbps.
h264_single_bitrate720p = "H264SingleBitrate720p" #: Produces an MP4 file where the video is encoded with H.264 codec at 4500 Kbps and a picture height of 720 pixels, and the stereo audio is encoded with AAC-LC codec at 64 Kbps.
h264_single_bitrate1080p = "H264SingleBitrate1080p" #: Produces an MP4 file where the video is encoded with H.264 codec at 6750 Kbps and a picture height of 1080 pixels, and the stereo audio is encoded with AAC-LC codec at 64 Kbps.
adaptive_streaming = "AdaptiveStreaming" #: Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and audio in separate MP4 files, which is optimal for adaptive streaming.
aac_good_quality_audio = "AACGoodQualityAudio" #: Produces a single MP4 file containing only stereo audio encoded at 192 kbps.
h264_multiple_bitrate1080p = "H264MultipleBitrate1080p" #: Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p.
h264_multiple_bitrate720p = "H264MultipleBitrate720p" #: Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p.
h264_multiple_bitrate_sd = "H264MultipleBitrateSD" #: Produces a set of 5 GOP-aligned MP4 files, ranging from 1600kbps to 400 kbps, and stereo AAC audio. Resolution starts at 480p and goes down to 360p.
aac_good_quality_audio = "AACGoodQualityAudio" #: Produces a single MP4 file containing only stereo audio encoded at 192 Kbps.
h264_multiple_bitrate1080p = "H264MultipleBitrate1080p" #: Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p.
h264_multiple_bitrate720p = "H264MultipleBitrate720p" #: Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p.
h264_multiple_bitrate_sd = "H264MultipleBitrateSD" #: Produces a set of 5 GOP-aligned MP4 files, ranging from 1600Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 480p and goes down to 360p.


class InsightsType(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CommonEncryptionCbcs(Model):
:param content_keys: Representing default content key for each encryption
scheme and separate content keys for specific tracks
:type content_keys: ~azure.mgmt.media.models.StreamingPolicyContentKeys
:param drm: Configuration of DRMs for current encryption scheme
:param drm: Configuration of DRM for current encryption scheme
:type drm: ~azure.mgmt.media.models.CbcsDrmConfiguration
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CommonEncryptionCbcs(Model):
:param content_keys: Representing default content key for each encryption
scheme and separate content keys for specific tracks
:type content_keys: ~azure.mgmt.media.models.StreamingPolicyContentKeys
:param drm: Configuration of DRMs for current encryption scheme
:param drm: Configuration of DRM for current encryption scheme
:type drm: ~azure.mgmt.media.models.CbcsDrmConfiguration
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CommonEncryptionCenc(Model):
:param content_keys: Representing default content key for each encryption
scheme and separate content keys for specific tracks
:type content_keys: ~azure.mgmt.media.models.StreamingPolicyContentKeys
:param drm: Configuration of DRMs for CommonEncryptionCenc encryption
:param drm: Configuration of DRM for CommonEncryptionCenc encryption
scheme
:type drm: ~azure.mgmt.media.models.CencDrmConfiguration
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CommonEncryptionCenc(Model):
:param content_keys: Representing default content key for each encryption
scheme and separate content keys for specific tracks
:type content_keys: ~azure.mgmt.media.models.StreamingPolicyContentKeys
:param drm: Configuration of DRMs for CommonEncryptionCenc encryption
:param drm: Configuration of DRM for CommonEncryptionCenc encryption
scheme
:type drm: ~azure.mgmt.media.models.CencDrmConfiguration
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class FilterTrackPropertyCondition(Model):
:param property: Required. The track property type. Possible values
include: 'Unknown', 'Type', 'Name', 'Language', 'FourCC', 'Bitrate'
:type property: str or ~azure.mgmt.media.models.FilterTrackPropertyType
:param value: Required. The track proprty value.
:param value: Required. The track property value.
:type value: str
:param operation: Required. The track property condition operation.
Possible values include: 'Equal', 'NotEqual'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class FilterTrackPropertyCondition(Model):
:param property: Required. The track property type. Possible values
include: 'Unknown', 'Type', 'Name', 'Language', 'FourCC', 'Bitrate'
:type property: str or ~azure.mgmt.media.models.FilterTrackPropertyType
:param value: Required. The track proprty value.
:param value: Required. The track property value.
:type value: str
:param operation: Required. The track property condition operation.
Possible values include: 'Equal', 'NotEqual'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class PresentationTimeRange(Model):
:type live_backoff_duration: long
:param timescale: The time scale of time stamps.
:type timescale: long
:param force_end_timestamp: The indicator of forcing exsiting of end time
:param force_end_timestamp: The indicator of forcing existing of end time
stamp.
:type force_end_timestamp: bool
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class PresentationTimeRange(Model):
:type live_backoff_duration: long
:param timescale: The time scale of time stamps.
:type timescale: long
:param force_end_timestamp: The indicator of forcing exsiting of end time
:param force_end_timestamp: The indicator of forcing existing of end time
stamp.
:type force_end_timestamp: bool
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def list(
of items returned from a collection. The service returns the number of
available items up to but not greater than the specified value n.
:type top: int
:param orderby: Specifies the the key by which the result collection
:param orderby: Specifies the key by which the result collection
should be ordered.
:type orderby: str
:param dict custom_headers: headers that will be added to the request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def list(
of items returned from a collection. The service returns the number of
available items up to but not greater than the specified value n.
:type top: int
:param orderby: Specifies the the key by which the result collection
:param orderby: Specifies the key by which the result collection
should be ordered.
:type orderby: str
:param dict custom_headers: headers that will be added to the request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def list(
:type transform_name: str
:param filter: Restricts the set of items returned.
:type filter: str
:param orderby: Specifies the the key by which the result collection
:param orderby: Specifies the key by which the result collection
should be ordered.
:type orderby: str
:param dict custom_headers: headers that will be added to the request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def list(
:type account_name: str
:param filter: Restricts the set of items returned.
:type filter: str
:param orderby: Specifies the the key by which the result collection
:param orderby: Specifies the key by which the result collection
should be ordered.
:type orderby: str
:param dict custom_headers: headers that will be added to the request
Expand Down