amazonka-elastictranscoder-2.0: gen/Amazonka/ElasticTranscoder/Types/AudioCodecOptions.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.ElasticTranscoder.Types.AudioCodecOptions
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.ElasticTranscoder.Types.AudioCodecOptions where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
-- | Options associated with your audio codec.
--
-- /See:/ 'newAudioCodecOptions' smart constructor.
data AudioCodecOptions = AudioCodecOptions'
{ -- | You can only choose an audio bit depth when you specify @flac@ or @pcm@
-- for the value of Audio:Codec.
--
-- The bit depth of a sample is how many bits of information are included
-- in the audio samples. The higher the bit depth, the better the audio,
-- but the larger the file.
--
-- Valid values are @16@ and @24@.
--
-- The most common bit depth is @24@.
bitDepth :: Prelude.Maybe Prelude.Text,
-- | You can only choose an audio bit order when you specify @pcm@ for the
-- value of Audio:Codec.
--
-- The order the bits of a PCM sample are stored in.
--
-- The supported value is @LittleEndian@.
bitOrder :: Prelude.Maybe Prelude.Text,
-- | You can only choose an audio profile when you specify AAC for the value
-- of Audio:Codec.
--
-- Specify the AAC profile for the output file. Elastic Transcoder supports
-- the following profiles:
--
-- - @auto@: If you specify @auto@, Elastic Transcoder selects the
-- profile based on the bit rate selected for the output file.
--
-- - @AAC-LC@: The most common AAC profile. Use for bit rates larger than
-- 64 kbps.
--
-- - @HE-AAC@: Not supported on some older players and devices. Use for
-- bit rates between 40 and 80 kbps.
--
-- - @HE-AACv2@: Not supported on some players and devices. Use for bit
-- rates less than 48 kbps.
--
-- All outputs in a @Smooth@ playlist must have the same value for
-- @Profile@.
--
-- If you created any presets before AAC profiles were added, Elastic
-- Transcoder automatically updated your presets to use AAC-LC. You can
-- change the value as required.
profile :: Prelude.Maybe Prelude.Text,
-- | You can only choose whether an audio sample is signed when you specify
-- @pcm@ for the value of Audio:Codec.
--
-- Whether audio samples are represented with negative and positive numbers
-- (signed) or only positive numbers (unsigned).
--
-- The supported value is @Signed@.
signed :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AudioCodecOptions' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'bitDepth', 'audioCodecOptions_bitDepth' - You can only choose an audio bit depth when you specify @flac@ or @pcm@
-- for the value of Audio:Codec.
--
-- The bit depth of a sample is how many bits of information are included
-- in the audio samples. The higher the bit depth, the better the audio,
-- but the larger the file.
--
-- Valid values are @16@ and @24@.
--
-- The most common bit depth is @24@.
--
-- 'bitOrder', 'audioCodecOptions_bitOrder' - You can only choose an audio bit order when you specify @pcm@ for the
-- value of Audio:Codec.
--
-- The order the bits of a PCM sample are stored in.
--
-- The supported value is @LittleEndian@.
--
-- 'profile', 'audioCodecOptions_profile' - You can only choose an audio profile when you specify AAC for the value
-- of Audio:Codec.
--
-- Specify the AAC profile for the output file. Elastic Transcoder supports
-- the following profiles:
--
-- - @auto@: If you specify @auto@, Elastic Transcoder selects the
-- profile based on the bit rate selected for the output file.
--
-- - @AAC-LC@: The most common AAC profile. Use for bit rates larger than
-- 64 kbps.
--
-- - @HE-AAC@: Not supported on some older players and devices. Use for
-- bit rates between 40 and 80 kbps.
--
-- - @HE-AACv2@: Not supported on some players and devices. Use for bit
-- rates less than 48 kbps.
--
-- All outputs in a @Smooth@ playlist must have the same value for
-- @Profile@.
--
-- If you created any presets before AAC profiles were added, Elastic
-- Transcoder automatically updated your presets to use AAC-LC. You can
-- change the value as required.
--
-- 'signed', 'audioCodecOptions_signed' - You can only choose whether an audio sample is signed when you specify
-- @pcm@ for the value of Audio:Codec.
--
-- Whether audio samples are represented with negative and positive numbers
-- (signed) or only positive numbers (unsigned).
--
-- The supported value is @Signed@.
newAudioCodecOptions ::
AudioCodecOptions
newAudioCodecOptions =
AudioCodecOptions'
{ bitDepth = Prelude.Nothing,
bitOrder = Prelude.Nothing,
profile = Prelude.Nothing,
signed = Prelude.Nothing
}
-- | You can only choose an audio bit depth when you specify @flac@ or @pcm@
-- for the value of Audio:Codec.
--
-- The bit depth of a sample is how many bits of information are included
-- in the audio samples. The higher the bit depth, the better the audio,
-- but the larger the file.
--
-- Valid values are @16@ and @24@.
--
-- The most common bit depth is @24@.
audioCodecOptions_bitDepth :: Lens.Lens' AudioCodecOptions (Prelude.Maybe Prelude.Text)
audioCodecOptions_bitDepth = Lens.lens (\AudioCodecOptions' {bitDepth} -> bitDepth) (\s@AudioCodecOptions' {} a -> s {bitDepth = a} :: AudioCodecOptions)
-- | You can only choose an audio bit order when you specify @pcm@ for the
-- value of Audio:Codec.
--
-- The order the bits of a PCM sample are stored in.
--
-- The supported value is @LittleEndian@.
audioCodecOptions_bitOrder :: Lens.Lens' AudioCodecOptions (Prelude.Maybe Prelude.Text)
audioCodecOptions_bitOrder = Lens.lens (\AudioCodecOptions' {bitOrder} -> bitOrder) (\s@AudioCodecOptions' {} a -> s {bitOrder = a} :: AudioCodecOptions)
-- | You can only choose an audio profile when you specify AAC for the value
-- of Audio:Codec.
--
-- Specify the AAC profile for the output file. Elastic Transcoder supports
-- the following profiles:
--
-- - @auto@: If you specify @auto@, Elastic Transcoder selects the
-- profile based on the bit rate selected for the output file.
--
-- - @AAC-LC@: The most common AAC profile. Use for bit rates larger than
-- 64 kbps.
--
-- - @HE-AAC@: Not supported on some older players and devices. Use for
-- bit rates between 40 and 80 kbps.
--
-- - @HE-AACv2@: Not supported on some players and devices. Use for bit
-- rates less than 48 kbps.
--
-- All outputs in a @Smooth@ playlist must have the same value for
-- @Profile@.
--
-- If you created any presets before AAC profiles were added, Elastic
-- Transcoder automatically updated your presets to use AAC-LC. You can
-- change the value as required.
audioCodecOptions_profile :: Lens.Lens' AudioCodecOptions (Prelude.Maybe Prelude.Text)
audioCodecOptions_profile = Lens.lens (\AudioCodecOptions' {profile} -> profile) (\s@AudioCodecOptions' {} a -> s {profile = a} :: AudioCodecOptions)
-- | You can only choose whether an audio sample is signed when you specify
-- @pcm@ for the value of Audio:Codec.
--
-- Whether audio samples are represented with negative and positive numbers
-- (signed) or only positive numbers (unsigned).
--
-- The supported value is @Signed@.
audioCodecOptions_signed :: Lens.Lens' AudioCodecOptions (Prelude.Maybe Prelude.Text)
audioCodecOptions_signed = Lens.lens (\AudioCodecOptions' {signed} -> signed) (\s@AudioCodecOptions' {} a -> s {signed = a} :: AudioCodecOptions)
instance Data.FromJSON AudioCodecOptions where
parseJSON =
Data.withObject
"AudioCodecOptions"
( \x ->
AudioCodecOptions'
Prelude.<$> (x Data..:? "BitDepth")
Prelude.<*> (x Data..:? "BitOrder")
Prelude.<*> (x Data..:? "Profile")
Prelude.<*> (x Data..:? "Signed")
)
instance Prelude.Hashable AudioCodecOptions where
hashWithSalt _salt AudioCodecOptions' {..} =
_salt
`Prelude.hashWithSalt` bitDepth
`Prelude.hashWithSalt` bitOrder
`Prelude.hashWithSalt` profile
`Prelude.hashWithSalt` signed
instance Prelude.NFData AudioCodecOptions where
rnf AudioCodecOptions' {..} =
Prelude.rnf bitDepth
`Prelude.seq` Prelude.rnf bitOrder
`Prelude.seq` Prelude.rnf profile
`Prelude.seq` Prelude.rnf signed
instance Data.ToJSON AudioCodecOptions where
toJSON AudioCodecOptions' {..} =
Data.object
( Prelude.catMaybes
[ ("BitDepth" Data..=) Prelude.<$> bitDepth,
("BitOrder" Data..=) Prelude.<$> bitOrder,
("Profile" Data..=) Prelude.<$> profile,
("Signed" Data..=) Prelude.<$> signed
]
)