aws.medialive.Channel
Resource for managing an AWS MediaLive Channel.
Example Usage
Basic Usage
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.MediaLive.Channel("example", new()
{
ChannelClass = "STANDARD",
RoleArn = aws_iam_role.Example.Arn,
InputSpecification = new Aws.MediaLive.Inputs.ChannelInputSpecificationArgs
{
Codec = "AVC",
InputResolution = "HD",
MaximumBitrate = "MAX_20_MBPS",
},
InputAttachments = new[]
{
new Aws.MediaLive.Inputs.ChannelInputAttachmentArgs
{
InputAttachmentName = "example-input",
InputId = aws_medialive_input.Example.Id,
},
},
Destinations = new[]
{
new Aws.MediaLive.Inputs.ChannelDestinationArgs
{
Id = "destination",
Settings = new[]
{
new Aws.MediaLive.Inputs.ChannelDestinationSettingArgs
{
Url = $"s3://{aws_s3_bucket.Main.Id}/test1",
},
new Aws.MediaLive.Inputs.ChannelDestinationSettingArgs
{
Url = $"s3://{aws_s3_bucket.Main2.Id}/test2",
},
},
},
},
EncoderSettings = new Aws.MediaLive.Inputs.ChannelEncoderSettingsArgs
{
TimecodeConfig = new Aws.MediaLive.Inputs.ChannelEncoderSettingsTimecodeConfigArgs
{
Source = "EMBEDDED",
},
AudioDescriptions = new[]
{
new Aws.MediaLive.Inputs.ChannelEncoderSettingsAudioDescriptionArgs
{
AudioSelectorName = "example audio selector",
Name = "audio-selector",
},
},
VideoDescriptions = new[]
{
new Aws.MediaLive.Inputs.ChannelEncoderSettingsVideoDescriptionArgs
{
Name = "example-video",
},
},
OutputGroups = new[]
{
new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupArgs
{
OutputGroupSettings = new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArgs
{
ArchiveGroupSettings = new[]
{
new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArgs
{
Destination = new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingDestinationArgs
{
DestinationRefId = "destination",
},
},
},
},
Outputs = new[]
{
new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputArgs
{
OutputName = "example-name",
VideoDescriptionName = "example-video",
AudioDescriptionNames = new[]
{
"audio-selector",
},
OutputSettings = new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArgs
{
ArchiveOutputSettings = new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs
{
NameModifier = "_1",
Extension = "m2ts",
ContainerSettings = new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgs
{
M2tsSettings = new Aws.MediaLive.Inputs.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsArgs
{
AudioBufferModel = "ATSC",
BufferModel = "MULTIPLEX",
RateMode = "CBR",
},
},
},
},
},
},
},
},
},
});
});
package main
import (
"fmt"
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/medialive"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := medialive.NewChannel(ctx, "example", &medialive.ChannelArgs{
ChannelClass: pulumi.String("STANDARD"),
RoleArn: pulumi.Any(aws_iam_role.Example.Arn),
InputSpecification: &medialive.ChannelInputSpecificationArgs{
Codec: pulumi.String("AVC"),
InputResolution: pulumi.String("HD"),
MaximumBitrate: pulumi.String("MAX_20_MBPS"),
},
InputAttachments: medialive.ChannelInputAttachmentArray{
&medialive.ChannelInputAttachmentArgs{
InputAttachmentName: pulumi.String("example-input"),
InputId: pulumi.Any(aws_medialive_input.Example.Id),
},
},
Destinations: medialive.ChannelDestinationArray{
&medialive.ChannelDestinationArgs{
Id: pulumi.String("destination"),
Settings: medialive.ChannelDestinationSettingArray{
&medialive.ChannelDestinationSettingArgs{
Url: pulumi.String(fmt.Sprintf("s3://%v/test1", aws_s3_bucket.Main.Id)),
},
&medialive.ChannelDestinationSettingArgs{
Url: pulumi.String(fmt.Sprintf("s3://%v/test2", aws_s3_bucket.Main2.Id)),
},
},
},
},
EncoderSettings: &medialive.ChannelEncoderSettingsArgs{
TimecodeConfig: &medialive.ChannelEncoderSettingsTimecodeConfigArgs{
Source: pulumi.String("EMBEDDED"),
},
AudioDescriptions: medialive.ChannelEncoderSettingsAudioDescriptionArray{
&medialive.ChannelEncoderSettingsAudioDescriptionArgs{
AudioSelectorName: pulumi.String("example audio selector"),
Name: pulumi.String("audio-selector"),
},
},
VideoDescriptions: medialive.ChannelEncoderSettingsVideoDescriptionArray{
&medialive.ChannelEncoderSettingsVideoDescriptionArgs{
Name: pulumi.String("example-video"),
},
},
OutputGroups: medialive.ChannelEncoderSettingsOutputGroupArray{
&medialive.ChannelEncoderSettingsOutputGroupArgs{
OutputGroupSettings: &medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArgs{
ArchiveGroupSettings: medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArray{
&medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArgs{
Destination: &medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingDestinationArgs{
DestinationRefId: pulumi.String("destination"),
},
},
},
},
Outputs: medialive.ChannelEncoderSettingsOutputGroupOutputTypeArray{
&medialive.ChannelEncoderSettingsOutputGroupOutputTypeArgs{
OutputName: pulumi.String("example-name"),
VideoDescriptionName: pulumi.String("example-video"),
AudioDescriptionNames: pulumi.StringArray{
pulumi.String("audio-selector"),
},
OutputSettings: &medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArgs{
ArchiveOutputSettings: &medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs{
NameModifier: pulumi.String("_1"),
Extension: pulumi.String("m2ts"),
ContainerSettings: &medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgs{
M2tsSettings: &medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsArgs{
AudioBufferModel: pulumi.String("ATSC"),
BufferModel: pulumi.String("MULTIPLEX"),
RateMode: pulumi.String("CBR"),
},
},
},
},
},
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.medialive.Channel;
import com.pulumi.aws.medialive.ChannelArgs;
import com.pulumi.aws.medialive.inputs.ChannelInputSpecificationArgs;
import com.pulumi.aws.medialive.inputs.ChannelInputAttachmentArgs;
import com.pulumi.aws.medialive.inputs.ChannelDestinationArgs;
import com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsArgs;
import com.pulumi.aws.medialive.inputs.ChannelEncoderSettingsTimecodeConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Channel("example", ChannelArgs.builder()
.channelClass("STANDARD")
.roleArn(aws_iam_role.example().arn())
.inputSpecification(ChannelInputSpecificationArgs.builder()
.codec("AVC")
.inputResolution("HD")
.maximumBitrate("MAX_20_MBPS")
.build())
.inputAttachments(ChannelInputAttachmentArgs.builder()
.inputAttachmentName("example-input")
.inputId(aws_medialive_input.example().id())
.build())
.destinations(ChannelDestinationArgs.builder()
.id("destination")
.settings(
ChannelDestinationSettingArgs.builder()
.url(String.format("s3://%s/test1", aws_s3_bucket.main().id()))
.build(),
ChannelDestinationSettingArgs.builder()
.url(String.format("s3://%s/test2", aws_s3_bucket.main2().id()))
.build())
.build())
.encoderSettings(ChannelEncoderSettingsArgs.builder()
.timecodeConfig(ChannelEncoderSettingsTimecodeConfigArgs.builder()
.source("EMBEDDED")
.build())
.audioDescriptions(ChannelEncoderSettingsAudioDescriptionArgs.builder()
.audioSelectorName("example audio selector")
.name("audio-selector")
.build())
.videoDescriptions(ChannelEncoderSettingsVideoDescriptionArgs.builder()
.name("example-video")
.build())
.outputGroups(ChannelEncoderSettingsOutputGroupArgs.builder()
.outputGroupSettings(ChannelEncoderSettingsOutputGroupOutputGroupSettingsArgs.builder()
.archiveGroupSettings(ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArgs.builder()
.destination(ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingDestinationArgs.builder()
.destinationRefId("destination")
.build())
.build())
.build())
.outputs(ChannelEncoderSettingsOutputGroupOutputArgs.builder()
.outputName("example-name")
.videoDescriptionName("example-video")
.audioDescriptionNames("audio-selector")
.outputSettings(ChannelEncoderSettingsOutputGroupOutputOutputSettingsArgs.builder()
.archiveOutputSettings(ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs.builder()
.nameModifier("_1")
.extension("m2ts")
.containerSettings(ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgs.builder()
.m2tsSettings(ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsArgs.builder()
.audioBufferModel("ATSC")
.bufferModel("MULTIPLEX")
.rateMode("CBR")
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.medialive.Channel("example",
channel_class="STANDARD",
role_arn=aws_iam_role["example"]["arn"],
input_specification=aws.medialive.ChannelInputSpecificationArgs(
codec="AVC",
input_resolution="HD",
maximum_bitrate="MAX_20_MBPS",
),
input_attachments=[aws.medialive.ChannelInputAttachmentArgs(
input_attachment_name="example-input",
input_id=aws_medialive_input["example"]["id"],
)],
destinations=[aws.medialive.ChannelDestinationArgs(
id="destination",
settings=[
aws.medialive.ChannelDestinationSettingArgs(
url=f"s3://{aws_s3_bucket['main']['id']}/test1",
),
aws.medialive.ChannelDestinationSettingArgs(
url=f"s3://{aws_s3_bucket['main2']['id']}/test2",
),
],
)],
encoder_settings=aws.medialive.ChannelEncoderSettingsArgs(
timecode_config=aws.medialive.ChannelEncoderSettingsTimecodeConfigArgs(
source="EMBEDDED",
),
audio_descriptions=[aws.medialive.ChannelEncoderSettingsAudioDescriptionArgs(
audio_selector_name="example audio selector",
name="audio-selector",
)],
video_descriptions=[aws.medialive.ChannelEncoderSettingsVideoDescriptionArgs(
name="example-video",
)],
output_groups=[aws.medialive.ChannelEncoderSettingsOutputGroupArgs(
output_group_settings=aws.medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArgs(
archive_group_settings=[aws.medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArgs(
destination=aws.medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingDestinationArgs(
destination_ref_id="destination",
),
)],
),
outputs=[aws.medialive.ChannelEncoderSettingsOutputGroupOutputArgs(
output_name="example-name",
video_description_name="example-video",
audio_description_names=["audio-selector"],
output_settings=aws.medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArgs(
archive_output_settings=aws.medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsArgs(
name_modifier="_1",
extension="m2ts",
container_settings=aws.medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsArgs(
m2ts_settings=aws.medialive.ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsArgs(
audio_buffer_model="ATSC",
buffer_model="MULTIPLEX",
rate_mode="CBR",
),
),
),
),
)],
)],
))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.medialive.Channel("example", {
channelClass: "STANDARD",
roleArn: aws_iam_role.example.arn,
inputSpecification: {
codec: "AVC",
inputResolution: "HD",
maximumBitrate: "MAX_20_MBPS",
},
inputAttachments: [{
inputAttachmentName: "example-input",
inputId: aws_medialive_input.example.id,
}],
destinations: [{
id: "destination",
settings: [
{
url: `s3://${aws_s3_bucket.main.id}/test1`,
},
{
url: `s3://${aws_s3_bucket.main2.id}/test2`,
},
],
}],
encoderSettings: {
timecodeConfig: {
source: "EMBEDDED",
},
audioDescriptions: [{
audioSelectorName: "example audio selector",
name: "audio-selector",
}],
videoDescriptions: [{
name: "example-video",
}],
outputGroups: [{
outputGroupSettings: {
archiveGroupSettings: [{
destination: {
destinationRefId: "destination",
},
}],
},
outputs: [{
outputName: "example-name",
videoDescriptionName: "example-video",
audioDescriptionNames: ["audio-selector"],
outputSettings: {
archiveOutputSettings: {
nameModifier: "_1",
extension: "m2ts",
containerSettings: {
m2tsSettings: {
audioBufferModel: "ATSC",
bufferModel: "MULTIPLEX",
rateMode: "CBR",
},
},
},
},
}],
}],
},
});
resources:
example:
type: aws:medialive:Channel
properties:
channelClass: STANDARD
roleArn: ${aws_iam_role.example.arn}
inputSpecification:
codec: AVC
inputResolution: HD
maximumBitrate: MAX_20_MBPS
inputAttachments:
- inputAttachmentName: example-input
inputId: ${aws_medialive_input.example.id}
destinations:
- id: destination
settings:
- url: s3://${aws_s3_bucket.main.id}/test1
- url: s3://${aws_s3_bucket.main2.id}/test2
encoderSettings:
timecodeConfig:
source: EMBEDDED
audioDescriptions:
- audioSelectorName: example audio selector
name: audio-selector
videoDescriptions:
- name: example-video
outputGroups:
- outputGroupSettings:
archiveGroupSettings:
- destination:
destinationRefId: destination
outputs:
- outputName: example-name
videoDescriptionName: example-video
audioDescriptionNames:
- audio-selector
outputSettings:
archiveOutputSettings:
nameModifier: _1
extension: m2ts
containerSettings:
m2tsSettings:
audioBufferModel: ATSC
bufferModel: MULTIPLEX
rateMode: CBR
Create Channel Resource
new Channel(name: string, args: ChannelArgs, opts?: CustomResourceOptions);
@overload
def Channel(resource_name: str,
opts: Optional[ResourceOptions] = None,
cdi_input_specification: Optional[ChannelCdiInputSpecificationArgs] = None,
channel_class: Optional[str] = None,
destinations: Optional[Sequence[ChannelDestinationArgs]] = None,
encoder_settings: Optional[ChannelEncoderSettingsArgs] = None,
input_attachments: Optional[Sequence[ChannelInputAttachmentArgs]] = None,
input_specification: Optional[ChannelInputSpecificationArgs] = None,
log_level: Optional[str] = None,
maintenance: Optional[ChannelMaintenanceArgs] = None,
name: Optional[str] = None,
role_arn: Optional[str] = None,
start_channel: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
vpc: Optional[ChannelVpcArgs] = None)
@overload
def Channel(resource_name: str,
args: ChannelArgs,
opts: Optional[ResourceOptions] = None)
func NewChannel(ctx *Context, name string, args ChannelArgs, opts ...ResourceOption) (*Channel, error)
public Channel(string name, ChannelArgs args, CustomResourceOptions? opts = null)
public Channel(String name, ChannelArgs args)
public Channel(String name, ChannelArgs args, CustomResourceOptions options)
type: aws:medialive:Channel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Channel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Channel resource accepts the following input properties:
- Channel
Class string Concise argument description.
- Destinations
List<Channel
Destination Args> Destinations for channel. See Destinations for more details.
- Encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- Input
Attachments List<ChannelInput Attachment Args> Input attachments for the channel. See Input Attachments for more details.
- Input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- Cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- Log
Level string The log level to write to Cloudwatch logs.
- Maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- Name string
Name of the Channel.
- Role
Arn string Concise argument description.
- Start
Channel bool Whether to start/stop channel. Default:
false
- Dictionary<string, string>
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Vpc
Channel
Vpc Args Settings for the VPC outputs.
- Channel
Class string Concise argument description.
- Destinations
[]Channel
Destination Args Destinations for channel. See Destinations for more details.
- Encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- Input
Attachments []ChannelInput Attachment Args Input attachments for the channel. See Input Attachments for more details.
- Input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- Cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- Log
Level string The log level to write to Cloudwatch logs.
- Maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- Name string
Name of the Channel.
- Role
Arn string Concise argument description.
- Start
Channel bool Whether to start/stop channel. Default:
false
- map[string]string
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Vpc
Channel
Vpc Args Settings for the VPC outputs.
- channel
Class String Concise argument description.
- destinations
List<Channel
Destination Args> Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- input
Attachments List<ChannelInput Attachment Args> Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- log
Level String The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- name String
Name of the Channel.
- role
Arn String Concise argument description.
- start
Channel Boolean Whether to start/stop channel. Default:
false
- Map<String,String>
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vpc
Channel
Vpc Args Settings for the VPC outputs.
- channel
Class string Concise argument description.
- destinations
Channel
Destination Args[] Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- input
Attachments ChannelInput Attachment Args[] Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- log
Level string The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- name string
Name of the Channel.
- role
Arn string Concise argument description.
- start
Channel boolean Whether to start/stop channel. Default:
false
- {[key: string]: string}
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vpc
Channel
Vpc Args Settings for the VPC outputs.
- channel_
class str Concise argument description.
- destinations
Sequence[Channel
Destination Args] Destinations for channel. See Destinations for more details.
- encoder_
settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- input_
attachments Sequence[ChannelInput Attachment Args] Input attachments for the channel. See Input Attachments for more details.
- input_
specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- cdi_
input_ Channelspecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- log_
level str The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- name str
Name of the Channel.
- role_
arn str Concise argument description.
- start_
channel bool Whether to start/stop channel. Default:
false
- Mapping[str, str]
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vpc
Channel
Vpc Args Settings for the VPC outputs.
- channel
Class String Concise argument description.
- destinations List<Property Map>
Destinations for channel. See Destinations for more details.
- encoder
Settings Property Map Encoder settings. See Encoder Settings for more details.
- input
Attachments List<Property Map> Input attachments for the channel. See Input Attachments for more details.
- input
Specification Property Map Specification of network and file inputs for the channel.
- cdi
Input Property MapSpecification Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- log
Level String The log level to write to Cloudwatch logs.
- maintenance Property Map
Maintenance settings for this channel. See Maintenance for more details.
- name String
Name of the Channel.
- role
Arn String Concise argument description.
- start
Channel Boolean Whether to start/stop channel. Default:
false
- Map<String>
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- vpc Property Map
Settings for the VPC outputs.
Outputs
All input properties are implicitly available as output properties. Additionally, the Channel resource produces the following output properties:
- arn str
ARN of the Channel.
- channel_
id str ID of the channel in MediaPackage that is the destination for this output group.
- id str
The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
Look up Existing Channel Resource
Get an existing Channel resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ChannelState, opts?: CustomResourceOptions): Channel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
cdi_input_specification: Optional[ChannelCdiInputSpecificationArgs] = None,
channel_class: Optional[str] = None,
channel_id: Optional[str] = None,
destinations: Optional[Sequence[ChannelDestinationArgs]] = None,
encoder_settings: Optional[ChannelEncoderSettingsArgs] = None,
input_attachments: Optional[Sequence[ChannelInputAttachmentArgs]] = None,
input_specification: Optional[ChannelInputSpecificationArgs] = None,
log_level: Optional[str] = None,
maintenance: Optional[ChannelMaintenanceArgs] = None,
name: Optional[str] = None,
role_arn: Optional[str] = None,
start_channel: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
vpc: Optional[ChannelVpcArgs] = None) -> Channel
func GetChannel(ctx *Context, name string, id IDInput, state *ChannelState, opts ...ResourceOption) (*Channel, error)
public static Channel Get(string name, Input<string> id, ChannelState? state, CustomResourceOptions? opts = null)
public static Channel get(String name, Output<String> id, ChannelState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
ARN of the Channel.
- Cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- Channel
Class string Concise argument description.
- Channel
Id string ID of the channel in MediaPackage that is the destination for this output group.
- Destinations
List<Channel
Destination Args> Destinations for channel. See Destinations for more details.
- Encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- Input
Attachments List<ChannelInput Attachment Args> Input attachments for the channel. See Input Attachments for more details.
- Input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- Log
Level string The log level to write to Cloudwatch logs.
- Maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- Name string
Name of the Channel.
- Role
Arn string Concise argument description.
- Start
Channel bool Whether to start/stop channel. Default:
false
- Dictionary<string, string>
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Dictionary<string, string>
- Vpc
Channel
Vpc Args Settings for the VPC outputs.
- Arn string
ARN of the Channel.
- Cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- Channel
Class string Concise argument description.
- Channel
Id string ID of the channel in MediaPackage that is the destination for this output group.
- Destinations
[]Channel
Destination Args Destinations for channel. See Destinations for more details.
- Encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- Input
Attachments []ChannelInput Attachment Args Input attachments for the channel. See Input Attachments for more details.
- Input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- Log
Level string The log level to write to Cloudwatch logs.
- Maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- Name string
Name of the Channel.
- Role
Arn string Concise argument description.
- Start
Channel bool Whether to start/stop channel. Default:
false
- map[string]string
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- map[string]string
- Vpc
Channel
Vpc Args Settings for the VPC outputs.
- arn String
ARN of the Channel.
- cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- channel
Class String Concise argument description.
- channel
Id String ID of the channel in MediaPackage that is the destination for this output group.
- destinations
List<Channel
Destination Args> Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- input
Attachments List<ChannelInput Attachment Args> Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- log
Level String The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- name String
Name of the Channel.
- role
Arn String Concise argument description.
- start
Channel Boolean Whether to start/stop channel. Default:
false
- Map<String,String>
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String,String>
- vpc
Channel
Vpc Args Settings for the VPC outputs.
- arn string
ARN of the Channel.
- cdi
Input ChannelSpecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- channel
Class string Concise argument description.
- channel
Id string ID of the channel in MediaPackage that is the destination for this output group.
- destinations
Channel
Destination Args[] Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- input
Attachments ChannelInput Attachment Args[] Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- log
Level string The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- name string
Name of the Channel.
- role
Arn string Concise argument description.
- start
Channel boolean Whether to start/stop channel. Default:
false
- {[key: string]: string}
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- {[key: string]: string}
- vpc
Channel
Vpc Args Settings for the VPC outputs.
- arn str
ARN of the Channel.
- cdi_
input_ Channelspecification Cdi Input Specification Args Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- channel_
class str Concise argument description.
- channel_
id str ID of the channel in MediaPackage that is the destination for this output group.
- destinations
Sequence[Channel
Destination Args] Destinations for channel. See Destinations for more details.
- encoder_
settings ChannelEncoder Settings Args Encoder settings. See Encoder Settings for more details.
- input_
attachments Sequence[ChannelInput Attachment Args] Input attachments for the channel. See Input Attachments for more details.
- input_
specification ChannelInput Specification Args Specification of network and file inputs for the channel.
- log_
level str The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Args Maintenance settings for this channel. See Maintenance for more details.
- name str
Name of the Channel.
- role_
arn str Concise argument description.
- start_
channel bool Whether to start/stop channel. Default:
false
- Mapping[str, str]
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Mapping[str, str]
- vpc
Channel
Vpc Args Settings for the VPC outputs.
- arn String
ARN of the Channel.
- cdi
Input Property MapSpecification Specification of CDI inputs for this channel. See CDI Input Specification for more details.
- channel
Class String Concise argument description.
- channel
Id String ID of the channel in MediaPackage that is the destination for this output group.
- destinations List<Property Map>
Destinations for channel. See Destinations for more details.
- encoder
Settings Property Map Encoder settings. See Encoder Settings for more details.
- input
Attachments List<Property Map> Input attachments for the channel. See Input Attachments for more details.
- input
Specification Property Map Specification of network and file inputs for the channel.
- log
Level String The log level to write to Cloudwatch logs.
- maintenance Property Map
Maintenance settings for this channel. See Maintenance for more details.
- name String
Name of the Channel.
- role
Arn String Concise argument description.
- start
Channel Boolean Whether to start/stop channel. Default:
false
- Map<String>
A map of tags to assign to the channel. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String>
- vpc Property Map
Settings for the VPC outputs.
Supporting Types
ChannelCdiInputSpecification
- Resolution string
Maximum CDI input resolution.
- Resolution string
Maximum CDI input resolution.
- resolution String
Maximum CDI input resolution.
- resolution string
Maximum CDI input resolution.
- resolution str
Maximum CDI input resolution.
- resolution String
Maximum CDI input resolution.
ChannelDestination
- Id string
User-specified id. Ths is used in an output group or an output.
- Media
Package List<ChannelSettings Destination Media Package Setting> Destination settings for a MediaPackage output; one destination for both encoders. See Media Package Settings for more details.
- Multiplex
Settings ChannelDestination Multiplex Settings Destination settings for a Multiplex output; one destination for both encoders. See Multiplex Settings for more details.
- Settings
List<Channel
Destination Setting> Destination settings for a standard output; one destination for each redundant encoder. See Settings for more details.
- Id string
User-specified id. Ths is used in an output group or an output.
- Media
Package []ChannelSettings Destination Media Package Setting Destination settings for a MediaPackage output; one destination for both encoders. See Media Package Settings for more details.
- Multiplex
Settings ChannelDestination Multiplex Settings Destination settings for a Multiplex output; one destination for both encoders. See Multiplex Settings for more details.
- Settings
[]Channel
Destination Setting Destination settings for a standard output; one destination for each redundant encoder. See Settings for more details.
- id String
User-specified id. Ths is used in an output group or an output.
- media
Package List<ChannelSettings Destination Media Package Setting> Destination settings for a MediaPackage output; one destination for both encoders. See Media Package Settings for more details.
- multiplex
Settings ChannelDestination Multiplex Settings Destination settings for a Multiplex output; one destination for both encoders. See Multiplex Settings for more details.
- settings
List<Channel
Destination Setting> Destination settings for a standard output; one destination for each redundant encoder. See Settings for more details.
- id string
User-specified id. Ths is used in an output group or an output.
- media
Package ChannelSettings Destination Media Package Setting[] Destination settings for a MediaPackage output; one destination for both encoders. See Media Package Settings for more details.
- multiplex
Settings ChannelDestination Multiplex Settings Destination settings for a Multiplex output; one destination for both encoders. See Multiplex Settings for more details.
- settings
Channel
Destination Setting[] Destination settings for a standard output; one destination for each redundant encoder. See Settings for more details.
- id str
User-specified id. Ths is used in an output group or an output.
- media_
package_ Sequence[Channelsettings Destination Media Package Setting] Destination settings for a MediaPackage output; one destination for both encoders. See Media Package Settings for more details.
- multiplex_
settings ChannelDestination Multiplex Settings Destination settings for a Multiplex output; one destination for both encoders. See Multiplex Settings for more details.
- settings
Sequence[Channel
Destination Setting] Destination settings for a standard output; one destination for each redundant encoder. See Settings for more details.
- id String
User-specified id. Ths is used in an output group or an output.
- media
Package List<Property Map>Settings Destination settings for a MediaPackage output; one destination for both encoders. See Media Package Settings for more details.
- multiplex
Settings Property Map Destination settings for a Multiplex output; one destination for both encoders. See Multiplex Settings for more details.
- settings List<Property Map>
Destination settings for a standard output; one destination for each redundant encoder. See Settings for more details.
ChannelDestinationMediaPackageSetting
- Channel
Id string ID of the channel in MediaPackage that is the destination for this output group.
- Channel
Id string ID of the channel in MediaPackage that is the destination for this output group.
- channel
Id String ID of the channel in MediaPackage that is the destination for this output group.
- channel
Id string ID of the channel in MediaPackage that is the destination for this output group.
- channel_
id str ID of the channel in MediaPackage that is the destination for this output group.
- channel
Id String ID of the channel in MediaPackage that is the destination for this output group.
ChannelDestinationMultiplexSettings
- Multiplex
Id string The ID of the Multiplex that the encoder is providing output to.
- Program
Name string The program name of the Multiplex program that the encoder is providing output to.
- Multiplex
Id string The ID of the Multiplex that the encoder is providing output to.
- Program
Name string The program name of the Multiplex program that the encoder is providing output to.
- multiplex
Id String The ID of the Multiplex that the encoder is providing output to.
- program
Name String The program name of the Multiplex program that the encoder is providing output to.
- multiplex
Id string The ID of the Multiplex that the encoder is providing output to.
- program
Name string The program name of the Multiplex program that the encoder is providing output to.
- multiplex_
id str The ID of the Multiplex that the encoder is providing output to.
- program_
name str The program name of the Multiplex program that the encoder is providing output to.
- multiplex
Id String The ID of the Multiplex that the encoder is providing output to.
- program
Name String The program name of the Multiplex program that the encoder is providing output to.
ChannelDestinationSetting
- Password
Param string Key used to extract the password from EC2 Parameter store.
- Stream
Name string Stream name RTMP destinations (URLs of type rtmp://)
- Url string
A URL specifying a destination.
- Username string
Username for destination.
- Password
Param string Key used to extract the password from EC2 Parameter store.
- Stream
Name string Stream name RTMP destinations (URLs of type rtmp://)
- Url string
A URL specifying a destination.
- Username string
Username for destination.
- password
Param String Key used to extract the password from EC2 Parameter store.
- stream
Name String Stream name RTMP destinations (URLs of type rtmp://)
- url String
A URL specifying a destination.
- username String
Username for destination.
- password
Param string Key used to extract the password from EC2 Parameter store.
- stream
Name string Stream name RTMP destinations (URLs of type rtmp://)
- url string
A URL specifying a destination.
- username string
Username for destination.
- password_
param str Key used to extract the password from EC2 Parameter store.
- stream_
name str Stream name RTMP destinations (URLs of type rtmp://)
- url str
A URL specifying a destination.
- username str
Username for destination.
- password
Param String Key used to extract the password from EC2 Parameter store.
- stream
Name String Stream name RTMP destinations (URLs of type rtmp://)
- url String
A URL specifying a destination.
- username String
Username for destination.
ChannelEncoderSettings
- Output
Groups List<ChannelEncoder Settings Output Group> Output groups for the channel. See Output Groups for more details.
- Timecode
Config ChannelEncoder Settings Timecode Config Contains settings used to acquire and adjust timecode information from inputs. See Timecode Config for more details.
- Audio
Descriptions List<ChannelEncoder Settings Audio Description> Audio descriptions for the channel. See Audio Descriptions for more details.
- Avail
Blanking ChannelEncoder Settings Avail Blanking Settings for ad avail blanking. See Avail Blanking for more details.
- Video
Descriptions List<ChannelEncoder Settings Video Description> Video Descriptions. See Video Descriptions for more details.
- Output
Groups []ChannelEncoder Settings Output Group Output groups for the channel. See Output Groups for more details.
- Timecode
Config ChannelEncoder Settings Timecode Config Contains settings used to acquire and adjust timecode information from inputs. See Timecode Config for more details.
- Audio
Descriptions []ChannelEncoder Settings Audio Description Audio descriptions for the channel. See Audio Descriptions for more details.
- Avail
Blanking ChannelEncoder Settings Avail Blanking Settings for ad avail blanking. See Avail Blanking for more details.
- Video
Descriptions []ChannelEncoder Settings Video Description Video Descriptions. See Video Descriptions for more details.
- output
Groups List<ChannelEncoder Settings Output Group> Output groups for the channel. See Output Groups for more details.
- timecode
Config ChannelEncoder Settings Timecode Config Contains settings used to acquire and adjust timecode information from inputs. See Timecode Config for more details.
- audio
Descriptions List<ChannelEncoder Settings Audio Description> Audio descriptions for the channel. See Audio Descriptions for more details.
- avail
Blanking ChannelEncoder Settings Avail Blanking Settings for ad avail blanking. See Avail Blanking for more details.
- video
Descriptions List<ChannelEncoder Settings Video Description> Video Descriptions. See Video Descriptions for more details.
- output
Groups ChannelEncoder Settings Output Group[] Output groups for the channel. See Output Groups for more details.
- timecode
Config ChannelEncoder Settings Timecode Config Contains settings used to acquire and adjust timecode information from inputs. See Timecode Config for more details.
- audio
Descriptions ChannelEncoder Settings Audio Description[] Audio descriptions for the channel. See Audio Descriptions for more details.
- avail
Blanking ChannelEncoder Settings Avail Blanking Settings for ad avail blanking. See Avail Blanking for more details.
- video
Descriptions ChannelEncoder Settings Video Description[] Video Descriptions. See Video Descriptions for more details.
- output_
groups Sequence[ChannelEncoder Settings Output Group] Output groups for the channel. See Output Groups for more details.
- timecode_
config ChannelEncoder Settings Timecode Config Contains settings used to acquire and adjust timecode information from inputs. See Timecode Config for more details.
- audio_
descriptions Sequence[ChannelEncoder Settings Audio Description] Audio descriptions for the channel. See Audio Descriptions for more details.
- avail_
blanking ChannelEncoder Settings Avail Blanking Settings for ad avail blanking. See Avail Blanking for more details.
- video_
descriptions Sequence[ChannelEncoder Settings Video Description] Video Descriptions. See Video Descriptions for more details.
- output
Groups List<Property Map> Output groups for the channel. See Output Groups for more details.
- timecode
Config Property Map Contains settings used to acquire and adjust timecode information from inputs. See Timecode Config for more details.
- audio
Descriptions List<Property Map> Audio descriptions for the channel. See Audio Descriptions for more details.
- avail
Blanking Property Map Settings for ad avail blanking. See Avail Blanking for more details.
- video
Descriptions List<Property Map> Video Descriptions. See Video Descriptions for more details.
ChannelEncoderSettingsAudioDescription
- Audio
Selector stringName The name of the audio selector used as the source for this AudioDescription.
- Name string
The name of this audio description.
- Audio
Normalization ChannelSettings Encoder Settings Audio Description Audio Normalization Settings Advanced audio normalization settings. See Audio Normalization Settings for more details.
- Audio
Type string Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
- Audio
Type stringControl Determined how audio type is determined.
- Audio
Watermark ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Settings to configure one or more solutions that insert audio watermarks in the audio encode. See Audio Watermark Settings for more details.
- Codec
Settings ChannelEncoder Settings Audio Description Codec Settings Audio codec settings. See Audio Codec Settings for more details.
- Language
Code string When specified this field indicates the three letter language code of the caption track to extract from the source.
- Language
Code stringControl - Remix
Settings ChannelEncoder Settings Audio Description Remix Settings - Stream
Name string Stream name RTMP destinations (URLs of type rtmp://)
- Audio
Selector stringName The name of the audio selector used as the source for this AudioDescription.
- Name string
The name of this audio description.
- Audio
Normalization ChannelSettings Encoder Settings Audio Description Audio Normalization Settings Advanced audio normalization settings. See Audio Normalization Settings for more details.
- Audio
Type string Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
- Audio
Type stringControl Determined how audio type is determined.
- Audio
Watermark ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Settings to configure one or more solutions that insert audio watermarks in the audio encode. See Audio Watermark Settings for more details.
- Codec
Settings ChannelEncoder Settings Audio Description Codec Settings Audio codec settings. See Audio Codec Settings for more details.
- Language
Code string When specified this field indicates the three letter language code of the caption track to extract from the source.
- Language
Code stringControl - Remix
Settings ChannelEncoder Settings Audio Description Remix Settings - Stream
Name string Stream name RTMP destinations (URLs of type rtmp://)
- audio
Selector StringName The name of the audio selector used as the source for this AudioDescription.
- name String
The name of this audio description.
- audio
Normalization ChannelSettings Encoder Settings Audio Description Audio Normalization Settings Advanced audio normalization settings. See Audio Normalization Settings for more details.
- audio
Type String Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
- audio
Type StringControl Determined how audio type is determined.
- audio
Watermark ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Settings to configure one or more solutions that insert audio watermarks in the audio encode. See Audio Watermark Settings for more details.
- codec
Settings ChannelEncoder Settings Audio Description Codec Settings Audio codec settings. See Audio Codec Settings for more details.
- language
Code String When specified this field indicates the three letter language code of the caption track to extract from the source.
- language
Code StringControl - remix
Settings ChannelEncoder Settings Audio Description Remix Settings - stream
Name String Stream name RTMP destinations (URLs of type rtmp://)
- audio
Selector stringName The name of the audio selector used as the source for this AudioDescription.
- name string
The name of this audio description.
- audio
Normalization ChannelSettings Encoder Settings Audio Description Audio Normalization Settings Advanced audio normalization settings. See Audio Normalization Settings for more details.
- audio
Type string Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
- audio
Type stringControl Determined how audio type is determined.
- audio
Watermark ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Settings to configure one or more solutions that insert audio watermarks in the audio encode. See Audio Watermark Settings for more details.
- codec
Settings ChannelEncoder Settings Audio Description Codec Settings Audio codec settings. See Audio Codec Settings for more details.
- language
Code string When specified this field indicates the three letter language code of the caption track to extract from the source.
- language
Code stringControl - remix
Settings ChannelEncoder Settings Audio Description Remix Settings - stream
Name string Stream name RTMP destinations (URLs of type rtmp://)
- audio_
selector_ strname The name of the audio selector used as the source for this AudioDescription.
- name str
The name of this audio description.
- audio_
normalization_ Channelsettings Encoder Settings Audio Description Audio Normalization Settings Advanced audio normalization settings. See Audio Normalization Settings for more details.
- audio_
type str Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
- audio_
type_ strcontrol Determined how audio type is determined.
- audio_
watermark_ Channelsettings Encoder Settings Audio Description Audio Watermark Settings Settings to configure one or more solutions that insert audio watermarks in the audio encode. See Audio Watermark Settings for more details.
- codec_
settings ChannelEncoder Settings Audio Description Codec Settings Audio codec settings. See Audio Codec Settings for more details.
- language_
code str When specified this field indicates the three letter language code of the caption track to extract from the source.
- language_
code_ strcontrol - remix_
settings ChannelEncoder Settings Audio Description Remix Settings - stream_
name str Stream name RTMP destinations (URLs of type rtmp://)
- audio
Selector StringName The name of the audio selector used as the source for this AudioDescription.
- name String
The name of this audio description.
- audio
Normalization Property MapSettings Advanced audio normalization settings. See Audio Normalization Settings for more details.
- audio
Type String Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
- audio
Type StringControl Determined how audio type is determined.
- audio
Watermark Property MapSettings Settings to configure one or more solutions that insert audio watermarks in the audio encode. See Audio Watermark Settings for more details.
- codec
Settings Property Map Audio codec settings. See Audio Codec Settings for more details.
- language
Code String When specified this field indicates the three letter language code of the caption track to extract from the source.
- language
Code StringControl - remix
Settings Property Map - stream
Name String Stream name RTMP destinations (URLs of type rtmp://)
ChannelEncoderSettingsAudioDescriptionAudioNormalizationSettings
- Algorithm string
Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 to the EBU R-128 specification.
- Algorithm
Control string Algorithm control for the audio description.
- Target
Lkfs double Target LKFS (loudness) to adjust volume to.
- Algorithm string
Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 to the EBU R-128 specification.
- Algorithm
Control string Algorithm control for the audio description.
- Target
Lkfs float64 Target LKFS (loudness) to adjust volume to.
- algorithm String
Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 to the EBU R-128 specification.
- algorithm
Control String Algorithm control for the audio description.
- target
Lkfs Double Target LKFS (loudness) to adjust volume to.
- algorithm string
Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 to the EBU R-128 specification.
- algorithm
Control string Algorithm control for the audio description.
- target
Lkfs number Target LKFS (loudness) to adjust volume to.
- algorithm str
Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 to the EBU R-128 specification.
- algorithm_
control str Algorithm control for the audio description.
- target_
lkfs float Target LKFS (loudness) to adjust volume to.
- algorithm String
Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 to the EBU R-128 specification.
- algorithm
Control String Algorithm control for the audio description.
- target
Lkfs Number Target LKFS (loudness) to adjust volume to.
ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettings
ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettings
- Nielsen
Cbet ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Cbet Settings Used to insert watermarks of type Nielsen CBET. See Nielsen CBET Settings for more details.
- Nielsen
Distribution stringType Distribution types to assign to the watermarks. Options are
PROGRAM_CONTENT
andFINAL_DISTRIBUTOR
.- Nielsen
Naes List<ChannelIi Nw Settings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Naes Ii Nw Setting> Used to insert watermarks of type Nielsen NAES, II (N2) and Nielsen NAES VI (NW). See Nielsen NAES II NW Settings for more details.
- Nielsen
Cbet ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Cbet Settings Used to insert watermarks of type Nielsen CBET. See Nielsen CBET Settings for more details.
- Nielsen
Distribution stringType Distribution types to assign to the watermarks. Options are
PROGRAM_CONTENT
andFINAL_DISTRIBUTOR
.- Nielsen
Naes []ChannelIi Nw Settings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Naes Ii Nw Setting Used to insert watermarks of type Nielsen NAES, II (N2) and Nielsen NAES VI (NW). See Nielsen NAES II NW Settings for more details.
- nielsen
Cbet ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Cbet Settings Used to insert watermarks of type Nielsen CBET. See Nielsen CBET Settings for more details.
- nielsen
Distribution StringType Distribution types to assign to the watermarks. Options are
PROGRAM_CONTENT
andFINAL_DISTRIBUTOR
.- nielsen
Naes List<ChannelIi Nw Settings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Naes Ii Nw Setting> Used to insert watermarks of type Nielsen NAES, II (N2) and Nielsen NAES VI (NW). See Nielsen NAES II NW Settings for more details.
- nielsen
Cbet ChannelSettings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Cbet Settings Used to insert watermarks of type Nielsen CBET. See Nielsen CBET Settings for more details.
- nielsen
Distribution stringType Distribution types to assign to the watermarks. Options are
PROGRAM_CONTENT
andFINAL_DISTRIBUTOR
.- nielsen
Naes ChannelIi Nw Settings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Naes Ii Nw Setting[] Used to insert watermarks of type Nielsen NAES, II (N2) and Nielsen NAES VI (NW). See Nielsen NAES II NW Settings for more details.
- nielsen_
cbet_ Channelsettings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Cbet Settings Used to insert watermarks of type Nielsen CBET. See Nielsen CBET Settings for more details.
- nielsen_
distribution_ strtype Distribution types to assign to the watermarks. Options are
PROGRAM_CONTENT
andFINAL_DISTRIBUTOR
.- nielsen_
naes_ Sequence[Channelii_ nw_ settings Encoder Settings Audio Description Audio Watermark Settings Nielsen Watermarks Settings Nielsen Naes Ii Nw Setting] Used to insert watermarks of type Nielsen NAES, II (N2) and Nielsen NAES VI (NW). See Nielsen NAES II NW Settings for more details.
- nielsen
Cbet Property MapSettings Used to insert watermarks of type Nielsen CBET. See Nielsen CBET Settings for more details.
- nielsen
Distribution StringType Distribution types to assign to the watermarks. Options are
PROGRAM_CONTENT
andFINAL_DISTRIBUTOR
.- nielsen
Naes List<Property Map>Ii Nw Settings Used to insert watermarks of type Nielsen NAES, II (N2) and Nielsen NAES VI (NW). See Nielsen NAES II NW Settings for more details.
ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettingsNielsenCbetSettings
- Cbet
Check stringDigit String - Cbet
Stepaside string Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
- Csid string
CBET source ID to use in the watermark.
- Cbet
Check stringDigit String - Cbet
Stepaside string Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
- Csid string
CBET source ID to use in the watermark.
- cbet
Check StringDigit String - cbet
Stepaside String Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
- csid String
CBET source ID to use in the watermark.
- cbet
Check stringDigit String - cbet
Stepaside string Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
- csid string
CBET source ID to use in the watermark.
- cbet_
check_ strdigit_ string - cbet_
stepaside str Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
- csid str
CBET source ID to use in the watermark.
- cbet
Check StringDigit String - cbet
Stepaside String Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
- csid String
CBET source ID to use in the watermark.
ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettingsNielsenNaesIiNwSetting
- Check
Digit stringString - Sid double
The Nielsen Source ID to include in the watermark.
- Check
Digit stringString - Sid float64
The Nielsen Source ID to include in the watermark.
- check
Digit StringString - sid Double
The Nielsen Source ID to include in the watermark.
- check
Digit stringString - sid number
The Nielsen Source ID to include in the watermark.
- check_
digit_ strstring - sid float
The Nielsen Source ID to include in the watermark.
- check
Digit StringString - sid Number
The Nielsen Source ID to include in the watermark.
ChannelEncoderSettingsAudioDescriptionCodecSettings
- Aac
Settings ChannelEncoder Settings Audio Description Codec Settings Aac Settings Aac Settings. See AAC Settings for more details.
- Ac3Settings
Channel
Encoder Settings Audio Description Codec Settings Ac3Settings Ac3 Settings. See AC3 Settings for more details.
- Eac3Atmos
Settings ChannelEncoder Settings Audio Description Codec Settings Eac3Atmos Settings Eac3 Atmos Settings. See EAC3 Atmos Settings
- Eac3Settings
Channel
Encoder Settings Audio Description Codec Settings Eac3Settings Eac3 Settings. See EAC3 Settings
- Mp2Settings
Channel
Encoder Settings Audio Description Codec Settings Mp2Settings - Pass
Through ChannelSettings Encoder Settings Audio Description Codec Settings Pass Through Settings - Wav
Settings ChannelEncoder Settings Audio Description Codec Settings Wav Settings
- Aac
Settings ChannelEncoder Settings Audio Description Codec Settings Aac Settings Aac Settings. See AAC Settings for more details.
- Ac3Settings
Channel
Encoder Settings Audio Description Codec Settings Ac3Settings Ac3 Settings. See AC3 Settings for more details.
- Eac3Atmos
Settings ChannelEncoder Settings Audio Description Codec Settings Eac3Atmos Settings Eac3 Atmos Settings. See EAC3 Atmos Settings
- Eac3Settings
Channel
Encoder Settings Audio Description Codec Settings Eac3Settings Eac3 Settings. See EAC3 Settings
- Mp2Settings
Channel
Encoder Settings Audio Description Codec Settings Mp2Settings - Pass
Through ChannelSettings Encoder Settings Audio Description Codec Settings Pass Through Settings - Wav
Settings ChannelEncoder Settings Audio Description Codec Settings Wav Settings
- aac
Settings ChannelEncoder Settings Audio Description Codec Settings Aac Settings Aac Settings. See AAC Settings for more details.
- ac3Settings
Channel
Encoder Settings Audio Description Codec Settings Ac3Settings Ac3 Settings. See AC3 Settings for more details.
- eac3Atmos
Settings ChannelEncoder Settings Audio Description Codec Settings Eac3Atmos Settings Eac3 Atmos Settings. See EAC3 Atmos Settings
- eac3Settings
Channel
Encoder Settings Audio Description Codec Settings Eac3Settings Eac3 Settings. See EAC3 Settings
- mp2Settings
Channel
Encoder Settings Audio Description Codec Settings Mp2Settings - pass
Through ChannelSettings Encoder Settings Audio Description Codec Settings Pass Through Settings - wav
Settings ChannelEncoder Settings Audio Description Codec Settings Wav Settings
- aac
Settings ChannelEncoder Settings Audio Description Codec Settings Aac Settings Aac Settings. See AAC Settings for more details.
- ac3Settings
Channel
Encoder Settings Audio Description Codec Settings Ac3Settings Ac3 Settings. See AC3 Settings for more details.
- eac3Atmos
Settings ChannelEncoder Settings Audio Description Codec Settings Eac3Atmos Settings Eac3 Atmos Settings. See EAC3 Atmos Settings
- eac3Settings
Channel
Encoder Settings Audio Description Codec Settings Eac3Settings Eac3 Settings. See EAC3 Settings
- mp2Settings
Channel
Encoder Settings Audio Description Codec Settings Mp2Settings - pass
Through ChannelSettings Encoder Settings Audio Description Codec Settings Pass Through Settings - wav
Settings ChannelEncoder Settings Audio Description Codec Settings Wav Settings
- aac_
settings ChannelEncoder Settings Audio Description Codec Settings Aac Settings Aac Settings. See AAC Settings for more details.
- ac3_
settings ChannelEncoder Settings Audio Description Codec Settings Ac3Settings Ac3 Settings. See AC3 Settings for more details.
- eac3_
atmos_ Channelsettings Encoder Settings Audio Description Codec Settings Eac3Atmos Settings Eac3 Atmos Settings. See EAC3 Atmos Settings
- eac3_
settings ChannelEncoder Settings Audio Description Codec Settings Eac3Settings Eac3 Settings. See EAC3 Settings
- mp2_
settings ChannelEncoder Settings Audio Description Codec Settings Mp2Settings - pass_
through_ Channelsettings Encoder Settings Audio Description Codec Settings Pass Through Settings - wav_
settings ChannelEncoder Settings Audio Description Codec Settings Wav Settings
- aac
Settings Property Map Aac Settings. See AAC Settings for more details.
- ac3Settings Property Map
Ac3 Settings. See AC3 Settings for more details.
- eac3Atmos
Settings Property Map Eac3 Atmos Settings. See EAC3 Atmos Settings
- eac3Settings Property Map
Eac3 Settings. See EAC3 Settings
- mp2Settings Property Map
- pass
Through Property MapSettings - wav
Settings Property Map
ChannelEncoderSettingsAudioDescriptionCodecSettingsAacSettings
- Bitrate double
Average bitrate in bits/second.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Input
Type string Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair.
- Profile string
AAC profile.
- Rate
Control stringMode The rate control mode.
- Raw
Format string Sets LATM/LOAS AAC output for raw containers.
- Sample
Rate double Sample rate in Hz.
- Spec string
Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
- Vbr
Quality string VBR Quality Level - Only used if rateControlMode is VBR.
- Bitrate float64
Average bitrate in bits/second.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Input
Type string Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair.
- Profile string
AAC profile.
- Rate
Control stringMode The rate control mode.
- Raw
Format string Sets LATM/LOAS AAC output for raw containers.
- Sample
Rate float64 Sample rate in Hz.
- Spec string
Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
- Vbr
Quality string VBR Quality Level - Only used if rateControlMode is VBR.
- bitrate Double
Average bitrate in bits/second.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- input
Type String Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair.
- profile String
AAC profile.
- rate
Control StringMode The rate control mode.
- raw
Format String Sets LATM/LOAS AAC output for raw containers.
- sample
Rate Double Sample rate in Hz.
- spec String
Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
- vbr
Quality String VBR Quality Level - Only used if rateControlMode is VBR.
- bitrate number
Average bitrate in bits/second.
- coding
Mode string Mono, Stereo, or 5.1 channel layout.
- input
Type string Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair.
- profile string
AAC profile.
- rate
Control stringMode The rate control mode.
- raw
Format string Sets LATM/LOAS AAC output for raw containers.
- sample
Rate number Sample rate in Hz.
- spec string
Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
- vbr
Quality string VBR Quality Level - Only used if rateControlMode is VBR.
- bitrate float
Average bitrate in bits/second.
- coding_
mode str Mono, Stereo, or 5.1 channel layout.
- input_
type str Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair.
- profile str
AAC profile.
- rate_
control_ strmode The rate control mode.
- raw_
format str Sets LATM/LOAS AAC output for raw containers.
- sample_
rate float Sample rate in Hz.
- spec str
Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
- vbr_
quality str VBR Quality Level - Only used if rateControlMode is VBR.
- bitrate Number
Average bitrate in bits/second.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- input
Type String Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair.
- profile String
AAC profile.
- rate
Control StringMode The rate control mode.
- raw
Format String Sets LATM/LOAS AAC output for raw containers.
- sample
Rate Number Sample rate in Hz.
- spec String
Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
- vbr
Quality String VBR Quality Level - Only used if rateControlMode is VBR.
ChannelEncoderSettingsAudioDescriptionCodecSettingsAc3Settings
- Bitrate double
Average bitrate in bits/second.
- Bitstream
Mode string Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Dialnorm int
Sets the dialnorm of the output.
- Drc
Profile string If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
- Lfe
Filter string When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- Metadata
Control string Metadata control.
- Bitrate float64
Average bitrate in bits/second.
- Bitstream
Mode string Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Dialnorm int
Sets the dialnorm of the output.
- Drc
Profile string If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
- Lfe
Filter string When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- Metadata
Control string Metadata control.
- bitrate Double
Average bitrate in bits/second.
- bitstream
Mode String Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- dialnorm Integer
Sets the dialnorm of the output.
- drc
Profile String If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
- lfe
Filter String When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- metadata
Control String Metadata control.
- bitrate number
Average bitrate in bits/second.
- bitstream
Mode string Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding
Mode string Mono, Stereo, or 5.1 channel layout.
- dialnorm number
Sets the dialnorm of the output.
- drc
Profile string If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
- lfe
Filter string When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- metadata
Control string Metadata control.
- bitrate float
Average bitrate in bits/second.
- bitstream_
mode str Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding_
mode str Mono, Stereo, or 5.1 channel layout.
- dialnorm int
Sets the dialnorm of the output.
- drc_
profile str If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
- lfe_
filter str When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- metadata_
control str Metadata control.
- bitrate Number
Average bitrate in bits/second.
- bitstream
Mode String Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- dialnorm Number
Sets the dialnorm of the output.
- drc
Profile String If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
- lfe
Filter String When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- metadata
Control String Metadata control.
ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettings
- Bitrate double
Average bitrate in bits/second.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Dialnorm double
Sets the dialnorm of the output.
- Drc
Line string Sets the Dolby dynamic range compression profile.
- Drc
Rf string Sets the profile for heavy Dolby dynamic range compression.
- Height
Trim double Height dimensional trim.
- Surround
Trim double Surround dimensional trim.
- Bitrate float64
Average bitrate in bits/second.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Dialnorm float64
Sets the dialnorm of the output.
- Drc
Line string Sets the Dolby dynamic range compression profile.
- Drc
Rf string Sets the profile for heavy Dolby dynamic range compression.
- Height
Trim float64 Height dimensional trim.
- Surround
Trim float64 Surround dimensional trim.
- bitrate Double
Average bitrate in bits/second.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- dialnorm Double
Sets the dialnorm of the output.
- drc
Line String Sets the Dolby dynamic range compression profile.
- drc
Rf String Sets the profile for heavy Dolby dynamic range compression.
- height
Trim Double Height dimensional trim.
- surround
Trim Double Surround dimensional trim.
- bitrate number
Average bitrate in bits/second.
- coding
Mode string Mono, Stereo, or 5.1 channel layout.
- dialnorm number
Sets the dialnorm of the output.
- drc
Line string Sets the Dolby dynamic range compression profile.
- drc
Rf string Sets the profile for heavy Dolby dynamic range compression.
- height
Trim number Height dimensional trim.
- surround
Trim number Surround dimensional trim.
- bitrate float
Average bitrate in bits/second.
- coding_
mode str Mono, Stereo, or 5.1 channel layout.
- dialnorm float
Sets the dialnorm of the output.
- drc_
line str Sets the Dolby dynamic range compression profile.
- drc_
rf str Sets the profile for heavy Dolby dynamic range compression.
- height_
trim float Height dimensional trim.
- surround_
trim float Surround dimensional trim.
- bitrate Number
Average bitrate in bits/second.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- dialnorm Number
Sets the dialnorm of the output.
- drc
Line String Sets the Dolby dynamic range compression profile.
- drc
Rf String Sets the profile for heavy Dolby dynamic range compression.
- height
Trim Number Height dimensional trim.
- surround
Trim Number Surround dimensional trim.
ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3Settings
- Attenuation
Control string Sets the attenuation control.
- Bitrate double
Average bitrate in bits/second.
- Bitstream
Mode string Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Dc
Filter string - Dialnorm int
Sets the dialnorm of the output.
- Drc
Line string Sets the Dolby dynamic range compression profile.
- Drc
Rf string Sets the profile for heavy Dolby dynamic range compression.
- Lfe
Control string - Lfe
Filter string When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- Lo
Ro doubleCenter Mix Level - Lo
Ro doubleSurround Mix Level - Lt
Rt doubleCenter Mix Level - Lt
Rt doubleSurround Mix Level - Metadata
Control string Metadata control.
- Passthrough
Control string - Phase
Control string - Stereo
Downmix string - Surround
Ex stringMode - Surround
Mode string
- Attenuation
Control string Sets the attenuation control.
- Bitrate float64
Average bitrate in bits/second.
- Bitstream
Mode string Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Dc
Filter string - Dialnorm int
Sets the dialnorm of the output.
- Drc
Line string Sets the Dolby dynamic range compression profile.
- Drc
Rf string Sets the profile for heavy Dolby dynamic range compression.
- Lfe
Control string - Lfe
Filter string When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- Lo
Ro float64Center Mix Level - Lo
Ro float64Surround Mix Level - Lt
Rt float64Center Mix Level - Lt
Rt float64Surround Mix Level - Metadata
Control string Metadata control.
- Passthrough
Control string - Phase
Control string - Stereo
Downmix string - Surround
Ex stringMode - Surround
Mode string
- attenuation
Control String Sets the attenuation control.
- bitrate Double
Average bitrate in bits/second.
- bitstream
Mode String Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- dc
Filter String - dialnorm Integer
Sets the dialnorm of the output.
- drc
Line String Sets the Dolby dynamic range compression profile.
- drc
Rf String Sets the profile for heavy Dolby dynamic range compression.
- lfe
Control String - lfe
Filter String When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- lo
Ro DoubleCenter Mix Level - lo
Ro DoubleSurround Mix Level - lt
Rt DoubleCenter Mix Level - lt
Rt DoubleSurround Mix Level - metadata
Control String Metadata control.
- passthrough
Control String - phase
Control String - stereo
Downmix String - surround
Ex StringMode - surround
Mode String
- attenuation
Control string Sets the attenuation control.
- bitrate number
Average bitrate in bits/second.
- bitstream
Mode string Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding
Mode string Mono, Stereo, or 5.1 channel layout.
- dc
Filter string - dialnorm number
Sets the dialnorm of the output.
- drc
Line string Sets the Dolby dynamic range compression profile.
- drc
Rf string Sets the profile for heavy Dolby dynamic range compression.
- lfe
Control string - lfe
Filter string When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- lo
Ro numberCenter Mix Level - lo
Ro numberSurround Mix Level - lt
Rt numberCenter Mix Level - lt
Rt numberSurround Mix Level - metadata
Control string Metadata control.
- passthrough
Control string - phase
Control string - stereo
Downmix string - surround
Ex stringMode - surround
Mode string
- attenuation_
control str Sets the attenuation control.
- bitrate float
Average bitrate in bits/second.
- bitstream_
mode str Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding_
mode str Mono, Stereo, or 5.1 channel layout.
- dc_
filter str - dialnorm int
Sets the dialnorm of the output.
- drc_
line str Sets the Dolby dynamic range compression profile.
- drc_
rf str Sets the profile for heavy Dolby dynamic range compression.
- lfe_
control str - lfe_
filter str When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- lo_
ro_ floatcenter_ mix_ level - lo_
ro_ floatsurround_ mix_ level - lt_
rt_ floatcenter_ mix_ level - lt_
rt_ floatsurround_ mix_ level - metadata_
control str Metadata control.
- passthrough_
control str - phase_
control str - stereo_
downmix str - surround_
ex_ strmode - surround_
mode str
- attenuation
Control String Sets the attenuation control.
- bitrate Number
Average bitrate in bits/second.
- bitstream
Mode String Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- dc
Filter String - dialnorm Number
Sets the dialnorm of the output.
- drc
Line String Sets the Dolby dynamic range compression profile.
- drc
Rf String Sets the profile for heavy Dolby dynamic range compression.
- lfe
Control String - lfe
Filter String When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
- lo
Ro NumberCenter Mix Level - lo
Ro NumberSurround Mix Level - lt
Rt NumberCenter Mix Level - lt
Rt NumberSurround Mix Level - metadata
Control String Metadata control.
- passthrough
Control String - phase
Control String - stereo
Downmix String - surround
Ex StringMode - surround
Mode String
ChannelEncoderSettingsAudioDescriptionCodecSettingsMp2Settings
- Bitrate double
Average bitrate in bits/second.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Sample
Rate double Sample rate in Hz.
- Bitrate float64
Average bitrate in bits/second.
- Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Sample
Rate float64 Sample rate in Hz.
- bitrate Double
Average bitrate in bits/second.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- sample
Rate Double Sample rate in Hz.
- bitrate number
Average bitrate in bits/second.
- coding
Mode string Mono, Stereo, or 5.1 channel layout.
- sample
Rate number Sample rate in Hz.
- bitrate float
Average bitrate in bits/second.
- coding_
mode str Mono, Stereo, or 5.1 channel layout.
- sample_
rate float Sample rate in Hz.
- bitrate Number
Average bitrate in bits/second.
- coding
Mode String Mono, Stereo, or 5.1 channel layout.
- sample
Rate Number Sample rate in Hz.
ChannelEncoderSettingsAudioDescriptionCodecSettingsWavSettings
- Bit
Depth double - Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Sample
Rate double Sample rate in Hz.
- Bit
Depth float64 - Coding
Mode string Mono, Stereo, or 5.1 channel layout.
- Sample
Rate float64 Sample rate in Hz.
- bit
Depth Double - coding
Mode String Mono, Stereo, or 5.1 channel layout.
- sample
Rate Double Sample rate in Hz.
- bit
Depth number - coding
Mode string Mono, Stereo, or 5.1 channel layout.
- sample
Rate number Sample rate in Hz.
- bit_
depth float - coding_
mode str Mono, Stereo, or 5.1 channel layout.
- sample_
rate float Sample rate in Hz.
- bit
Depth Number - coding
Mode String Mono, Stereo, or 5.1 channel layout.
- sample
Rate Number Sample rate in Hz.
ChannelEncoderSettingsAudioDescriptionRemixSettings
- channel
Mappings List<Property Map> - channels
In Number - channels
Out Number
ChannelEncoderSettingsAudioDescriptionRemixSettingsChannelMapping
ChannelEncoderSettingsAudioDescriptionRemixSettingsChannelMappingInputChannelLevel
- Gain int
- Input
Channel int
- Gain int
- Input
Channel int
- gain Integer
- input
Channel Integer
- gain number
- input
Channel number
- gain int
- input_
channel int
- gain Number
- input
Channel Number
ChannelEncoderSettingsAvailBlanking
- Avail
Blanking ChannelImage Encoder Settings Avail Blanking Avail Blanking Image Blanking image to be used. See Avail Blanking Image for more details.
- State string
When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
- Avail
Blanking ChannelImage Encoder Settings Avail Blanking Avail Blanking Image Blanking image to be used. See Avail Blanking Image for more details.
- State string
When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
- avail
Blanking ChannelImage Encoder Settings Avail Blanking Avail Blanking Image Blanking image to be used. See Avail Blanking Image for more details.
- state String
When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
- avail
Blanking ChannelImage Encoder Settings Avail Blanking Avail Blanking Image Blanking image to be used. See Avail Blanking Image for more details.
- state string
When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
- avail_
blanking_ Channelimage Encoder Settings Avail Blanking Avail Blanking Image Blanking image to be used. See Avail Blanking Image for more details.
- state str
When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
- avail
Blanking Property MapImage Blanking image to be used. See Avail Blanking Image for more details.
- state String
When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
ChannelEncoderSettingsAvailBlankingAvailBlankingImage
- Uri string
Path to a file accessible to the live stream.
- Password
Param string Key used to extract the password from EC2 Parameter store.
- Username string
. Username to be used.
- Uri string
Path to a file accessible to the live stream.
- Password
Param string Key used to extract the password from EC2 Parameter store.
- Username string
. Username to be used.
- uri String
Path to a file accessible to the live stream.
- password
Param String Key used to extract the password from EC2 Parameter store.
- username String
. Username to be used.
- uri string
Path to a file accessible to the live stream.
- password
Param string Key used to extract the password from EC2 Parameter store.
- username string
. Username to be used.
- uri str
Path to a file accessible to the live stream.
- password_
param str Key used to extract the password from EC2 Parameter store.
- username str
. Username to be used.
- uri String
Path to a file accessible to the live stream.
- password
Param String Key used to extract the password from EC2 Parameter store.
- username String
. Username to be used.
ChannelEncoderSettingsOutputGroup
- Output
Group ChannelSettings Encoder Settings Output Group Output Group Settings Settings associated with the output group. See Output Group Settings for more details.
- Outputs
List<Channel
Encoder Settings Output Group Output> List of outputs. See Outputs for more details.
- Name string
Custom output group name defined by the user.
- Output
Group ChannelSettings Encoder Settings Output Group Output Group Settings Settings associated with the output group. See Output Group Settings for more details.
- Outputs
[]Channel
Encoder Settings Output Group Output Type List of outputs. See Outputs for more details.
- Name string
Custom output group name defined by the user.
- output
Group ChannelSettings Encoder Settings Output Group Output Group Settings Settings associated with the output group. See Output Group Settings for more details.
- outputs
List<Channel
Encoder Settings Output Group Output> List of outputs. See Outputs for more details.
- name String
Custom output group name defined by the user.
- output
Group ChannelSettings Encoder Settings Output Group Output Group Settings Settings associated with the output group. See Output Group Settings for more details.
- outputs
Channel
Encoder Settings Output Group Output[] List of outputs. See Outputs for more details.
- name string
Custom output group name defined by the user.
- output_
group_ Channelsettings Encoder Settings Output Group Output Group Settings Settings associated with the output group. See Output Group Settings for more details.
- outputs
Sequence[Channel
Encoder Settings Output Group Output] List of outputs. See Outputs for more details.
- name str
Custom output group name defined by the user.
- output
Group Property MapSettings Settings associated with the output group. See Output Group Settings for more details.
- outputs List<Property Map>
List of outputs. See Outputs for more details.
- name String
Custom output group name defined by the user.
ChannelEncoderSettingsOutputGroupOutput
- Output
Settings ChannelEncoder Settings Output Group Output Output Settings Settings for output. See Output Settings for more details.
- Audio
Description List<string>Names The names of the audio descriptions used as audio sources for the output.
- Caption
Description List<string>Names The names of the caption descriptions used as caption sources for the output.
- Output
Name string The name used to identify an output.
- Video
Description stringName The name of the video description used as video source for the output.
- Output
Settings ChannelEncoder Settings Output Group Output Output Settings Settings for output. See Output Settings for more details.
- Audio
Description []stringNames The names of the audio descriptions used as audio sources for the output.
- Caption
Description []stringNames The names of the caption descriptions used as caption sources for the output.
- Output
Name string The name used to identify an output.
- Video
Description stringName The name of the video description used as video source for the output.
- output
Settings ChannelEncoder Settings Output Group Output Output Settings Settings for output. See Output Settings for more details.
- audio
Description List<String>Names The names of the audio descriptions used as audio sources for the output.
- caption
Description List<String>Names The names of the caption descriptions used as caption sources for the output.
- output
Name String The name used to identify an output.
- video
Description StringName The name of the video description used as video source for the output.
- output
Settings ChannelEncoder Settings Output Group Output Output Settings Settings for output. See Output Settings for more details.
- audio
Description string[]Names The names of the audio descriptions used as audio sources for the output.
- caption
Description string[]Names The names of the caption descriptions used as caption sources for the output.
- output
Name string The name used to identify an output.
- video
Description stringName The name of the video description used as video source for the output.
- output_
settings ChannelEncoder Settings Output Group Output Output Settings Settings for output. See Output Settings for more details.
- audio_
description_ Sequence[str]names The names of the audio descriptions used as audio sources for the output.
- caption_
description_ Sequence[str]names The names of the caption descriptions used as caption sources for the output.
- output_
name str The name used to identify an output.
- video_
description_ strname The name of the video description used as video source for the output.
- output
Settings Property Map Settings for output. See Output Settings for more details.
- audio
Description List<String>Names The names of the audio descriptions used as audio sources for the output.
- caption
Description List<String>Names The names of the caption descriptions used as caption sources for the output.
- output
Name String The name used to identify an output.
- video
Description StringName The name of the video description used as video source for the output.
ChannelEncoderSettingsOutputGroupOutputGroupSettings
- Archive
Group List<ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting> Archive group settings. See Archive Group Settings for more details.
- Frame
Capture ChannelGroup Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings - Hls
Group ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings - Media
Package ChannelGroup Settings Encoder Settings Output Group Output Group Settings Media Package Group Settings Media package group settings. See Media Package Group Settings for more details.
- Ms
Smooth ChannelGroup Settings Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings - Multiplex
Group ChannelSettings Encoder Settings Output Group Output Group Settings Multiplex Group Settings - Rtmp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Rtmp Group Settings RTMP group settings. See RTMP Group Settings for more details.
- Udp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Udp Group Settings
- Archive
Group []ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive group settings. See Archive Group Settings for more details.
- Frame
Capture ChannelGroup Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings - Hls
Group ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings - Media
Package ChannelGroup Settings Encoder Settings Output Group Output Group Settings Media Package Group Settings Media package group settings. See Media Package Group Settings for more details.
- Ms
Smooth ChannelGroup Settings Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings - Multiplex
Group ChannelSettings Encoder Settings Output Group Output Group Settings Multiplex Group Settings - Rtmp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Rtmp Group Settings RTMP group settings. See RTMP Group Settings for more details.
- Udp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Udp Group Settings
- archive
Group List<ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting> Archive group settings. See Archive Group Settings for more details.
- frame
Capture ChannelGroup Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings - hls
Group ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings - media
Package ChannelGroup Settings Encoder Settings Output Group Output Group Settings Media Package Group Settings Media package group settings. See Media Package Group Settings for more details.
- ms
Smooth ChannelGroup Settings Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings - multiplex
Group ChannelSettings Encoder Settings Output Group Output Group Settings Multiplex Group Settings - rtmp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Rtmp Group Settings RTMP group settings. See RTMP Group Settings for more details.
- udp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Udp Group Settings
- archive
Group ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting[] Archive group settings. See Archive Group Settings for more details.
- frame
Capture ChannelGroup Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings - hls
Group ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings - media
Package ChannelGroup Settings Encoder Settings Output Group Output Group Settings Media Package Group Settings Media package group settings. See Media Package Group Settings for more details.
- ms
Smooth ChannelGroup Settings Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings - multiplex
Group ChannelSettings Encoder Settings Output Group Output Group Settings Multiplex Group Settings - rtmp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Rtmp Group Settings RTMP group settings. See RTMP Group Settings for more details.
- udp
Group ChannelSettings Encoder Settings Output Group Output Group Settings Udp Group Settings
- archive_
group_ Sequence[Channelsettings Encoder Settings Output Group Output Group Settings Archive Group Setting] Archive group settings. See Archive Group Settings for more details.
- frame_
capture_ Channelgroup_ settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings - hls_
group_ Channelsettings Encoder Settings Output Group Output Group Settings Hls Group Settings - media_
package_ Channelgroup_ settings Encoder Settings Output Group Output Group Settings Media Package Group Settings Media package group settings. See Media Package Group Settings for more details.
- ms_
smooth_ Channelgroup_ settings Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings - multiplex_
group_ Channelsettings Encoder Settings Output Group Output Group Settings Multiplex Group Settings - rtmp_
group_ Channelsettings Encoder Settings Output Group Output Group Settings Rtmp Group Settings RTMP group settings. See RTMP Group Settings for more details.
- udp_
group_ Channelsettings Encoder Settings Output Group Output Group Settings Udp Group Settings
- archive
Group List<Property Map>Settings Archive group settings. See Archive Group Settings for more details.
- frame
Capture Property MapGroup Settings - hls
Group Property MapSettings - media
Package Property MapGroup Settings Media package group settings. See Media Package Group Settings for more details.
- ms
Smooth Property MapGroup Settings - multiplex
Group Property MapSettings - rtmp
Group Property MapSettings RTMP group settings. See RTMP Group Settings for more details.
- udp
Group Property MapSettings
ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSetting
- Destination
Channel
Encoder Settings Output Group Output Group Settings Archive Group Setting Destination A director and base filename where archive files should be written. See Destination for more details.
- Archive
Cdn ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Parameters that control the interactions with the CDN. See Archive CDN Settings for more details.
- Rollover
Interval int Number of seconds to write to archive file before closing and starting a new one.
- Destination
Channel
Encoder Settings Output Group Output Group Settings Archive Group Setting Destination A director and base filename where archive files should be written. See Destination for more details.
- Archive
Cdn ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Parameters that control the interactions with the CDN. See Archive CDN Settings for more details.
- Rollover
Interval int Number of seconds to write to archive file before closing and starting a new one.
- destination
Channel
Encoder Settings Output Group Output Group Settings Archive Group Setting Destination A director and base filename where archive files should be written. See Destination for more details.
- archive
Cdn ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Parameters that control the interactions with the CDN. See Archive CDN Settings for more details.
- rollover
Interval Integer Number of seconds to write to archive file before closing and starting a new one.
- destination
Channel
Encoder Settings Output Group Output Group Settings Archive Group Setting Destination A director and base filename where archive files should be written. See Destination for more details.
- archive
Cdn ChannelSettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Parameters that control the interactions with the CDN. See Archive CDN Settings for more details.
- rollover
Interval number Number of seconds to write to archive file before closing and starting a new one.
- destination
Channel
Encoder Settings Output Group Output Group Settings Archive Group Setting Destination A director and base filename where archive files should be written. See Destination for more details.
- archive_
cdn_ Channelsettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Parameters that control the interactions with the CDN. See Archive CDN Settings for more details.
- rollover_
interval int Number of seconds to write to archive file before closing and starting a new one.
- destination Property Map
A director and base filename where archive files should be written. See Destination for more details.
- archive
Cdn Property MapSettings Parameters that control the interactions with the CDN. See Archive CDN Settings for more details.
- rollover
Interval Number Number of seconds to write to archive file before closing and starting a new one.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArchiveCdnSettings
- Archive
S3Settings ChannelEncoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Archive S3Settings Archive S3 Settings. See Archive S3 Settings for more details.
- Archive
S3Settings ChannelEncoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Archive S3Settings Archive S3 Settings. See Archive S3 Settings for more details.
- archive
S3Settings ChannelEncoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Archive S3Settings Archive S3 Settings. See Archive S3 Settings for more details.
- archive
S3Settings ChannelEncoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Archive S3Settings Archive S3 Settings. See Archive S3 Settings for more details.
- archive_
s3_ Channelsettings Encoder Settings Output Group Output Group Settings Archive Group Setting Archive Cdn Settings Archive S3Settings Archive S3 Settings. See Archive S3 Settings for more details.
- archive
S3Settings Property Map Archive S3 Settings. See Archive S3 Settings for more details.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArchiveCdnSettingsArchiveS3Settings
- Canned
Acl string Specify the canned ACL to apply to each S3 request.
- Canned
Acl string Specify the canned ACL to apply to each S3 request.
- canned
Acl String Specify the canned ACL to apply to each S3 request.
- canned
Acl string Specify the canned ACL to apply to each S3 request.
- canned_
acl str Specify the canned ACL to apply to each S3 request.
- canned
Acl String Specify the canned ACL to apply to each S3 request.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingDestination
- Destination
Ref stringId Reference ID for the destination.
- Destination
Ref stringId Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
- destination
Ref stringId Reference ID for the destination.
- destination_
ref_ strid Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettings
- Destination
Channel
Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Frame
Capture ChannelCdn Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Frame Capture Cdn Settings
- Destination
Channel
Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Frame
Capture ChannelCdn Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Frame Capture Cdn Settings
- destination
Channel
Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- frame
Capture ChannelCdn Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Frame Capture Cdn Settings
- destination
Channel
Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- frame
Capture ChannelCdn Settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Frame Capture Cdn Settings
- destination
Channel
Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- frame_
capture_ Channelcdn_ settings Encoder Settings Output Group Output Group Settings Frame Capture Group Settings Frame Capture Cdn Settings
- destination Property Map
A director and base filename where archive files should be written. See Destination for more details.
- frame
Capture Property MapCdn Settings
ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsDestination
- Destination
Ref stringId Reference ID for the destination.
- Destination
Ref stringId Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
- destination
Ref stringId Reference ID for the destination.
- destination_
ref_ strid Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsFrameCaptureCdnSettings
ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsFrameCaptureCdnSettingsFrameCaptureS3Settings
- Canned
Acl string Specify the canned ACL to apply to each S3 request.
- Canned
Acl string Specify the canned ACL to apply to each S3 request.
- canned
Acl String Specify the canned ACL to apply to each S3 request.
- canned
Acl string Specify the canned ACL to apply to each S3 request.
- canned_
acl str Specify the canned ACL to apply to each S3 request.
- canned
Acl String Specify the canned ACL to apply to each S3 request.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettings
- Destination
Channel
Encoder Settings Output Group Output Group Settings Hls Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Ad
Markers List<string> The ad marker type for this output group.
- Base
Url stringContent - Base
Url stringContent1 - Base
Url stringManifest - Base
Url stringManifest1 - Caption
Language List<ChannelMappings Encoder Settings Output Group Output Group Settings Hls Group Settings Caption Language Mapping> - Caption
Language stringSetting - Client
Cache string - Codec
Specification string - Constant
Iv string - Directory
Structure string - string
- Encryption
Type string - Hls
Cdn List<ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting> - Hls
Id3Segment stringTagging - Iframe
Only stringPlaylists - Incomplete
Segment stringBehavior - Index
NSegments int - Input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- Iv
In stringManifest - Iv
Source string - Keep
Segments int - Key
Format string - Key
Format stringVersions - Key
Provider ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Key Provider Settings - Manifest
Compression string - Manifest
Duration stringFormat - Min
Segment intLength - Mode string
- Output
Selection string - Program
Date stringTime - Program
Date stringTime Clock - Program
Date intTime Period - Redundant
Manifest string - Segment
Length int - Segments
Per intSubdirectory - Stream
Inf stringResolution - Timed
Metadata stringId3Frame Indicates ID3 frame that has the timecode.
- Timed
Metadata intId3Period - Timestamp
Delta intMilliseconds - Ts
File stringMode
- Destination
Channel
Encoder Settings Output Group Output Group Settings Hls Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Ad
Markers []string The ad marker type for this output group.
- Base
Url stringContent - Base
Url stringContent1 - Base
Url stringManifest - Base
Url stringManifest1 - Caption
Language []ChannelMappings Encoder Settings Output Group Output Group Settings Hls Group Settings Caption Language Mapping - Caption
Language stringSetting - Client
Cache string - Codec
Specification string - Constant
Iv string - Directory
Structure string - string
- Encryption
Type string - Hls
Cdn []ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting - Hls
Id3Segment stringTagging - Iframe
Only stringPlaylists - Incomplete
Segment stringBehavior - Index
NSegments int - Input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- Iv
In stringManifest - Iv
Source string - Keep
Segments int - Key
Format string - Key
Format stringVersions - Key
Provider ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Key Provider Settings - Manifest
Compression string - Manifest
Duration stringFormat - Min
Segment intLength - Mode string
- Output
Selection string - Program
Date stringTime - Program
Date stringTime Clock - Program
Date intTime Period - Redundant
Manifest string - Segment
Length int - Segments
Per intSubdirectory - Stream
Inf stringResolution - Timed
Metadata stringId3Frame Indicates ID3 frame that has the timecode.
- Timed
Metadata intId3Period - Timestamp
Delta intMilliseconds - Ts
File stringMode
- destination
Channel
Encoder Settings Output Group Output Group Settings Hls Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- ad
Markers List<String> The ad marker type for this output group.
- base
Url StringContent - base
Url StringContent1 - base
Url StringManifest - base
Url StringManifest1 - caption
Language List<ChannelMappings Encoder Settings Output Group Output Group Settings Hls Group Settings Caption Language Mapping> - caption
Language StringSetting - client
Cache String - codec
Specification String - constant
Iv String - directory
Structure String - String
- encryption
Type String - hls
Cdn List<ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting> - hls
Id3Segment StringTagging - iframe
Only StringPlaylists - incomplete
Segment StringBehavior - index
NSegments Integer - input
Loss StringAction Controls the behavior of the RTMP group if input becomes unavailable.
- iv
In StringManifest - iv
Source String - keep
Segments Integer - key
Format String - key
Format StringVersions - key
Provider ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Key Provider Settings - manifest
Compression String - manifest
Duration StringFormat - min
Segment IntegerLength - mode String
- output
Selection String - program
Date StringTime - program
Date StringTime Clock - program
Date IntegerTime Period - redundant
Manifest String - segment
Length Integer - segments
Per IntegerSubdirectory - stream
Inf StringResolution - timed
Metadata StringId3Frame Indicates ID3 frame that has the timecode.
- timed
Metadata IntegerId3Period - timestamp
Delta IntegerMilliseconds - ts
File StringMode
- destination
Channel
Encoder Settings Output Group Output Group Settings Hls Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- ad
Markers string[] The ad marker type for this output group.
- base
Url stringContent - base
Url stringContent1 - base
Url stringManifest - base
Url stringManifest1 - caption
Language ChannelMappings Encoder Settings Output Group Output Group Settings Hls Group Settings Caption Language Mapping[] - caption
Language stringSetting - client
Cache string - codec
Specification string - constant
Iv string - directory
Structure string - string
- encryption
Type string - hls
Cdn ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting[] - hls
Id3Segment stringTagging - iframe
Only stringPlaylists - incomplete
Segment stringBehavior - index
NSegments number - input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- iv
In stringManifest - iv
Source string - keep
Segments number - key
Format string - key
Format stringVersions - key
Provider ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Key Provider Settings - manifest
Compression string - manifest
Duration stringFormat - min
Segment numberLength - mode string
- output
Selection string - program
Date stringTime - program
Date stringTime Clock - program
Date numberTime Period - redundant
Manifest string - segment
Length number - segments
Per numberSubdirectory - stream
Inf stringResolution - timed
Metadata stringId3Frame Indicates ID3 frame that has the timecode.
- timed
Metadata numberId3Period - timestamp
Delta numberMilliseconds - ts
File stringMode
- destination
Channel
Encoder Settings Output Group Output Group Settings Hls Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- ad_
markers Sequence[str] The ad marker type for this output group.
- base_
url_ strcontent - base_
url_ strcontent1 - base_
url_ strmanifest - base_
url_ strmanifest1 - caption_
language_ Sequence[Channelmappings Encoder Settings Output Group Output Group Settings Hls Group Settings Caption Language Mapping] - caption_
language_ strsetting - client_
cache str - codec_
specification str - constant_
iv str - directory_
structure str - str
- encryption_
type str - hls_
cdn_ Sequence[Channelsettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting] - hls_
id3_ strsegment_ tagging - iframe_
only_ strplaylists - incomplete_
segment_ strbehavior - index_
n_ intsegments - input_
loss_ straction Controls the behavior of the RTMP group if input becomes unavailable.
- iv_
in_ strmanifest - iv_
source str - keep_
segments int - key_
format str - key_
format_ strversions - key_
provider_ Channelsettings Encoder Settings Output Group Output Group Settings Hls Group Settings Key Provider Settings - manifest_
compression str - manifest_
duration_ strformat - min_
segment_ intlength - mode str
- output_
selection str - program_
date_ strtime - program_
date_ strtime_ clock - program_
date_ inttime_ period - redundant_
manifest str - segment_
length int - segments_
per_ intsubdirectory - stream_
inf_ strresolution - timed_
metadata_ strid3_ frame Indicates ID3 frame that has the timecode.
- timed_
metadata_ intid3_ period - timestamp_
delta_ intmilliseconds - ts_
file_ strmode
- destination Property Map
A director and base filename where archive files should be written. See Destination for more details.
- ad
Markers List<String> The ad marker type for this output group.
- base
Url StringContent - base
Url StringContent1 - base
Url StringManifest - base
Url StringManifest1 - caption
Language List<Property Map>Mappings - caption
Language StringSetting - client
Cache String - codec
Specification String - constant
Iv String - directory
Structure String - String
- encryption
Type String - hls
Cdn List<Property Map>Settings - hls
Id3Segment StringTagging - iframe
Only StringPlaylists - incomplete
Segment StringBehavior - index
NSegments Number - input
Loss StringAction Controls the behavior of the RTMP group if input becomes unavailable.
- iv
In StringManifest - iv
Source String - keep
Segments Number - key
Format String - key
Format StringVersions - key
Provider Property MapSettings - manifest
Compression String - manifest
Duration StringFormat - min
Segment NumberLength - mode String
- output
Selection String - program
Date StringTime - program
Date StringTime Clock - program
Date NumberTime Period - redundant
Manifest String - segment
Length Number - segments
Per NumberSubdirectory - stream
Inf StringResolution - timed
Metadata StringId3Frame Indicates ID3 frame that has the timecode.
- timed
Metadata NumberId3Period - timestamp
Delta NumberMilliseconds - ts
File StringMode
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsCaptionLanguageMapping
- Caption
Channel int - Language
Code string When specified this field indicates the three letter language code of the caption track to extract from the source.
- Language
Description string
- Caption
Channel int - Language
Code string When specified this field indicates the three letter language code of the caption track to extract from the source.
- Language
Description string
- caption
Channel Integer - language
Code String When specified this field indicates the three letter language code of the caption track to extract from the source.
- language
Description String
- caption
Channel number - language
Code string When specified this field indicates the three letter language code of the caption track to extract from the source.
- language
Description string
- caption_
channel int - language_
code str When specified this field indicates the three letter language code of the caption track to extract from the source.
- language_
description str
- caption
Channel Number - language
Code String When specified this field indicates the three letter language code of the caption track to extract from the source.
- language
Description String
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsDestination
- Destination
Ref stringId Reference ID for the destination.
- Destination
Ref stringId Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
- destination
Ref stringId Reference ID for the destination.
- destination_
ref_ strid Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSetting
- Hls
Akamai ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Akamai Settings - Hls
Basic ChannelPut Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Basic Put Settings - Hls
Media ChannelStore Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Media Store Settings - Hls
S3Settings ChannelEncoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls S3Settings - Hls
Webdav ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Webdav Settings
- Hls
Akamai ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Akamai Settings - Hls
Basic ChannelPut Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Basic Put Settings - Hls
Media ChannelStore Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Media Store Settings - Hls
S3Settings ChannelEncoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls S3Settings - Hls
Webdav ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Webdav Settings
- hls
Akamai ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Akamai Settings - hls
Basic ChannelPut Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Basic Put Settings - hls
Media ChannelStore Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Media Store Settings - hls
S3Settings ChannelEncoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls S3Settings - hls
Webdav ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Webdav Settings
- hls
Akamai ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Akamai Settings - hls
Basic ChannelPut Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Basic Put Settings - hls
Media ChannelStore Settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Media Store Settings - hls
S3Settings ChannelEncoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls S3Settings - hls
Webdav ChannelSettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Webdav Settings
- hls_
akamai_ Channelsettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Akamai Settings - hls_
basic_ Channelput_ settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Basic Put Settings - hls_
media_ Channelstore_ settings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Media Store Settings - hls_
s3_ Channelsettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls S3Settings - hls_
webdav_ Channelsettings Encoder Settings Output Group Output Group Settings Hls Group Settings Hls Cdn Setting Hls Webdav Settings
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsAkamaiSettings
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Http
Transfer stringMode - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Salt string
- Token string
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Http
Transfer stringMode - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Salt string
- Token string
- connection
Retry IntegerInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Integer - http
Transfer StringMode - num
Retries Integer Number of retry attempts.
- restart
Delay Integer Number of seconds to wait until a restart is initiated.
- salt String
- token String
- connection
Retry numberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration number - http
Transfer stringMode - num
Retries number Number of retry attempts.
- restart
Delay number Number of seconds to wait until a restart is initiated.
- salt string
- token string
- connection_
retry_ intinterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache_
duration int - http_
transfer_ strmode - num_
retries int Number of retry attempts.
- restart_
delay int Number of seconds to wait until a restart is initiated.
- salt str
- token str
- connection
Retry NumberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Number - http
Transfer StringMode - num
Retries Number Number of retry attempts.
- restart
Delay Number Number of seconds to wait until a restart is initiated.
- salt String
- token String
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsBasicPutSettings
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- connection
Retry IntegerInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Integer - num
Retries Integer Number of retry attempts.
- restart
Delay Integer Number of seconds to wait until a restart is initiated.
- connection
Retry numberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration number - num
Retries number Number of retry attempts.
- restart
Delay number Number of seconds to wait until a restart is initiated.
- connection_
retry_ intinterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache_
duration int - num_
retries int Number of retry attempts.
- restart_
delay int Number of seconds to wait until a restart is initiated.
- connection
Retry NumberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Number - num
Retries Number Number of retry attempts.
- restart
Delay Number Number of seconds to wait until a restart is initiated.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsMediaStoreSettings
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Media
Store stringStorage Class - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Media
Store stringStorage Class - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- connection
Retry IntegerInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Integer - media
Store StringStorage Class - num
Retries Integer Number of retry attempts.
- restart
Delay Integer Number of seconds to wait until a restart is initiated.
- connection
Retry numberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration number - media
Store stringStorage Class - num
Retries number Number of retry attempts.
- restart
Delay number Number of seconds to wait until a restart is initiated.
- connection_
retry_ intinterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache_
duration int - media_
store_ strstorage_ class - num_
retries int Number of retry attempts.
- restart_
delay int Number of seconds to wait until a restart is initiated.
- connection
Retry NumberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Number - media
Store StringStorage Class - num
Retries Number Number of retry attempts.
- restart
Delay Number Number of seconds to wait until a restart is initiated.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsS3Settings
- Canned
Acl string Specify the canned ACL to apply to each S3 request.
- Canned
Acl string Specify the canned ACL to apply to each S3 request.
- canned
Acl String Specify the canned ACL to apply to each S3 request.
- canned
Acl string Specify the canned ACL to apply to each S3 request.
- canned_
acl str Specify the canned ACL to apply to each S3 request.
- canned
Acl String Specify the canned ACL to apply to each S3 request.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsWebdavSettings
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Http
Transfer stringMode - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Filecache
Duration int - Http
Transfer stringMode - Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- connection
Retry IntegerInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Integer - http
Transfer StringMode - num
Retries Integer Number of retry attempts.
- restart
Delay Integer Number of seconds to wait until a restart is initiated.
- connection
Retry numberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration number - http
Transfer stringMode - num
Retries number Number of retry attempts.
- restart
Delay number Number of seconds to wait until a restart is initiated.
- connection_
retry_ intinterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache_
duration int - http_
transfer_ strmode - num_
retries int Number of retry attempts.
- restart_
delay int Number of seconds to wait until a restart is initiated.
- connection
Retry NumberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- filecache
Duration Number - http
Transfer StringMode - num
Retries Number Number of retry attempts.
- restart
Delay Number Number of seconds to wait until a restart is initiated.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsKeyProviderSettings
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsKeyProviderSettingsStaticKeySetting
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsKeyProviderSettingsStaticKeySettingKeyProviderServer
- Uri string
Path to a file accessible to the live stream.
- Password
Param string Key used to extract the password from EC2 Parameter store.
- Username string
Username for destination.
- Uri string
Path to a file accessible to the live stream.
- Password
Param string Key used to extract the password from EC2 Parameter store.
- Username string
Username for destination.
- uri String
Path to a file accessible to the live stream.
- password
Param String Key used to extract the password from EC2 Parameter store.
- username String
Username for destination.
- uri string
Path to a file accessible to the live stream.
- password
Param string Key used to extract the password from EC2 Parameter store.
- username string
Username for destination.
- uri str
Path to a file accessible to the live stream.
- password_
param str Key used to extract the password from EC2 Parameter store.
- username str
Username for destination.
- uri String
Path to a file accessible to the live stream.
- password
Param String Key used to extract the password from EC2 Parameter store.
- username String
Username for destination.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsMediaPackageGroupSettings
- Destination
Channel
Encoder Settings Output Group Output Group Settings Media Package Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Destination
Channel
Encoder Settings Output Group Output Group Settings Media Package Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- destination
Channel
Encoder Settings Output Group Output Group Settings Media Package Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- destination
Channel
Encoder Settings Output Group Output Group Settings Media Package Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- destination
Channel
Encoder Settings Output Group Output Group Settings Media Package Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- destination Property Map
A director and base filename where archive files should be written. See Destination for more details.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsMediaPackageGroupSettingsDestination
- Destination
Ref stringId Reference ID for the destination.
- Destination
Ref stringId Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
- destination
Ref stringId Reference ID for the destination.
- destination_
ref_ strid Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettings
- Destination
Channel
Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Acquisition
Point stringId - Audio
Only stringTimecode Control - Certificate
Mode string Setting to allow self signed or verified RTMP certificates.
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Event
Id string - Event
Id stringMode - Event
Stop stringBehavior - Filecache
Duration int - Fragment
Length int - Input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Segmentation
Mode string - Send
Delay intMs - Sparse
Track stringType - Stream
Manifest stringBehavior - Timestamp
Offset string - Timestamp
Offset stringMode
- Destination
Channel
Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- Acquisition
Point stringId - Audio
Only stringTimecode Control - Certificate
Mode string Setting to allow self signed or verified RTMP certificates.
- Connection
Retry intInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- Event
Id string - Event
Id stringMode - Event
Stop stringBehavior - Filecache
Duration int - Fragment
Length int - Input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- Num
Retries int Number of retry attempts.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Segmentation
Mode string - Send
Delay intMs - Sparse
Track stringType - Stream
Manifest stringBehavior - Timestamp
Offset string - Timestamp
Offset stringMode
- destination
Channel
Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- acquisition
Point StringId - audio
Only StringTimecode Control - certificate
Mode String Setting to allow self signed or verified RTMP certificates.
- connection
Retry IntegerInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- event
Id String - event
Id StringMode - event
Stop StringBehavior - filecache
Duration Integer - fragment
Length Integer - input
Loss StringAction Controls the behavior of the RTMP group if input becomes unavailable.
- num
Retries Integer Number of retry attempts.
- restart
Delay Integer Number of seconds to wait until a restart is initiated.
- segmentation
Mode String - send
Delay IntegerMs - sparse
Track StringType - stream
Manifest StringBehavior - timestamp
Offset String - timestamp
Offset StringMode
- destination
Channel
Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- acquisition
Point stringId - audio
Only stringTimecode Control - certificate
Mode string Setting to allow self signed or verified RTMP certificates.
- connection
Retry numberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- event
Id string - event
Id stringMode - event
Stop stringBehavior - filecache
Duration number - fragment
Length number - input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- num
Retries number Number of retry attempts.
- restart
Delay number Number of seconds to wait until a restart is initiated.
- segmentation
Mode string - send
Delay numberMs - sparse
Track stringType - stream
Manifest stringBehavior - timestamp
Offset string - timestamp
Offset stringMode
- destination
Channel
Encoder Settings Output Group Output Group Settings Ms Smooth Group Settings Destination A director and base filename where archive files should be written. See Destination for more details.
- acquisition_
point_ strid - audio_
only_ strtimecode_ control - certificate_
mode str Setting to allow self signed or verified RTMP certificates.
- connection_
retry_ intinterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- event_
id str - event_
id_ strmode - event_
stop_ strbehavior - filecache_
duration int - fragment_
length int - input_
loss_ straction Controls the behavior of the RTMP group if input becomes unavailable.
- num_
retries int Number of retry attempts.
- restart_
delay int Number of seconds to wait until a restart is initiated.
- segmentation_
mode str - send_
delay_ intms - sparse_
track_ strtype - stream_
manifest_ strbehavior - timestamp_
offset str - timestamp_
offset_ strmode
- destination Property Map
A director and base filename where archive files should be written. See Destination for more details.
- acquisition
Point StringId - audio
Only StringTimecode Control - certificate
Mode String Setting to allow self signed or verified RTMP certificates.
- connection
Retry NumberInterval Number of seconds to wait before retrying connection to the flash media server if the connection is lost.
- event
Id String - event
Id StringMode - event
Stop StringBehavior - filecache
Duration Number - fragment
Length Number - input
Loss StringAction Controls the behavior of the RTMP group if input becomes unavailable.
- num
Retries Number Number of retry attempts.
- restart
Delay Number Number of seconds to wait until a restart is initiated.
- segmentation
Mode String - send
Delay NumberMs - sparse
Track StringType - stream
Manifest StringBehavior - timestamp
Offset String - timestamp
Offset StringMode
ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination
- Destination
Ref stringId Reference ID for the destination.
- Destination
Ref stringId Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
- destination
Ref stringId Reference ID for the destination.
- destination_
ref_ strid Reference ID for the destination.
- destination
Ref StringId Reference ID for the destination.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsRtmpGroupSettings
- Ad
Markers List<string> The ad marker type for this output group.
- Authentication
Scheme string Authentication scheme to use when connecting with CDN.
- Cache
Full stringBehavior Controls behavior when content cache fills up.
- Cache
Length int Cache length in seconds, is used to calculate buffer size.
- Caption
Data string Controls the types of data that passes to onCaptionInfo outputs.
- Input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- Ad
Markers []string The ad marker type for this output group.
- Authentication
Scheme string Authentication scheme to use when connecting with CDN.
- Cache
Full stringBehavior Controls behavior when content cache fills up.
- Cache
Length int Cache length in seconds, is used to calculate buffer size.
- Caption
Data string Controls the types of data that passes to onCaptionInfo outputs.
- Input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- Restart
Delay int Number of seconds to wait until a restart is initiated.
- ad
Markers List<String> The ad marker type for this output group.
- authentication
Scheme String Authentication scheme to use when connecting with CDN.
- cache
Full StringBehavior Controls behavior when content cache fills up.
- cache
Length Integer Cache length in seconds, is used to calculate buffer size.
- caption
Data String Controls the types of data that passes to onCaptionInfo outputs.
- input
Loss StringAction Controls the behavior of the RTMP group if input becomes unavailable.
- restart
Delay Integer Number of seconds to wait until a restart is initiated.
- ad
Markers string[] The ad marker type for this output group.
- authentication
Scheme string Authentication scheme to use when connecting with CDN.
- cache
Full stringBehavior Controls behavior when content cache fills up.
- cache
Length number Cache length in seconds, is used to calculate buffer size.
- caption
Data string Controls the types of data that passes to onCaptionInfo outputs.
- input
Loss stringAction Controls the behavior of the RTMP group if input becomes unavailable.
- restart
Delay number Number of seconds to wait until a restart is initiated.
- ad_
markers Sequence[str] The ad marker type for this output group.
- authentication_
scheme str Authentication scheme to use when connecting with CDN.
- cache_
full_ strbehavior Controls behavior when content cache fills up.
- cache_
length int Cache length in seconds, is used to calculate buffer size.
- caption_
data str Controls the types of data that passes to onCaptionInfo outputs.
- input_
loss_ straction Controls the behavior of the RTMP group if input becomes unavailable.
- restart_
delay int Number of seconds to wait until a restart is initiated.
- ad
Markers List<String> The ad marker type for this output group.
- authentication
Scheme String Authentication scheme to use when connecting with CDN.
- cache
Full StringBehavior Controls behavior when content cache fills up.
- cache
Length Number Cache length in seconds, is used to calculate buffer size.
- caption
Data String Controls the types of data that passes to onCaptionInfo outputs.
- input
Loss StringAction Controls the behavior of the RTMP group if input becomes unavailable.
- restart
Delay Number Number of seconds to wait until a restart is initiated.
ChannelEncoderSettingsOutputGroupOutputGroupSettingsUdpGroupSettings
- Input
Loss stringAction Specifies behavior of last resort when input video os lost.
- Timed
Metadata stringId3Frame Indicates ID3 frame that has the timecode.
- Timed
Metadata intId3Period
- Input
Loss stringAction Specifies behavior of last resort when input video os lost.
- Timed
Metadata stringId3Frame Indicates ID3 frame that has the timecode.
- Timed
Metadata intId3Period
- input
Loss StringAction Specifies behavior of last resort when input video os lost.
- timed
Metadata StringId3Frame Indicates ID3 frame that has the timecode.
- timed
Metadata IntegerId3Period
- input
Loss stringAction Specifies behavior of last resort when input video os lost.
- timed
Metadata stringId3Frame Indicates ID3 frame that has the timecode.
- timed
Metadata numberId3Period
- input_
loss_ straction Specifies behavior of last resort when input video os lost.
- timed_
metadata_ strid3_ frame Indicates ID3 frame that has the timecode.
- timed_
metadata_ intid3_ period
- input
Loss StringAction Specifies behavior of last resort when input video os lost.
- timed
Metadata StringId3Frame Indicates ID3 frame that has the timecode.
- timed
Metadata NumberId3Period
ChannelEncoderSettingsOutputGroupOutputOutputSettings
- Archive
Output ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Archive output settings. See Archive Output Settings for more details.
- Frame
Capture ChannelOutput Settings Encoder Settings Output Group Output Output Settings Frame Capture Output Settings - Hls
Output ChannelSettings Encoder Settings Output Group Output Output Settings Hls Output Settings - Media
Package ChannelOutput Settings Encoder Settings Output Group Output Output Settings Media Package Output Settings Media package output settings. This can be set as an empty block.
- Ms
Smooth ChannelOutput Settings Encoder Settings Output Group Output Output Settings Ms Smooth Output Settings - Multiplex
Output ChannelSettings Encoder Settings Output Group Output Output Settings Multiplex Output Settings Multiplex output settings. See Multiplex Output Settings for more details.
- Rtmp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Rtmp Output Settings RTMP output settings. See RTMP Output Settings for more details.
- Udp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Udp Output Settings UDP output settings. See UDP Output Settings for more details
- Archive
Output ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Archive output settings. See Archive Output Settings for more details.
- Frame
Capture ChannelOutput Settings Encoder Settings Output Group Output Output Settings Frame Capture Output Settings - Hls
Output ChannelSettings Encoder Settings Output Group Output Output Settings Hls Output Settings - Media
Package ChannelOutput Settings Encoder Settings Output Group Output Output Settings Media Package Output Settings Media package output settings. This can be set as an empty block.
- Ms
Smooth ChannelOutput Settings Encoder Settings Output Group Output Output Settings Ms Smooth Output Settings - Multiplex
Output ChannelSettings Encoder Settings Output Group Output Output Settings Multiplex Output Settings Multiplex output settings. See Multiplex Output Settings for more details.
- Rtmp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Rtmp Output Settings RTMP output settings. See RTMP Output Settings for more details.
- Udp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Udp Output Settings UDP output settings. See UDP Output Settings for more details
- archive
Output ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Archive output settings. See Archive Output Settings for more details.
- frame
Capture ChannelOutput Settings Encoder Settings Output Group Output Output Settings Frame Capture Output Settings - hls
Output ChannelSettings Encoder Settings Output Group Output Output Settings Hls Output Settings - media
Package ChannelOutput Settings Encoder Settings Output Group Output Output Settings Media Package Output Settings Media package output settings. This can be set as an empty block.
- ms
Smooth ChannelOutput Settings Encoder Settings Output Group Output Output Settings Ms Smooth Output Settings - multiplex
Output ChannelSettings Encoder Settings Output Group Output Output Settings Multiplex Output Settings Multiplex output settings. See Multiplex Output Settings for more details.
- rtmp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Rtmp Output Settings RTMP output settings. See RTMP Output Settings for more details.
- udp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Udp Output Settings UDP output settings. See UDP Output Settings for more details
- archive
Output ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Archive output settings. See Archive Output Settings for more details.
- frame
Capture ChannelOutput Settings Encoder Settings Output Group Output Output Settings Frame Capture Output Settings - hls
Output ChannelSettings Encoder Settings Output Group Output Output Settings Hls Output Settings - media
Package ChannelOutput Settings Encoder Settings Output Group Output Output Settings Media Package Output Settings Media package output settings. This can be set as an empty block.
- ms
Smooth ChannelOutput Settings Encoder Settings Output Group Output Output Settings Ms Smooth Output Settings - multiplex
Output ChannelSettings Encoder Settings Output Group Output Output Settings Multiplex Output Settings Multiplex output settings. See Multiplex Output Settings for more details.
- rtmp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Rtmp Output Settings RTMP output settings. See RTMP Output Settings for more details.
- udp
Output ChannelSettings Encoder Settings Output Group Output Output Settings Udp Output Settings UDP output settings. See UDP Output Settings for more details
- archive_
output_ Channelsettings Encoder Settings Output Group Output Output Settings Archive Output Settings Archive output settings. See Archive Output Settings for more details.
- frame_
capture_ Channeloutput_ settings Encoder Settings Output Group Output Output Settings Frame Capture Output Settings - hls_
output_ Channelsettings Encoder Settings Output Group Output Output Settings Hls Output Settings - media_
package_ Channeloutput_ settings Encoder Settings Output Group Output Output Settings Media Package Output Settings Media package output settings. This can be set as an empty block.
- ms_
smooth_ Channeloutput_ settings Encoder Settings Output Group Output Output Settings Ms Smooth Output Settings - multiplex_
output_ Channelsettings Encoder Settings Output Group Output Output Settings Multiplex Output Settings Multiplex output settings. See Multiplex Output Settings for more details.
- rtmp_
output_ Channelsettings Encoder Settings Output Group Output Output Settings Rtmp Output Settings RTMP output settings. See RTMP Output Settings for more details.
- udp_
output_ Channelsettings Encoder Settings Output Group Output Output Settings Udp Output Settings UDP output settings. See UDP Output Settings for more details
- archive
Output Property MapSettings Archive output settings. See Archive Output Settings for more details.
- frame
Capture Property MapOutput Settings - hls
Output Property MapSettings - media
Package Property MapOutput Settings Media package output settings. This can be set as an empty block.
- ms
Smooth Property MapOutput Settings - multiplex
Output Property MapSettings Multiplex output settings. See Multiplex Output Settings for more details.
- rtmp
Output Property MapSettings RTMP output settings. See RTMP Output Settings for more details.
- udp
Output Property MapSettings UDP output settings. See UDP Output Settings for more details
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettings
- Container
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Settings specific to the container type of the file. See Container Settings for more details.
- Extension string
Output file extension.
- Name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- Container
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Settings specific to the container type of the file. See Container Settings for more details.
- Extension string
Output file extension.
- Name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- container
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Settings specific to the container type of the file. See Container Settings for more details.
- extension String
Output file extension.
- name
Modifier String String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- container
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Settings specific to the container type of the file. See Container Settings for more details.
- extension string
Output file extension.
- name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- container_
settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Settings specific to the container type of the file. See Container Settings for more details.
- extension str
Output file extension.
- name_
modifier str String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- container
Settings Property Map Settings specific to the container type of the file. See Container Settings for more details.
- extension String
Output file extension.
- name
Modifier String String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettings
- M2ts
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings M2ts Settings. See M2ts Settings for more details.
- Raw
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Raw Settings Raw Settings. This can be set as an empty block.
- M2ts
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings M2ts Settings. See M2ts Settings for more details.
- Raw
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Raw Settings Raw Settings. This can be set as an empty block.
- m2ts
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings M2ts Settings. See M2ts Settings for more details.
- raw
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Raw Settings Raw Settings. This can be set as an empty block.
- m2ts
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings M2ts Settings. See M2ts Settings for more details.
- raw
Settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Raw Settings Raw Settings. This can be set as an empty block.
- m2ts_
settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings M2ts Settings. See M2ts Settings for more details.
- raw_
settings ChannelEncoder Settings Output Group Output Output Settings Archive Output Settings Container Settings Raw Settings Raw Settings. This can be set as an empty block.
- m2ts
Settings Property Map M2ts Settings. See M2ts Settings for more details.
- raw
Settings Property Map Raw Settings. This can be set as an empty block.
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettings
- Absent
Input stringAudio Behavior - Arib string
- Arib
Captions stringPid - Arib
Captions stringPid Control - Audio
Buffer stringModel - Audio
Frames intPer Pes - Audio
Pids string - Audio
Stream stringType - Bitrate int
Average bitrate in bits/second.
- Buffer
Model string - Cc
Descriptor string - Dvb
Nit ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Nit Settings - Dvb
Sdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Sdt Settings - Dvb
Sub stringPids - Dvb
Tdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Tdt Settings - Dvb
Teletext stringPid - Ebif string
- Ebp
Audio stringInterval - Ebp
Lookahead intMs - Ebp
Placement string - Ecm
Pid string - Es
Rate stringIn Pes - Etv
Platform stringPid - Etv
Signal stringPid - Fragment
Time double - Klv string
- Klv
Data stringPids - Nielsen
Id3Behavior string - Null
Packet doubleBitrate - Pat
Interval int - Pcr
Control string - Pcr
Period int - Pcr
Pid string - Pmt
Interval int - Pmt
Pid string - Program
Num int - Rate
Mode string - Scte27Pids string
- Scte35Control string
- Scte35Pid string
PID from which to read SCTE-35 messages.
- Segmentation
Markers string - Segmentation
Style string - Segmentation
Time double - Timed
Metadata stringBehavior - Timed
Metadata stringPid - Transport
Stream intId - Video
Pid string
- Absent
Input stringAudio Behavior - Arib string
- Arib
Captions stringPid - Arib
Captions stringPid Control - Audio
Buffer stringModel - Audio
Frames intPer Pes - Audio
Pids string - Audio
Stream stringType - Bitrate int
Average bitrate in bits/second.
- Buffer
Model string - Cc
Descriptor string - Dvb
Nit ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Nit Settings - Dvb
Sdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Sdt Settings - Dvb
Sub stringPids - Dvb
Tdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Tdt Settings - Dvb
Teletext stringPid - Ebif string
- Ebp
Audio stringInterval - Ebp
Lookahead intMs - Ebp
Placement string - Ecm
Pid string - Es
Rate stringIn Pes - Etv
Platform stringPid - Etv
Signal stringPid - Fragment
Time float64 - Klv string
- Klv
Data stringPids - Nielsen
Id3Behavior string - Null
Packet float64Bitrate - Pat
Interval int - Pcr
Control string - Pcr
Period int - Pcr
Pid string - Pmt
Interval int - Pmt
Pid string - Program
Num int - Rate
Mode string - Scte27Pids string
- Scte35Control string
- Scte35Pid string
PID from which to read SCTE-35 messages.
- Segmentation
Markers string - Segmentation
Style string - Segmentation
Time float64 - Timed
Metadata stringBehavior - Timed
Metadata stringPid - Transport
Stream intId - Video
Pid string
- absent
Input StringAudio Behavior - arib String
- arib
Captions StringPid - arib
Captions StringPid Control - audio
Buffer StringModel - audio
Frames IntegerPer Pes - audio
Pids String - audio
Stream StringType - bitrate Integer
Average bitrate in bits/second.
- buffer
Model String - cc
Descriptor String - dvb
Nit ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Nit Settings - dvb
Sdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Sdt Settings - dvb
Sub StringPids - dvb
Tdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Tdt Settings - dvb
Teletext StringPid - ebif String
- ebp
Audio StringInterval - ebp
Lookahead IntegerMs - ebp
Placement String - ecm
Pid String - es
Rate StringIn Pes - etv
Platform StringPid - etv
Signal StringPid - fragment
Time Double - klv String
- klv
Data StringPids - nielsen
Id3Behavior String - null
Packet DoubleBitrate - pat
Interval Integer - pcr
Control String - pcr
Period Integer - pcr
Pid String - pmt
Interval Integer - pmt
Pid String - program
Num Integer - rate
Mode String - scte27Pids String
- scte35Control String
- scte35Pid String
PID from which to read SCTE-35 messages.
- segmentation
Markers String - segmentation
Style String - segmentation
Time Double - timed
Metadata StringBehavior - timed
Metadata StringPid - transport
Stream IntegerId - video
Pid String
- absent
Input stringAudio Behavior - arib string
- arib
Captions stringPid - arib
Captions stringPid Control - audio
Buffer stringModel - audio
Frames numberPer Pes - audio
Pids string - audio
Stream stringType - bitrate number
Average bitrate in bits/second.
- buffer
Model string - cc
Descriptor string - dvb
Nit ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Nit Settings - dvb
Sdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Sdt Settings - dvb
Sub stringPids - dvb
Tdt ChannelSettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Tdt Settings - dvb
Teletext stringPid - ebif string
- ebp
Audio stringInterval - ebp
Lookahead numberMs - ebp
Placement string - ecm
Pid string - es
Rate stringIn Pes - etv
Platform stringPid - etv
Signal stringPid - fragment
Time number - klv string
- klv
Data stringPids - nielsen
Id3Behavior string - null
Packet numberBitrate - pat
Interval number - pcr
Control string - pcr
Period number - pcr
Pid string - pmt
Interval number - pmt
Pid string - program
Num number - rate
Mode string - scte27Pids string
- scte35Control string
- scte35Pid string
PID from which to read SCTE-35 messages.
- segmentation
Markers string - segmentation
Style string - segmentation
Time number - timed
Metadata stringBehavior - timed
Metadata stringPid - transport
Stream numberId - video
Pid string
- absent_
input_ straudio_ behavior - arib str
- arib_
captions_ strpid - arib_
captions_ strpid_ control - audio_
buffer_ strmodel - audio_
frames_ intper_ pes - audio_
pids str - audio_
stream_ strtype - bitrate int
Average bitrate in bits/second.
- buffer_
model str - cc_
descriptor str - dvb_
nit_ Channelsettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Nit Settings - dvb_
sdt_ Channelsettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Sdt Settings - dvb_
sub_ strpids - dvb_
tdt_ Channelsettings Encoder Settings Output Group Output Output Settings Archive Output Settings Container Settings M2ts Settings Dvb Tdt Settings - dvb_
teletext_ strpid - ebif str
- ebp_
audio_ strinterval - ebp_
lookahead_ intms - ebp_
placement str - ecm_
pid str - es_
rate_ strin_ pes - etv_
platform_ strpid - etv_
signal_ strpid - fragment_
time float - klv str
- klv_
data_ strpids - nielsen_
id3_ strbehavior - null_
packet_ floatbitrate - pat_
interval int - pcr_
control str - pcr_
period int - pcr_
pid str - pmt_
interval int - pmt_
pid str - program_
num int - rate_
mode str - scte27_
pids str - scte35_
control str - scte35_
pid str PID from which to read SCTE-35 messages.
- segmentation_
markers str - segmentation_
style str - segmentation_
time float - timed_
metadata_ strbehavior - timed_
metadata_ strpid - transport_
stream_ intid - video_
pid str
- absent
Input StringAudio Behavior - arib String
- arib
Captions StringPid - arib
Captions StringPid Control - audio
Buffer StringModel - audio
Frames NumberPer Pes - audio
Pids String - audio
Stream StringType - bitrate Number
Average bitrate in bits/second.
- buffer
Model String - cc
Descriptor String - dvb
Nit Property MapSettings - dvb
Sdt Property MapSettings - dvb
Sub StringPids - dvb
Tdt Property MapSettings - dvb
Teletext StringPid - ebif String
- ebp
Audio StringInterval - ebp
Lookahead NumberMs - ebp
Placement String - ecm
Pid String - es
Rate StringIn Pes - etv
Platform StringPid - etv
Signal StringPid - fragment
Time Number - klv String
- klv
Data StringPids - nielsen
Id3Behavior String - null
Packet NumberBitrate - pat
Interval Number - pcr
Control String - pcr
Period Number - pcr
Pid String - pmt
Interval Number - pmt
Pid String - program
Num Number - rate
Mode String - scte27Pids String
- scte35Control String
- scte35Pid String
PID from which to read SCTE-35 messages.
- segmentation
Markers String - segmentation
Style String - segmentation
Time Number - timed
Metadata StringBehavior - timed
Metadata StringPid - transport
Stream NumberId - video
Pid String
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsDvbNitSettings
- Network
Id int - Network
Name string - Rep
Interval int
- Network
Id int - Network
Name string - Rep
Interval int
- network
Id Integer - network
Name String - rep
Interval Integer
- network
Id number - network
Name string - rep
Interval number
- network_
id int - network_
name str - rep_
interval int
- network
Id Number - network
Name String - rep
Interval Number
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsDvbSdtSettings
- Output
Sdt string - Rep
Interval int - Service
Name string - Service
Provider stringName
- Output
Sdt string - Rep
Interval int - Service
Name string - Service
Provider stringName
- output
Sdt String - rep
Interval Integer - service
Name String - service
Provider StringName
- output
Sdt string - rep
Interval number - service
Name string - service
Provider stringName
- output_
sdt str - rep_
interval int - service_
name str - service_
provider_ strname
- output
Sdt String - rep
Interval Number - service
Name String - service
Provider StringName
ChannelEncoderSettingsOutputGroupOutputOutputSettingsArchiveOutputSettingsContainerSettingsM2tsSettingsDvbTdtSettings
- Rep
Interval int
- Rep
Interval int
- rep
Interval Integer
- rep
Interval number
- rep_
interval int
- rep
Interval Number
ChannelEncoderSettingsOutputGroupOutputOutputSettingsFrameCaptureOutputSettings
- Name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- Name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- name
Modifier String String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- name_
modifier str String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- name
Modifier String String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
ChannelEncoderSettingsOutputGroupOutputOutputSettingsHlsOutputSettings
- Hls
Settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings - H265Packaging
Type string - Name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- Segment
Modifier string
- Hls
Settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings - H265Packaging
Type string - Name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- Segment
Modifier string
- hls
Settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings - h265Packaging
Type String - name
Modifier String String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- segment
Modifier String
- hls
Settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings - h265Packaging
Type string - name
Modifier string String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- segment
Modifier string
- hls_
settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings - h265_
packaging_ strtype - name_
modifier str String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- segment_
modifier str
- hls
Settings Property Map - h265Packaging
Type String - name
Modifier String String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
- segment
Modifier String
ChannelEncoderSettingsOutputGroupOutputOutputSettingsHlsOutputSettingsHlsSettings
- Audio
Only ChannelHls Settings Encoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Audio Only Hls Settings - Fmp4Hls
Settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Fmp4Hls Settings - Frame
Capture ChannelHls Settings Encoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Frame Capture Hls Settings - Standard
Hls ChannelSettings Encoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Standard Hls Settings
- Audio
Only ChannelHls Settings Encoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Audio Only Hls Settings - Fmp4Hls
Settings ChannelEncoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Fmp4Hls Settings - Frame
Capture ChannelHls Settings Encoder Settings Output Group Output Output Settings Hls Output Settings Hls Settings Frame Capture Hls Settings