Class: Aws::MediaPackageV2::Types::ScteHls
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageV2::Types::ScteHls
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediapackagev2/types.rb
Overview
The SCTE configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ad_marker_hls ⇒ String
Ad markers indicate when ads should be inserted during playback.
Instance Attribute Details
#ad_marker_hls ⇒ String
Ad markers indicate when ads should be inserted during playback. If you include ad markers in the content stream in your upstream encoders, then you need to inform MediaPackage what to do with the ad markers in the output. Choose what you want MediaPackage to do with the ad markers.
Value description:
-
DATERANGE - Insert EXT-X-DATERANGE tags to signal ad and program transition events in TS and CMAF manifests. If you use DATERANGE, you must set a programDateTimeIntervalSeconds value of 1 or higher. To learn more about DATERANGE, see [SCTE-35 Ad Marker EXT-X-DATERANGE].
^
[1]: docs.aws.amazon.com/mediapackage/latest/ug/scte-35-ad-marker-ext-x-daterange.html
2981 2982 2983 2984 2985 |
# File 'lib/aws-sdk-mediapackagev2/types.rb', line 2981 class ScteHls < Struct.new( :ad_marker_hls) SENSITIVE = [] include Aws::Structure end |