Class: Aws::MediaConvert::Types::F4vSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::F4vSettings
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
Note:
When making an API call, you may pass F4vSettings data as a hash:
{
moov_placement: "PROGRESSIVE_DOWNLOAD", # accepts PROGRESSIVE_DOWNLOAD, NORMAL
}
Settings for F4v container
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#moov_placement ⇒ String
If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of the archive as required for progressive downloading.
Instance Attribute Details
#moov_placement ⇒ String
If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of the archive as required for progressive downloading. Otherwise it is placed normally at the end.
9488 9489 9490 9491 9492 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9488 class F4vSettings < Struct.new( :moov_placement) SENSITIVE = [] include Aws::Structure end |