@Stability(value=Stable)
public static interface CfnChannel.H265SettingsProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is VideoCodecSettings.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
H265SettingsProperty h265SettingsProperty = H265SettingsProperty.builder()
.adaptiveQuantization("adaptiveQuantization")
.afdSignaling("afdSignaling")
.alternativeTransferFunction("alternativeTransferFunction")
.bitrate(123)
.bufSize(123)
.colorMetadata("colorMetadata")
.colorSpaceSettings(H265ColorSpaceSettingsProperty.builder()
.colorSpacePassthroughSettings(ColorSpacePassthroughSettingsProperty.builder().build())
.hdr10Settings(Hdr10SettingsProperty.builder()
.maxCll(123)
.maxFall(123)
.build())
.rec601Settings(Rec601SettingsProperty.builder().build())
.rec709Settings(Rec709SettingsProperty.builder().build())
.build())
.filterSettings(H265FilterSettingsProperty.builder()
.temporalFilterSettings(TemporalFilterSettingsProperty.builder()
.postFilterSharpening("postFilterSharpening")
.strength("strength")
.build())
.build())
.fixedAfd("fixedAfd")
.flickerAq("flickerAq")
.framerateDenominator(123)
.framerateNumerator(123)
.gopClosedCadence(123)
.gopSize(123)
.gopSizeUnits("gopSizeUnits")
.level("level")
.lookAheadRateControl("lookAheadRateControl")
.maxBitrate(123)
.minIInterval(123)
.parDenominator(123)
.parNumerator(123)
.profile("profile")
.qvbrQualityLevel(123)
.rateControlMode("rateControlMode")
.scanType("scanType")
.sceneChangeDetect("sceneChangeDetect")
.slices(123)
.tier("tier")
.timecodeInsertion("timecodeInsertion")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.H265SettingsProperty.Builder
A builder for
CfnChannel.H265SettingsProperty |
static class |
CfnChannel.H265SettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.H265SettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.H265SettingsProperty.Builder |
builder() |
default String |
getAdaptiveQuantization()
Adaptive quantization.
|
default String |
getAfdSignaling()
Indicates that AFD values will be written into the output stream.
|
default String |
getAlternativeTransferFunction()
Whether or not EML should insert an Alternative Transfer Function SEI message to support backwards compatibility with non-HDR decoders and displays.
|
default Number |
getBitrate()
Average bitrate in bits/second.
|
default Number |
getBufSize()
Size of buffer (HRD buffer model) in bits.
|
default String |
getColorMetadata()
Includes colorspace metadata in the output.
|
default Object |
getColorSpaceSettings()
Color Space settings.
|
default Object |
getFilterSettings()
Optional filters that you can apply to an encode.
|
default String |
getFixedAfd()
Four bit AFD value to write on all frames of video in the output stream.
|
default String |
getFlickerAq()
If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames.
|
default Number |
getFramerateDenominator()
Framerate denominator.
|
default Number |
getFramerateNumerator()
Framerate numerator - framerate is a fraction, e.g.
|
default Number |
getGopClosedCadence()
Frequency of closed GOPs.
|
default Number |
getGopSize()
GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
|
default String |
getGopSizeUnits()
Indicates if the gopSize is specified in frames or seconds.
|
default String |
getLevel()
H.265 Level.
|
default String |
getLookAheadRateControl()
Amount of lookahead.
|
default Number |
getMaxBitrate()
For QVBR: See the tooltip for Quality level.
|
default Number |
getMinIInterval()
Only meaningful if sceneChangeDetect is set to enabled.
|
default Number |
getParDenominator()
Pixel Aspect Ratio denominator.
|
default Number |
getParNumerator()
Pixel Aspect Ratio numerator.
|
default String |
getProfile()
H.265 Profile.
|
default Number |
getQvbrQualityLevel()
Controls the target quality for the video encode.
|
default String |
getRateControlMode()
Rate control mode.
|
default String |
getScanType()
Sets the scan type of the output to progressive or top-field-first interlaced.
|
default String |
getSceneChangeDetect()
Scene change detection.
|
default Number |
getSlices()
Number of slices per picture.
|
default String |
getTier()
H.265 Tier.
|
default String |
getTimecodeInsertion()
Determines how timecodes should be inserted into the video elementary stream.
|
@Stability(value=Stable) @Nullable default String getAdaptiveQuantization()
Allows intra-frame quantizers to vary to improve visual quality.
@Stability(value=Stable) @Nullable default String getAfdSignaling()
If afdSignaling is "auto", the system will try to preserve the input AFD value (in cases where multiple AFD values are valid). If set to "fixed", the AFD value will be the value configured in the fixedAfd parameter.
@Stability(value=Stable) @Nullable default String getAlternativeTransferFunction()
@Stability(value=Stable) @Nullable default Number getBitrate()
Required when the rate control mode is VBR or CBR. Not used for QVBR. In an MS Smooth output group, each output must have a unique value when its bitrate is rounded down to the nearest multiple of 1000.
@Stability(value=Stable) @Nullable default Number getBufSize()
@Stability(value=Stable) @Nullable default String getColorMetadata()
@Stability(value=Stable) @Nullable default Object getColorSpaceSettings()
@Stability(value=Stable) @Nullable default Object getFilterSettings()
@Stability(value=Stable) @Nullable default String getFixedAfd()
Only valid when afdSignaling is set to 'Fixed'.
@Stability(value=Stable) @Nullable default String getFlickerAq()
@Stability(value=Stable) @Nullable default Number getFramerateDenominator()
@Stability(value=Stable) @Nullable default Number getFramerateNumerator()
@Stability(value=Stable) @Nullable default Number getGopClosedCadence()
In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
@Stability(value=Stable) @Nullable default Number getGopSize()
If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1. If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
@Stability(value=Stable) @Nullable default String getGopSizeUnits()
If seconds the system will convert the gopSize into a frame count at run time.
@Stability(value=Stable) @Nullable default String getLevel()
@Stability(value=Stable) @Nullable default String getLookAheadRateControl()
A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
@Stability(value=Stable) @Nullable default Number getMaxBitrate()
@Stability(value=Stable) @Nullable default Number getMinIInterval()
Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
@Stability(value=Stable) @Nullable default Number getParDenominator()
@Stability(value=Stable) @Nullable default Number getParNumerator()
@Stability(value=Stable) @Nullable default String getProfile()
@Stability(value=Stable) @Nullable default Number getQvbrQualityLevel()
Applies only when the rate control mode is QVBR. Set values for the QVBR quality level field and Max bitrate field that suit your most important viewing devices. Recommended values are:
@Stability(value=Stable) @Nullable default String getRateControlMode()
QVBR: Quality will match the specified quality level except when it is constrained by the maximum bitrate. Recommended if you or your viewers pay for bandwidth. CBR: Quality varies, depending on the video complexity. Recommended only if you distribute your assets to devices that cannot handle variable bitrates. Multiplex: This rate control mode is only supported (and is required) when the video is being delivered to a MediaLive Multiplex in which case the rate control configuration is controlled by the properties within the Multiplex Program.
@Stability(value=Stable) @Nullable default String getScanType()
@Stability(value=Stable) @Nullable default String getSceneChangeDetect()
@Stability(value=Stable) @Nullable default Number getSlices()
Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures. This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
@Stability(value=Stable) @Nullable default String getTier()
@Stability(value=Stable) @Nullable default String getTimecodeInsertion()
@Stability(value=Stable) static CfnChannel.H265SettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.