Class: Aws::MediaPackageV2::Types::StartTag
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageV2::Types::StartTag
- Defined in:
- gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb
Overview
To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#precise ⇒ Boolean
Specify the value for PRECISE within your EXT-X-START tag.
-
#time_offset ⇒ Float
Specify the value for TIME-OFFSET within your EXT-X-START tag.
Instance Attribute Details
#precise ⇒ Boolean
Specify the value for PRECISE within your EXT-X-START tag. Leave blank, or choose false, to use the default value NO. Choose yes to use the value YES.
3144 3145 3146 3147 3148 3149 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 3144 class StartTag < Struct.new( :time_offset, :precise) SENSITIVE = [] include Aws::Structure end |
#time_offset ⇒ Float
Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.
3144 3145 3146 3147 3148 3149 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 3144 class StartTag < Struct.new( :time_offset, :precise) SENSITIVE = [] include Aws::Structure end |