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

MsSmoothGroupSettings

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

Ms Smooth Group Settings

interface MsSmoothGroupSettings {
AcquisitionPointId?: string | null;
AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl | null;
CertificateMode?: SmoothGroupCertificateMode | null;
ConnectionRetryInterval?: number | null;
Destination: OutputLocationRef;
EventId?: string | null;
EventIdMode?: SmoothGroupEventIdMode | null;
EventStopBehavior?: SmoothGroupEventStopBehavior | null;
FilecacheDuration?: number | null;
FragmentLength?: number | null;
InputLossAction?: InputLossActionForMsSmoothOut | null;
NumRetries?: number | null;
RestartDelay?: number | null;
SegmentationMode?: SmoothGroupSegmentationMode | null;
SendDelayMs?: number | null;
SparseTrackType?: SmoothGroupSparseTrackType | null;
StreamManifestBehavior?: SmoothGroupStreamManifestBehavior | null;
TimestampOffset?: string | null;
TimestampOffsetMode?: SmoothGroupTimestampOffsetMode | null;
}

§Properties

§
AcquisitionPointId?: string | null
[src]

The ID to include in each message in the sparse track. Ignored if sparseTrackType is NONE.

§
AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl | null
[src]

If set to passthrough for an audio-only MS Smooth output, the fragment absolute time will be set to the current timecode. This option does not write timecodes to the audio elementary stream.

§
CertificateMode?: SmoothGroupCertificateMode | null
[src]

If set to verifyAuthenticity, verify the https certificate chain to a trusted Certificate Authority (CA). This will cause https outputs to self-signed certificates to fail.

§
ConnectionRetryInterval?: number | null
[src]

Number of seconds to wait before retrying connection to the IIS server if the connection is lost. Content will be cached during this time and the cache will be be delivered to the IIS server once the connection is re-established.

§

Smooth Streaming publish point on an IIS server. Elemental Live acts as a "Push" encoder to IIS.

§
EventId?: string | null
[src]

MS Smooth event ID to be sent to the IIS server.

Should only be specified if eventIdMode is set to useConfigured.

§
EventIdMode?: SmoothGroupEventIdMode | null
[src]

Specifies whether or not to send an event ID to the IIS server. If no event ID is sent and the same Live Event is used without changing the publishing point, clients might see cached video from the previous run.

Options:

  • "useConfigured" - use the value provided in eventId
  • "useTimestamp" - generate and send an event ID based on the current timestamp
  • "noEventId" - do not send an event ID to the IIS server.
§
EventStopBehavior?: SmoothGroupEventStopBehavior | null
[src]

When set to sendEos, send EOS signal to IIS server when stopping the event

§
FilecacheDuration?: number | null
[src]

Size in seconds of file cache for streaming outputs.

§
FragmentLength?: number | null
[src]

Length of mp4 fragments to generate (in seconds). Fragment length must be compatible with GOP size and framerate.

§
InputLossAction?: InputLossActionForMsSmoothOut | null
[src]

Parameter that control output group behavior on input loss.

§
NumRetries?: number | null
[src]

Number of retry attempts.

§
RestartDelay?: number | null
[src]

Number of seconds before initiating a restart due to output failure, due to exhausting the numRetries on one segment, or exceeding filecacheDuration.

§
SegmentationMode?: SmoothGroupSegmentationMode | null
[src]

useInputSegmentation has been deprecated. The configured segment size is always used.

§
SendDelayMs?: number | null
[src]

Number of milliseconds to delay the output from the second pipeline.

§
SparseTrackType?: SmoothGroupSparseTrackType | null
[src]

Identifies the type of data to place in the sparse track:

  • SCTE35: Insert SCTE-35 messages from the source content. With each message, insert an IDR frame to start a new segment.
  • SCTE35_WITHOUT_SEGMENTATION: Insert SCTE-35 messages from the source content. With each message, insert an IDR frame but don't start a new segment.
  • NONE: Don't generate a sparse track for any outputs in this output group.
§
StreamManifestBehavior?: SmoothGroupStreamManifestBehavior | null
[src]

When set to send, send stream manifest so publishing point doesn't start until all streams start.

§
TimestampOffset?: string | null
[src]

Timestamp offset for the event. Only used if timestampOffsetMode is set to useConfiguredOffset.

§
TimestampOffsetMode?: SmoothGroupTimestampOffsetMode | null
[src]

Type of timestamp date offset to use.

  • useEventStartDate: Use the date the event was started as the offset
  • useConfiguredOffset: Use an explicitly configured date as the offset