amazonka-mediaconvert-2.0: Amazon Elemental MediaConvert SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.MediaConvert.Types.Id3Insertion

Description

 
Synopsis

Documentation

data Id3Insertion Source #

To insert ID3 tags in your output, specify two values. Use ID3 tag (Id3) to specify the base 64 encoded string and use Timecode (TimeCode) to specify the time when the tag should be inserted. To insert multiple ID3 tags in your output, create multiple instances of ID3 insertion (Id3Insertion).

See: newId3Insertion smart constructor.

Constructors

Id3Insertion' 

Fields

  • id3 :: Maybe Text

    Use ID3 tag (Id3) to provide a fully formed ID3 tag in base64-encode format.

  • timecode :: Maybe Text

    Provide a Timecode (TimeCode) in HH:MM:SS:FF or HH:MM:SS;FF format.

Instances

Instances details
FromJSON Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

ToJSON Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

Generic Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

Associated Types

type Rep Id3Insertion :: Type -> Type #

Read Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

Show Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

NFData Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

Methods

rnf :: Id3Insertion -> () #

Eq Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

Hashable Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

type Rep Id3Insertion Source # 
Instance details

Defined in Amazonka.MediaConvert.Types.Id3Insertion

type Rep Id3Insertion = D1 ('MetaData "Id3Insertion" "Amazonka.MediaConvert.Types.Id3Insertion" "amazonka-mediaconvert-2.0-ClG8xHhlx4y6bdaCrZchqH" 'False) (C1 ('MetaCons "Id3Insertion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id3") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "timecode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newId3Insertion :: Id3Insertion Source #

Create a value of Id3Insertion 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:id3:Id3Insertion', id3Insertion_id3 - Use ID3 tag (Id3) to provide a fully formed ID3 tag in base64-encode format.

$sel:timecode:Id3Insertion', id3Insertion_timecode - Provide a Timecode (TimeCode) in HH:MM:SS:FF or HH:MM:SS;FF format.

id3Insertion_id3 :: Lens' Id3Insertion (Maybe Text) Source #

Use ID3 tag (Id3) to provide a fully formed ID3 tag in base64-encode format.

id3Insertion_timecode :: Lens' Id3Insertion (Maybe Text) Source #

Provide a Timecode (TimeCode) in HH:MM:SS:FF or HH:MM:SS;FF format.