@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface AudioAsset

    Audio asset with URL and technical specifications

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

    Properties

    url: string

    URL to the audio asset

    duration_ms?: number

    Audio duration in milliseconds

    file_size_bytes?: number

    File size in bytes

    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?: "mono" | "stereo" | "5.1" | "7.1"

    Channel configuration

    bit_depth?: 16 | 24 | 32

    Bit depth

    bitrate_kbps?: number

    Bitrate in kilobits per second

    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