Skip to content

Commit

Permalink
Release v1.29.26 (2020-03-17) (#3211)
Browse files Browse the repository at this point in the history
Release v1.29.26 (2020-03-17)
===

### Service Client Updates
* `service/mediaconvert`: Updates service API and documentation
  * AWS Elemental MediaConvert SDK has added support for: AV1 encoding in File Group MP4, DASH and CMAF DASH outputs; PCM/WAV audio output in MPEG2-TS containers; and Opus audio in Webm inputs.
  • Loading branch information
aws-sdk-go-automation committed Mar 17, 2020
1 parent 4dcdf79 commit 6194da3
Show file tree
Hide file tree
Showing 7 changed files with 855 additions and 28 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.29.26 (2020-03-17)
===

### Service Client Updates
* `service/mediaconvert`: Updates service API and documentation
* AWS Elemental MediaConvert SDK has added support for: AV1 encoding in File Group MP4, DASH and CMAF DASH outputs; PCM/WAV audio output in MPEG2-TS containers; and Opus audio in Webm inputs.

Release v1.29.25 (2020-03-16)
===

Expand Down
180 changes: 169 additions & 11 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.29.25"
const SDKVersion = "1.29.26"
114 changes: 114 additions & 0 deletions models/apis/mediaconvert/2017-08-29/api-2.json
Expand Up @@ -1398,6 +1398,110 @@
"USE_CONFIGURED"
]
},
"Av1AdaptiveQuantization": {
"type": "string",
"enum": [
"OFF",
"LOW",
"MEDIUM",
"HIGH",
"HIGHER",
"MAX"
]
},
"Av1FramerateControl": {
"type": "string",
"enum": [
"INITIALIZE_FROM_SOURCE",
"SPECIFIED"
]
},
"Av1FramerateConversionAlgorithm": {
"type": "string",
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE"
]
},
"Av1QvbrSettings": {
"type": "structure",
"members": {
"QvbrQualityLevel": {
"shape": "__integerMin1Max10",
"locationName": "qvbrQualityLevel"
},
"QvbrQualityLevelFineTune": {
"shape": "__doubleMin0Max1",
"locationName": "qvbrQualityLevelFineTune"
}
}
},
"Av1RateControlMode": {
"type": "string",
"enum": [
"QVBR"
]
},
"Av1Settings": {
"type": "structure",
"members": {
"AdaptiveQuantization": {
"shape": "Av1AdaptiveQuantization",
"locationName": "adaptiveQuantization"
},
"FramerateControl": {
"shape": "Av1FramerateControl",
"locationName": "framerateControl"
},
"FramerateConversionAlgorithm": {
"shape": "Av1FramerateConversionAlgorithm",
"locationName": "framerateConversionAlgorithm"
},
"FramerateDenominator": {
"shape": "__integerMin1Max2147483647",
"locationName": "framerateDenominator"
},
"FramerateNumerator": {
"shape": "__integerMin1Max2147483647",
"locationName": "framerateNumerator"
},
"GopSize": {
"shape": "__doubleMin0",
"locationName": "gopSize"
},
"MaxBitrate": {
"shape": "__integerMin1000Max1152000000",
"locationName": "maxBitrate"
},
"NumberBFramesBetweenReferenceFrames": {
"shape": "__integerMin7Max15",
"locationName": "numberBFramesBetweenReferenceFrames"
},
"QvbrSettings": {
"shape": "Av1QvbrSettings",
"locationName": "qvbrSettings"
},
"RateControlMode": {
"shape": "Av1RateControlMode",
"locationName": "rateControlMode"
},
"Slices": {
"shape": "__integerMin1Max32",
"locationName": "slices"
},
"SpatialAdaptiveQuantization": {
"shape": "Av1SpatialAdaptiveQuantization",
"locationName": "spatialAdaptiveQuantization"
}
}
},
"Av1SpatialAdaptiveQuantization": {
"type": "string",
"enum": [
"DISABLED",
"ENABLED"
]
},
"AvailBlanking": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -7665,6 +7769,7 @@
"type": "string",
"enum": [
"FRAME_CAPTURE",
"AV1",
"H_264",
"H_265",
"MPEG2",
Expand All @@ -7674,6 +7779,10 @@
"VideoCodecSettings": {
"type": "structure",
"members": {
"Av1Settings": {
"shape": "Av1Settings",
"locationName": "av1Settings"
},
"Codec": {
"shape": "VideoCodec",
"locationName": "codec"
Expand Down Expand Up @@ -8220,6 +8329,11 @@
"min": 64000,
"max": 640000
},
"__integerMin7Max15": {
"type": "integer",
"min": 7,
"max": 15
},
"__integerMin8000Max192000": {
"type": "integer",
"min": 8000,
Expand Down

0 comments on commit 6194da3

Please sign in to comment.