How to overlay a full screen video
The following procedure describes how to display a full screen video overlay for a duration that you specify.
To add a video overlay by using the MediaConvert console:
-
Open the Create job
page in the MediaConvert console. -
Specify an input video. For more information, see Step 1: Input files in Configuring jobs.
-
In the settings for your input, next to Video overlays, choose Add overlay.
-
Specify an Input file URL.
-
Specify a Start timecode.
-
Specify an End timecode.
-
Optionally add any Input clips for your video overlay.
To specify a video overlay using the API, SDK, or AWS Command Line Interface (AWS CLI), include
VideoOverlays
in your job settings JSON.
The following is an excerpt of a job settings JSON that specifies a full
screen video overlay at timecode 00:10:00:00
for one minute from a
clipped input:
{ "Settings": { "Inputs": [ { "VideoOverlays": [ { "Input": { "FileInput": "s3://amzn-s3-demo-bucket/overlay.mp4", "InputClippings": [ { "StartTimecode": "00:10:00:00", "EndTimecode": "00:11:00:00" } ], "TimecodeSource": "EMBEDDED" }, "StartTimecode": "00:01:00:00", "EndTimecode": "00:02:00:00" } ] } ] } }