Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Id3Insertion

import type { Id3Insertion } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

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).

interface Id3Insertion {
Id3?: string | null;
Timecode?: string | null;
}

§Properties

§
Id3?: string | null
[src]

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

§
Timecode?: string | null
[src]

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