class H264FilterSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.H264FilterSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#H264FilterSettings |
Java | software.amazon.awscdk.services.medialive.alpha.H264FilterSettings |
Python | aws_cdk.aws_medialive_alpha.H264FilterSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป H264FilterSettings |
Filter settings for H.264 video. Supports temporal filter and bandwidth reduction filter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const bandwidthReductionPostFilterSharpening: medialive_alpha.BandwidthReductionPostFilterSharpening;
declare const bandwidthReductionStrength: medialive_alpha.BandwidthReductionStrength;
const h264FilterSettings = medialive_alpha.H264FilterSettings.bandwidthReductionFilter(/* all optional props */ {
postFilterSharpening: bandwidthReductionPostFilterSharpening,
strength: bandwidthReductionStrength,
});
Methods
| Name | Description |
|---|---|
| static bandwidth | Apply a bandwidth reduction filter. |
| static temporal | Apply a temporal filter. |
static bandwidthReductionFilter(props?)
public static bandwidthReductionFilter(props?: BandwidthReductionFilterProps): H264FilterSettings
Parameters
Returns
Apply a bandwidth reduction filter.
static temporalFilter(props?)
public static temporalFilter(props?: TemporalFilterProps): H264FilterSettings
Parameters
- props
TemporalFilter Props
Returns
Apply a temporal filter.

.NET
Go
Java
Python
TypeScript (