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

RtmpGroupSettings

import type { RtmpGroupSettings } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Rtmp Group Settings

interface RtmpGroupSettings {
AdMarkers?: RtmpAdMarkers[] | null;
AuthenticationScheme?: AuthenticationScheme | null;
CacheFullBehavior?: RtmpCacheFullBehavior | null;
CacheLength?: number | null;
CaptionData?: RtmpCaptionData | null;
InputLossAction?: InputLossActionForRtmpOut | null;
RestartDelay?: number | null;
}

§Properties

§
AdMarkers?: RtmpAdMarkers[] | null
[src]

Choose the ad marker type for this output group. MediaLive will create a message based on the content of each SCTE-35 message, format it for that marker type, and insert it in the datastream.

§
AuthenticationScheme?: AuthenticationScheme | null
[src]

Authentication scheme to use when connecting with CDN

§
CacheFullBehavior?: RtmpCacheFullBehavior | null
[src]

Controls behavior when content cache fills up. If remote origin server stalls the RTMP connection and does not accept content fast enough the 'Media Cache' will fill up. When the cache reaches the duration specified by cacheLength the cache will stop accepting new content. If set to disconnectImmediately, the RTMP output will force a disconnect. Clear the media cache, and reconnect after restartDelay seconds. If set to waitForServer, the RTMP output will wait up to 5 minutes to allow the origin server to begin accepting data again.

§
CacheLength?: number | null
[src]

Cache length, in seconds, is used to calculate buffer size.

§
CaptionData?: RtmpCaptionData | null
[src]

Controls the types of data that passes to onCaptionInfo outputs. If set to 'all' then 608 and 708 carried DTVCC data will be passed. If set to 'field1AndField2608' then DTVCC data will be stripped out, but 608 data from both fields will be passed. If set to 'field1608' then only the data carried in 608 from field 1 video will be passed.

§
InputLossAction?: InputLossActionForRtmpOut | null
[src]

Controls the behavior of this RTMP group if input becomes unavailable.

  • emitOutput: Emit a slate until input returns.
  • pauseOutput: Stop transmitting data until input returns. This does not close the underlying RTMP connection.
§
RestartDelay?: number | null
[src]

If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.