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
Modifier and TypeMethodDescriptioninsertableImages
(Collection<InsertableImage> insertableImages) Specify the images that you want to overlay on your video.insertableImages
(Consumer<InsertableImage.Builder>... insertableImages) Specify the images that you want to overlay on your video.insertableImages
(InsertableImage... insertableImages) Specify the images that you want to overlay on your video.sdrReferenceWhiteLevel
(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 Details
-
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
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
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.Builder
avoiding the need to create one manually viaInsertableImage.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toinsertableImages(List<InsertableImage>)
.- 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:
-
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.
-