Interface ImageInserter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageInserter.Builder,ImageInserter>,SdkBuilder<ImageInserter.Builder,ImageInserter>,SdkPojo
- Enclosing class:
- ImageInserter
public static interface ImageInserter.Builder extends SdkPojo, CopyableBuilder<ImageInserter.Builder,ImageInserter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageInserter.BuilderinsertableImages(Collection<InsertableImage> insertableImages)Specify the images that you want to overlay on your video.ImageInserter.BuilderinsertableImages(Consumer<InsertableImage.Builder>... insertableImages)Specify the images that you want to overlay on your video.ImageInserter.BuilderinsertableImages(InsertableImage... insertableImages)Specify the images that you want to overlay on your video.ImageInserter.BuildersdrReferenceWhiteLevel(Integer sdrReferenceWhiteLevel)Specify the reference white level, in nits, for all of your image inserter images.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
insertableImages
ImageInserter.Builder insertableImages(Collection<InsertableImage> insertableImages)
Specify the images that you want to overlay on your video. The images must be PNG or TGA files.- Parameters:
insertableImages- Specify the images that you want to overlay on your video. The images must be PNG or TGA files.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
insertableImages
ImageInserter.Builder insertableImages(InsertableImage... insertableImages)
Specify the images that you want to overlay on your video. The images must be PNG or TGA files.- Parameters:
insertableImages- Specify the images that you want to overlay on your video. The images must be PNG or TGA files.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
insertableImages
ImageInserter.Builder insertableImages(Consumer<InsertableImage.Builder>... insertableImages)
Specify the images that you want to overlay on your video. The images must be PNG or TGA files. This is a convenience method that creates an instance of theInsertableImage.Builderavoiding the need to create one manually viaInsertableImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#insertableImages(List.) - Parameters:
insertableImages- a consumer that will call methods onInsertableImage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#insertableImages(java.util.Collection)
-
sdrReferenceWhiteLevel
ImageInserter.Builder sdrReferenceWhiteLevel(Integer sdrReferenceWhiteLevel)
Specify the reference white level, in nits, for all of your image inserter images. Use to correct brightness levels within HDR10 outputs. For 1,000 nit peak brightness displays, we recommend that you set SDR reference white level to 203 (according to ITU-R BT.2408). Leave blank to use the default value of 100, or specify an integer from 100 to 1000.- Parameters:
sdrReferenceWhiteLevel- Specify the reference white level, in nits, for all of your image inserter images. Use to correct brightness levels within HDR10 outputs. For 1,000 nit peak brightness displays, we recommend that you set SDR reference white level to 203 (according to ITU-R BT.2408). Leave blank to use the default value of 100, or specify an integer from 100 to 1000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-