@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface AudioAsset

    Audio asset with URL and technical specifications

    interface AudioAsset {
        asset_type: "audio";
        url: string;
        duration_ms?: number;
        file_size_bytes?: number;
        container_format?: string;
        codec?: string;
        sampling_rate_hz?: number;
        channels?: AudioChannelLayout;
        bit_depth?: 16 | 24 | 32;
        bitrate_kbps?: number;
        loudness_lufs?: number;
        true_peak_dbfs?: number;
        transcript_url?: string;
        provenance?: Provenance;
    }
    Index

    Properties

    asset_type: "audio"

    Discriminator identifying this as an audio asset. See /schemas/creative/asset-types for the registry.

    url: string

    URL to the audio asset

    duration_ms?: number

    Audio duration in milliseconds

    0

    file_size_bytes?: number

    File size in bytes

    1

    container_format?: string

    Audio container/file format (mp3, m4a, aac, wav, ogg, flac, etc.)

    codec?: string

    Audio codec used (aac, aac_lc, he_aac, pcm, mp3, vorbis, opus, flac, ac3, eac3, etc.)

    sampling_rate_hz?: number

    Sampling rate in Hz (e.g., 44100, 48000, 96000)

    channels?: AudioChannelLayout
    bit_depth?: 16 | 24 | 32

    Bit depth

    bitrate_kbps?: number

    Bitrate in kilobits per second

    1

    loudness_lufs?: number

    Integrated loudness in LUFS

    true_peak_dbfs?: number

    True peak level in dBFS

    transcript_url?: string

    URL to text transcript of the audio content

    provenance?: Provenance