Skip to content

Commit

Permalink
This release adds support for Animated GIF output, forced chroma samp…
Browse files Browse the repository at this point in the history
…le positioning metadata, and Extensible Wave Container format
  • Loading branch information
aws-sdk-dotnet-automation committed Feb 7, 2025
1 parent b583884 commit 08c62a0
Show file tree
Hide file tree
Showing 30 changed files with 1,021 additions and 177 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"Av1QvbrSettings": {
Expand Down Expand Up @@ -1955,7 +1956,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"AvcIntraInterlaceMode": {
Expand Down Expand Up @@ -2531,6 +2533,14 @@
}
}
},
"ChromaPositionMode": {
"type": "string",
"enum": [
"AUTO",
"FORCE_CENTER",
"FORCE_TOP_LEFT"
]
},
"ClipLimits": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -3193,6 +3203,7 @@
"type": "string",
"enum": [
"F4V",
"GIF",
"ISMV",
"M2TS",
"M3U8",
Expand Down Expand Up @@ -4979,6 +4990,41 @@
}
}
},
"GifFramerateControl": {
"type": "string",
"enum": [
"INITIALIZE_FROM_SOURCE",
"SPECIFIED"
]
},
"GifFramerateConversionAlgorithm": {
"type": "string",
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE"
]
},
"GifSettings": {
"type": "structure",
"members": {
"FramerateControl": {
"shape": "GifFramerateControl",
"locationName": "framerateControl"
},
"FramerateConversionAlgorithm": {
"shape": "GifFramerateConversionAlgorithm",
"locationName": "framerateConversionAlgorithm"
},
"FramerateDenominator": {
"shape": "__integerMin1Max2147483647",
"locationName": "framerateDenominator"
},
"FramerateNumerator": {
"shape": "__integerMin1Max2147483647",
"locationName": "framerateNumerator"
}
}
},
"H264AdaptiveQuantization": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -5072,7 +5118,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"H264GopBReference": {
Expand Down Expand Up @@ -5495,7 +5542,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"H265GopBReference": {
Expand Down Expand Up @@ -8505,7 +8553,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"Mpeg2GopSizeUnits": {
Expand Down Expand Up @@ -9439,7 +9488,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"ProresInterlaceMode": {
Expand Down Expand Up @@ -10325,7 +10375,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"UncompressedInterlaceMode": {
Expand Down Expand Up @@ -10565,7 +10616,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"Vc3InterlaceMode": {
Expand Down Expand Up @@ -10650,6 +10702,7 @@
"AV1",
"AVC_INTRA",
"FRAME_CAPTURE",
"GIF",
"H_264",
"H_265",
"MPEG2",
Expand Down Expand Up @@ -10681,6 +10734,10 @@
"shape": "FrameCaptureSettings",
"locationName": "frameCaptureSettings"
},
"GifSettings": {
"shape": "GifSettings",
"locationName": "gifSettings"
},
"H264Settings": {
"shape": "H264Settings",
"locationName": "h264Settings"
Expand Down Expand Up @@ -10730,6 +10787,10 @@
"shape": "AntiAlias",
"locationName": "antiAlias"
},
"ChromaPositionMode": {
"shape": "ChromaPositionMode",
"locationName": "chromaPositionMode"
},
"CodecSettings": {
"shape": "VideoCodecSettings",
"locationName": "codecSettings"
Expand Down Expand Up @@ -11042,7 +11103,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"Vp8ParControl": {
Expand Down Expand Up @@ -11134,7 +11196,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"Vp9ParControl": {
Expand Down Expand Up @@ -11245,7 +11308,8 @@
"type": "string",
"enum": [
"RIFF",
"RF64"
"RF64",
"EXTENSIBLE"
]
},
"WavSettings": {
Expand Down Expand Up @@ -11311,7 +11375,8 @@
"enum": [
"ENABLED",
"DISABLED",
"STRICT"
"STRICT",
"MERGE"
]
},
"Xavc4kIntraCbgProfileClass": {
Expand Down Expand Up @@ -11447,7 +11512,8 @@
"enum": [
"DUPLICATE_DROP",
"INTERPOLATE",
"FRAMEFORMER"
"FRAMEFORMER",
"MAINTAIN_FRAME_COUNT"
]
},
"XavcGopBReference": {
Expand Down
Loading

0 comments on commit 08c62a0

Please sign in to comment.