interface TemporalFilterSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.TemporalFilterSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_TemporalFilterSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.TemporalFilterSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.TemporalFilterSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » TemporalFilterSettingsProperty |
Settings for the temporal filter to apply to the video.
The parents of this entity are H264FilterSettings, H265FilterSettings, and Mpeg2FilterSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const temporalFilterSettingsProperty: medialive_mixins.CfnChannelPropsMixin.TemporalFilterSettingsProperty = {
postFilterSharpening: 'postFilterSharpening',
strength: 'strength',
};
Properties
| Name | Type | Description |
|---|---|---|
| post | string | If you enable this filter, the results are the following: - If the source content is noisy (it contains excessive digital artifacts), the filter cleans up the source. |
| strength? | string | Choose a filter strength. |
postFilterSharpening?
Type:
string
(optional)
If you enable this filter, the results are the following: - If the source content is noisy (it contains excessive digital artifacts), the filter cleans up the source.
- If the source content is already clean, the filter tends to decrease the bitrate, especially when the rate control mode is QVBR.
strength?
Type:
string
(optional)
Choose a filter strength.
We recommend a strength of 1 or 2. A higher strength might take out good information, resulting in an image that is overly soft.

.NET
Go
Java
Python
TypeScript