Drop Radio Docs
    Preparing search index...

    Interface HLSStreamProgress

    Represents the output of ffmpeg with the -progress option

    interface HLSStreamProgress {
        bitrate: string;
        out_time: string;
        out_time_ms: string;
        out_time_us: string;
        progress: "continue" | "end";
        speed: string;
        total_size: string;
    }
    Index

    Properties

    bitrate: string

    The bitrate of the stream, in bits per second (e.g., 128k or 1.53M). For HLS streams with multiple formats, will be 'N/A'

    out_time: string

    The time in the format HH:MM:SS.mmmmmm that has been output so far

    out_time_ms: string

    The time in microseconds that has been output so far

    this field has been moved to out_time_us and will be removed in a future version of ffmpeg

    out_time_us: string

    The time in microseconds that has been output so far

    progress: "continue" | "end"

    A string representing whether this progress report is the end or just a continuation of the stream, i.e., 'continue' or 'end'.

    speed: string

    The speed that stream files are being generated in multiples of "real time" (e.g., 1x for real time, 2.34x for over twice as fast, 0.01x for very slow)

    total_size: string

    The total size of output in bytes. For HLS streams with multiple formats, will be 'N/A'