update_image_generation_configuration
(**kwargs)¶Updates the StreamInfo
and ImageProcessingConfiguration
fields.
See also: AWS API Documentation
Request Syntax
response = client.update_image_generation_configuration(
StreamName='string',
StreamARN='string',
ImageGenerationConfiguration={
'Status': 'ENABLED'|'DISABLED',
'ImageSelectorType': 'SERVER_TIMESTAMP'|'PRODUCER_TIMESTAMP',
'DestinationConfig': {
'Uri': 'string',
'DestinationRegion': 'string'
},
'SamplingInterval': 123,
'Format': 'JPEG'|'PNG',
'FormatConfig': {
'string': 'string'
},
'WidthPixels': 123,
'HeightPixels': 123
}
)
StreamName
or the StreamARN
.StreamName
or the StreamARN
.The structure that contains the information required for the KVS images delivery. If the structure is null, the configuration will be deleted from the stream.
Indicates whether the ContinuousImageGenerationConfigurations
API is enabled or disabled.
The origin of the Server or Producer timestamps to use to generate the images.
The structure that contains the information required to deliver images to a customer.
The Uniform Resource Identifier (URI) that identifies where the images will be delivered.
The AWS Region of the S3 bucket where images will be delivered. This DestinationRegion
must match the Region where the stream is located.
The time interval in milliseconds (ms) at which the images need to be generated from the stream. The minimum value that can be provided is 33 ms, because a camera that generates content at 30 FPS would create a frame every 33.3 ms. If the timestamp range is less than the sampling interval, the Image from the StartTimestamp
will be returned if available.
The accepted image format.
The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated. The FormatConfig
key is the JPEGQuality
, which indicates the JPEG quality key to be used to generate the image. The FormatConfig
value accepts ints from 1 to 100. If the value is 1, the image will be generated with less quality and the best compression. If the value is 100, the image will be generated with the best quality and less compression. If no value is provided, the default value of the JPEGQuality
key will be set to 80.
The width of the output image that is used in conjunction with the HeightPixels
parameter. When both WidthPixels
and HeightPixels
parameters are provided, the image will be stretched to fit the specified aspect ratio. If only the WidthPixels
parameter is provided, its original aspect ratio will be used to calculate the HeightPixels
ratio. If neither parameter is provided, the original image size will be returned.
The height of the output image that is used in conjunction with the WidthPixels
parameter. When both HeightPixels
and WidthPixels
parameters are provided, the image will be stretched to fit the specified aspect ratio. If only the HeightPixels
parameter is provided, its original aspect ratio will be used to calculate the WidthPixels
ratio. If neither parameter is provided, the original image size will be returned.
dict
Response Syntax
{}
Response Structure
Exceptions
KinesisVideo.Client.exceptions.InvalidArgumentException
KinesisVideo.Client.exceptions.ClientLimitExceededException
KinesisVideo.Client.exceptions.ResourceNotFoundException
KinesisVideo.Client.exceptions.AccessDeniedException
KinesisVideo.Client.exceptions.ResourceInUseException
KinesisVideo.Client.exceptions.NoDataRetentionException