| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.MediaConvert.Types.FrameCaptureSettings
Description
Synopsis
- data FrameCaptureSettings = FrameCaptureSettings' {}
- newFrameCaptureSettings :: FrameCaptureSettings
- frameCaptureSettings_framerateDenominator :: Lens' FrameCaptureSettings (Maybe Natural)
- frameCaptureSettings_framerateNumerator :: Lens' FrameCaptureSettings (Maybe Natural)
- frameCaptureSettings_maxCaptures :: Lens' FrameCaptureSettings (Maybe Natural)
- frameCaptureSettings_quality :: Lens' FrameCaptureSettings (Maybe Natural)
Documentation
data FrameCaptureSettings Source #
Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value FRAME_CAPTURE.
See: newFrameCaptureSettings smart constructor.
Constructors
| FrameCaptureSettings' | |
Fields
| |
Instances
newFrameCaptureSettings :: FrameCaptureSettings Source #
Create a value of FrameCaptureSettings with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:framerateDenominator:FrameCaptureSettings', frameCaptureSettings_framerateDenominator - Frame capture will encode the first frame of the output stream, then one
frame every framerateDenominator/framerateNumerator seconds. For
example, settings of framerateNumerator = 1 and framerateDenominator = 3
(a rate of 1/3 frame per second) will capture the first frame, then 1
frame every 3s. Files will be named as filename.n.jpg where n is the
0-based sequence number of each Capture.
$sel:framerateNumerator:FrameCaptureSettings', frameCaptureSettings_framerateNumerator - Frame capture will encode the first frame of the output stream, then one
frame every framerateDenominator/framerateNumerator seconds. For
example, settings of framerateNumerator = 1 and framerateDenominator = 3
(a rate of 1/3 frame per second) will capture the first frame, then 1
frame every 3s. Files will be named as filename.NNNNNNN.jpg where N is
the 0-based frame sequence number zero padded to 7 decimal places.
$sel:maxCaptures:FrameCaptureSettings', frameCaptureSettings_maxCaptures - Maximum number of captures (encoded jpg output files).
$sel:quality:FrameCaptureSettings', frameCaptureSettings_quality - JPEG Quality - a higher value equals higher quality.
frameCaptureSettings_framerateDenominator :: Lens' FrameCaptureSettings (Maybe Natural) Source #
Frame capture will encode the first frame of the output stream, then one frame every framerateDenominator/framerateNumerator seconds. For example, settings of framerateNumerator = 1 and framerateDenominator = 3 (a rate of 1/3 frame per second) will capture the first frame, then 1 frame every 3s. Files will be named as filename.n.jpg where n is the 0-based sequence number of each Capture.
frameCaptureSettings_framerateNumerator :: Lens' FrameCaptureSettings (Maybe Natural) Source #
Frame capture will encode the first frame of the output stream, then one frame every framerateDenominator/framerateNumerator seconds. For example, settings of framerateNumerator = 1 and framerateDenominator = 3 (a rate of 1/3 frame per second) will capture the first frame, then 1 frame every 3s. Files will be named as filename.NNNNNNN.jpg where N is the 0-based frame sequence number zero padded to 7 decimal places.
frameCaptureSettings_maxCaptures :: Lens' FrameCaptureSettings (Maybe Natural) Source #
Maximum number of captures (encoded jpg output files).
frameCaptureSettings_quality :: Lens' FrameCaptureSettings (Maybe Natural) Source #
JPEG Quality - a higher value equals higher quality.