Try AWS Native preview for resources not in the classic version.
aws.medialive.Channel
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS MediaLive Channel.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
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/v6/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> Destinations for channel. See Destinations for more details.
- Encoder
Settings ChannelEncoder Settings Encoder settings. See Encoder Settings for more details.
- Input
Attachments List<ChannelInput Attachment> Input attachments for the channel. See Input Attachments for more details.
- Input
Specification ChannelInput Specification Specification of network and file inputs for the channel.
- Cdi
Input ChannelSpecification Cdi Input Specification 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 Maintenance settings for this channel. See Maintenance for more details.
- Name string
Name of the Channel.
The following arguments are optional:
- 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 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.
The following arguments are optional:
- 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> Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Encoder settings. See Encoder Settings for more details.
- input
Attachments List<ChannelInput Attachment> Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Specification of network and file inputs for the channel.
- cdi
Input ChannelSpecification Cdi Input Specification 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 Maintenance settings for this channel. See Maintenance for more details.
- name String
Name of the Channel.
The following arguments are optional:
- 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 Settings for the VPC outputs.
- channel
Class string Concise argument description.
- destinations
Channel
Destination[] Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Encoder settings. See Encoder Settings for more details.
- input
Attachments ChannelInput Attachment[] Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Specification of network and file inputs for the channel.
- cdi
Input ChannelSpecification Cdi Input Specification 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 Maintenance settings for this channel. See Maintenance for more details.
- name string
Name of the Channel.
The following arguments are optional:
- 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 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.
The following arguments are optional:
- 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.
The following arguments are optional:
- 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]
Please use
tags
instead.
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 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> Destinations for channel. See Destinations for more details.
- Encoder
Settings ChannelEncoder Settings Encoder settings. See Encoder Settings for more details.
- Input
Attachments List<ChannelInput Attachment> Input attachments for the channel. See Input Attachments for more details.
- Input
Specification ChannelInput Specification Specification of network and file inputs for the channel.
- Log
Level string The log level to write to Cloudwatch logs.
- Maintenance
Channel
Maintenance Maintenance settings for this channel. See Maintenance for more details.
- Name string
Name of the Channel.
The following arguments are optional:
- 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>
Please use
tags
instead.- Vpc
Channel
Vpc 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.
The following arguments are optional:
- 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
Please use
tags
instead.- Vpc
Channel
Vpc Args Settings for the VPC outputs.
- arn String
ARN of the Channel.
- cdi
Input ChannelSpecification Cdi Input Specification 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> Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Encoder settings. See Encoder Settings for more details.
- input
Attachments List<ChannelInput Attachment> Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Specification of network and file inputs for the channel.
- log
Level String The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Maintenance settings for this channel. See Maintenance for more details.
- name String
Name of the Channel.
The following arguments are optional:
- 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>
Please use
tags
instead.- vpc
Channel
Vpc Settings for the VPC outputs.
- arn string
ARN of the Channel.
- cdi
Input ChannelSpecification Cdi Input Specification 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[] Destinations for channel. See Destinations for more details.
- encoder
Settings ChannelEncoder Settings Encoder settings. See Encoder Settings for more details.
- input
Attachments ChannelInput Attachment[] Input attachments for the channel. See Input Attachments for more details.
- input
Specification ChannelInput Specification Specification of network and file inputs for the channel.
- log
Level string The log level to write to Cloudwatch logs.
- maintenance
Channel
Maintenance Maintenance settings for this channel. See Maintenance for more details.
- name string
Name of the Channel.
The following arguments are optional:
- 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}
Please use
tags
instead.- vpc
Channel
Vpc 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.
The following arguments are optional:
- 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]
Please use
tags
instead.- 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.
The following arguments are optional:
- 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>
Please use
tags
instead.- vpc Property Map
Settings for the VPC outputs.
Supporting Types
ChannelCdiInputSpecification, ChannelCdiInputSpecificationArgs
- 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, ChannelDestinationArgs
- 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, ChannelDestinationMediaPackageSettingArgs
- 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, ChannelDestinationMultiplexSettingsArgs
- 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, ChannelDestinationSettingArgs
- 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, ChannelEncoderSettingsArgs
- 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.
- Caption
Descriptions List<ChannelEncoder Settings Caption Description> Caption Descriptions. See Caption Descriptions for more details.
- Global
Configuration ChannelEncoder Settings Global Configuration Configuration settings that apply to the event as a whole. See Global Configuration for more details.
- Motion
Graphics ChannelConfiguration Encoder Settings Motion Graphics Configuration Settings for motion graphics. See Motion Graphics Configuration for more details.
- Nielsen
Configuration ChannelEncoder Settings Nielsen Configuration Nielsen configuration settings. See Nielsen Configuration 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.
- Caption
Descriptions []ChannelEncoder Settings Caption Description Caption Descriptions. See Caption Descriptions for more details.
- Global
Configuration ChannelEncoder Settings Global Configuration Configuration settings that apply to the event as a whole. See Global Configuration for more details.
- Motion
Graphics ChannelConfiguration Encoder Settings Motion Graphics Configuration Settings for motion graphics. See Motion Graphics Configuration for more details.
- Nielsen
Configuration ChannelEncoder Settings Nielsen Configuration Nielsen configuration settings. See Nielsen Configuration 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.
- caption
Descriptions List<ChannelEncoder Settings Caption Description> Caption Descriptions. See Caption Descriptions for more details.
- global
Configuration ChannelEncoder Settings Global Configuration Configuration settings that apply to the event as a whole. See Global Configuration for more details.
- motion
Graphics ChannelConfiguration Encoder Settings Motion Graphics Configuration Settings for motion graphics. See Motion Graphics Configuration for more details.
- nielsen
Configuration ChannelEncoder Settings Nielsen Configuration Nielsen configuration settings. See Nielsen Configuration 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.
- caption
Descriptions ChannelEncoder Settings Caption Description[] Caption Descriptions. See Caption Descriptions for more details.
- global
Configuration ChannelEncoder Settings Global Configuration Configuration settings that apply to the event as a whole. See Global Configuration for more details.
- motion
Graphics ChannelConfiguration Encoder Settings Motion Graphics Configuration Settings for motion graphics. See Motion Graphics Configuration for more details.
- nielsen
Configuration ChannelEncoder Settings Nielsen Configuration Nielsen configuration settings. See Nielsen Configuration 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.
- caption_
descriptions Sequence[ChannelEncoder Settings Caption Description] Caption Descriptions. See Caption Descriptions for more details.
- global_
configuration ChannelEncoder Settings Global Configuration Configuration settings that apply to the event as a whole. See Global Configuration for more details.
- motion_
graphics_ Channelconfiguration Encoder Settings Motion Graphics Configuration Settings for motion graphics. See Motion Graphics Configuration for more details.
- nielsen_
configuration ChannelEncoder Settings Nielsen Configuration Nielsen configuration settings. See Nielsen Configuration 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.
- caption
Descriptions List<Property Map> Caption Descriptions. See Caption Descriptions for more details.
- global
Configuration Property Map Configuration settings that apply to the event as a whole. See Global Configuration for more details.
- motion
Graphics Property MapConfiguration Settings for motion graphics. See Motion Graphics Configuration for more details.
- nielsen
Configuration Property Map Nielsen configuration settings. See Nielsen Configuration for more details.
- video
Descriptions List<Property Map> Video Descriptions. See Video Descriptions for more details.
ChannelEncoderSettingsAudioDescription, ChannelEncoderSettingsAudioDescriptionArgs
- 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 Selects a specific three-letter language code from within an audio 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 Selects a specific three-letter language code from within an audio 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 Selects a specific three-letter language code from within an audio 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 Selects a specific three-letter language code from within an audio 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 Selects a specific three-letter language code from within an audio 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 Selects a specific three-letter language code from within an audio source.
- language
Code StringControl - remix
Settings Property Map - stream
Name String Stream name RTMP destinations (URLs of type rtmp://)
ChannelEncoderSettingsAudioDescriptionAudioNormalizationSettings, ChannelEncoderSettingsAudioDescriptionAudioNormalizationSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsArgs
ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettings, ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettingsNielsenCbetSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionAudioWatermarkSettingsNielsenWatermarksSettingsNielsenNaesIiNwSettingArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsAacSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsAc3SettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3AtmosSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsEac3SettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsMp2SettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionCodecSettingsWavSettingsArgs
- 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, ChannelEncoderSettingsAudioDescriptionRemixSettingsArgs
- channel
Mappings List<Property Map> - channels
In Number - channels
Out Number
ChannelEncoderSettingsAudioDescriptionRemixSettingsChannelMapping, ChannelEncoderSettingsAudioDescriptionRemixSettingsChannelMappingArgs
ChannelEncoderSettingsAudioDescriptionRemixSettingsChannelMappingInputChannelLevel, ChannelEncoderSettingsAudioDescriptionRemixSettingsChannelMappingInputChannelLevelArgs
- 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, ChannelEncoderSettingsAvailBlankingArgs
- 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, ChannelEncoderSettingsAvailBlankingAvailBlankingImageArgs
- 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.
ChannelEncoderSettingsCaptionDescription, ChannelEncoderSettingsCaptionDescriptionArgs
- Caption
Selector stringName Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
- Name string
Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
- Accessibility string
Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
- Destination
Settings ChannelEncoder Settings Caption Description Destination Settings Additional settings for captions destination that depend on the destination type. See Destination Settings for more details.
- Language
Code string ISO 639-2 three-digit code.
- Language
Description string Human readable information to indicate captions available for players (eg. English, or Spanish).
- Caption
Selector stringName Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
- Name string
Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
- Accessibility string
Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
- Destination
Settings ChannelEncoder Settings Caption Description Destination Settings Additional settings for captions destination that depend on the destination type. See Destination Settings for more details.
- Language
Code string ISO 639-2 three-digit code.
- Language
Description string Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption
Selector StringName Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
- name String
Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
- accessibility String
Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
- destination
Settings ChannelEncoder Settings Caption Description Destination Settings Additional settings for captions destination that depend on the destination type. See Destination Settings for more details.
- language
Code String ISO 639-2 three-digit code.
- language
Description String Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption
Selector stringName Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
- name string
Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
- accessibility string
Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
- destination
Settings ChannelEncoder Settings Caption Description Destination Settings Additional settings for captions destination that depend on the destination type. See Destination Settings for more details.
- language
Code string ISO 639-2 three-digit code.
- language
Description string Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption_
selector_ strname Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
- name str
Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
- accessibility str
Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
- destination_
settings ChannelEncoder Settings Caption Description Destination Settings Additional settings for captions destination that depend on the destination type. See Destination Settings for more details.
- language_
code str ISO 639-2 three-digit code.
- language_
description str Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption
Selector StringName Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
- name String
Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
- accessibility String
Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
- destination
Settings Property Map Additional settings for captions destination that depend on the destination type. See Destination Settings for more details.
- language
Code String ISO 639-2 three-digit code.
- language
Description String Human readable information to indicate captions available for players (eg. English, or Spanish).
ChannelEncoderSettingsCaptionDescriptionDestinationSettings, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsArgs
- Arib
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Arib Destination Settings Arib Destination Settings.
- Burn
In ChannelDestination Settings Encoder Settings Caption Description Destination Settings Burn In Destination Settings Burn In Destination Settings. See Burn In Destination Settings for more details.
- Dvb
Sub ChannelDestination Settings Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings DVB Sub Destination Settings. See DVB Sub Destination Settings for more details.
- Ebu
Tt ChannelDDestination Settings Encoder Settings Caption Description Destination Settings Ebu Tt DDestination Settings EBU TT D Destination Settings. See EBU TT D Destination Settings for more details.
- Embedded
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Embedded Destination Settings Embedded Destination Settings.
- Embedded
Plus ChannelScte20Destination Settings Encoder Settings Caption Description Destination Settings Embedded Plus Scte20Destination Settings Embedded Plus SCTE20 Destination Settings.
- Rtmp
Caption ChannelInfo Destination Settings Encoder Settings Caption Description Destination Settings Rtmp Caption Info Destination Settings RTMP Caption Info Destination Settings.
- Scte20Plus
Embedded ChannelDestination Settings Encoder Settings Caption Description Destination Settings Scte20Plus Embedded Destination Settings SCTE20 Plus Embedded Destination Settings.
- Scte27Destination
Settings ChannelEncoder Settings Caption Description Destination Settings Scte27Destination Settings SCTE27 Destination Settings.
- Smpte
Tt ChannelDestination Settings Encoder Settings Caption Description Destination Settings Smpte Tt Destination Settings SMPTE TT Destination Settings.
- Teletext
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Teletext Destination Settings Teletext Destination Settings.
- Ttml
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Ttml Destination Settings TTML Destination Settings. See TTML Destination Settings for more details.
- Webvtt
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Webvtt Destination Settings WebVTT Destination Settings. See WebVTT Destination Settings for more details.
- Arib
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Arib Destination Settings Arib Destination Settings.
- Burn
In ChannelDestination Settings Encoder Settings Caption Description Destination Settings Burn In Destination Settings Burn In Destination Settings. See Burn In Destination Settings for more details.
- Dvb
Sub ChannelDestination Settings Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings DVB Sub Destination Settings. See DVB Sub Destination Settings for more details.
- Ebu
Tt ChannelDDestination Settings Encoder Settings Caption Description Destination Settings Ebu Tt DDestination Settings EBU TT D Destination Settings. See EBU TT D Destination Settings for more details.
- Embedded
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Embedded Destination Settings Embedded Destination Settings.
- Embedded
Plus ChannelScte20Destination Settings Encoder Settings Caption Description Destination Settings Embedded Plus Scte20Destination Settings Embedded Plus SCTE20 Destination Settings.
- Rtmp
Caption ChannelInfo Destination Settings Encoder Settings Caption Description Destination Settings Rtmp Caption Info Destination Settings RTMP Caption Info Destination Settings.
- Scte20Plus
Embedded ChannelDestination Settings Encoder Settings Caption Description Destination Settings Scte20Plus Embedded Destination Settings SCTE20 Plus Embedded Destination Settings.
- Scte27Destination
Settings ChannelEncoder Settings Caption Description Destination Settings Scte27Destination Settings SCTE27 Destination Settings.
- Smpte
Tt ChannelDestination Settings Encoder Settings Caption Description Destination Settings Smpte Tt Destination Settings SMPTE TT Destination Settings.
- Teletext
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Teletext Destination Settings Teletext Destination Settings.
- Ttml
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Ttml Destination Settings TTML Destination Settings. See TTML Destination Settings for more details.
- Webvtt
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Webvtt Destination Settings WebVTT Destination Settings. See WebVTT Destination Settings for more details.
- arib
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Arib Destination Settings Arib Destination Settings.
- burn
In ChannelDestination Settings Encoder Settings Caption Description Destination Settings Burn In Destination Settings Burn In Destination Settings. See Burn In Destination Settings for more details.
- dvb
Sub ChannelDestination Settings Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings DVB Sub Destination Settings. See DVB Sub Destination Settings for more details.
- ebu
Tt ChannelDDestination Settings Encoder Settings Caption Description Destination Settings Ebu Tt DDestination Settings EBU TT D Destination Settings. See EBU TT D Destination Settings for more details.
- embedded
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Embedded Destination Settings Embedded Destination Settings.
- embedded
Plus ChannelScte20Destination Settings Encoder Settings Caption Description Destination Settings Embedded Plus Scte20Destination Settings Embedded Plus SCTE20 Destination Settings.
- rtmp
Caption ChannelInfo Destination Settings Encoder Settings Caption Description Destination Settings Rtmp Caption Info Destination Settings RTMP Caption Info Destination Settings.
- scte20Plus
Embedded ChannelDestination Settings Encoder Settings Caption Description Destination Settings Scte20Plus Embedded Destination Settings SCTE20 Plus Embedded Destination Settings.
- scte27Destination
Settings ChannelEncoder Settings Caption Description Destination Settings Scte27Destination Settings SCTE27 Destination Settings.
- smpte
Tt ChannelDestination Settings Encoder Settings Caption Description Destination Settings Smpte Tt Destination Settings SMPTE TT Destination Settings.
- teletext
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Teletext Destination Settings Teletext Destination Settings.
- ttml
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Ttml Destination Settings TTML Destination Settings. See TTML Destination Settings for more details.
- webvtt
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Webvtt Destination Settings WebVTT Destination Settings. See WebVTT Destination Settings for more details.
- arib
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Arib Destination Settings Arib Destination Settings.
- burn
In ChannelDestination Settings Encoder Settings Caption Description Destination Settings Burn In Destination Settings Burn In Destination Settings. See Burn In Destination Settings for more details.
- dvb
Sub ChannelDestination Settings Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings DVB Sub Destination Settings. See DVB Sub Destination Settings for more details.
- ebu
Tt ChannelDDestination Settings Encoder Settings Caption Description Destination Settings Ebu Tt DDestination Settings EBU TT D Destination Settings. See EBU TT D Destination Settings for more details.
- embedded
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Embedded Destination Settings Embedded Destination Settings.
- embedded
Plus ChannelScte20Destination Settings Encoder Settings Caption Description Destination Settings Embedded Plus Scte20Destination Settings Embedded Plus SCTE20 Destination Settings.
- rtmp
Caption ChannelInfo Destination Settings Encoder Settings Caption Description Destination Settings Rtmp Caption Info Destination Settings RTMP Caption Info Destination Settings.
- scte20Plus
Embedded ChannelDestination Settings Encoder Settings Caption Description Destination Settings Scte20Plus Embedded Destination Settings SCTE20 Plus Embedded Destination Settings.
- scte27Destination
Settings ChannelEncoder Settings Caption Description Destination Settings Scte27Destination Settings SCTE27 Destination Settings.
- smpte
Tt ChannelDestination Settings Encoder Settings Caption Description Destination Settings Smpte Tt Destination Settings SMPTE TT Destination Settings.
- teletext
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Teletext Destination Settings Teletext Destination Settings.
- ttml
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Ttml Destination Settings TTML Destination Settings. See TTML Destination Settings for more details.
- webvtt
Destination ChannelSettings Encoder Settings Caption Description Destination Settings Webvtt Destination Settings WebVTT Destination Settings. See WebVTT Destination Settings for more details.
- arib_
destination_ Channelsettings Encoder Settings Caption Description Destination Settings Arib Destination Settings Arib Destination Settings.
- burn_
in_ Channeldestination_ settings Encoder Settings Caption Description Destination Settings Burn In Destination Settings Burn In Destination Settings. See Burn In Destination Settings for more details.
- dvb_
sub_ Channeldestination_ settings Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings DVB Sub Destination Settings. See DVB Sub Destination Settings for more details.
- ebu_
tt_ Channeld_ destination_ settings Encoder Settings Caption Description Destination Settings Ebu Tt DDestination Settings EBU TT D Destination Settings. See EBU TT D Destination Settings for more details.
- embedded_
destination_ Channelsettings Encoder Settings Caption Description Destination Settings Embedded Destination Settings Embedded Destination Settings.
- embedded_
plus_ Channelscte20_ destination_ settings Encoder Settings Caption Description Destination Settings Embedded Plus Scte20Destination Settings Embedded Plus SCTE20 Destination Settings.
- rtmp_
caption_ Channelinfo_ destination_ settings Encoder Settings Caption Description Destination Settings Rtmp Caption Info Destination Settings RTMP Caption Info Destination Settings.
- scte20_
plus_ Channelembedded_ destination_ settings Encoder Settings Caption Description Destination Settings Scte20Plus Embedded Destination Settings SCTE20 Plus Embedded Destination Settings.
- scte27_
destination_ Channelsettings Encoder Settings Caption Description Destination Settings Scte27Destination Settings SCTE27 Destination Settings.
- smpte_
tt_ Channeldestination_ settings Encoder Settings Caption Description Destination Settings Smpte Tt Destination Settings SMPTE TT Destination Settings.
- teletext_
destination_ Channelsettings Encoder Settings Caption Description Destination Settings Teletext Destination Settings Teletext Destination Settings.
- ttml_
destination_ Channelsettings Encoder Settings Caption Description Destination Settings Ttml Destination Settings TTML Destination Settings. See TTML Destination Settings for more details.
- webvtt_
destination_ Channelsettings Encoder Settings Caption Description Destination Settings Webvtt Destination Settings WebVTT Destination Settings. See WebVTT Destination Settings for more details.
- arib
Destination Property MapSettings Arib Destination Settings.
- burn
In Property MapDestination Settings Burn In Destination Settings. See Burn In Destination Settings for more details.
- dvb
Sub Property MapDestination Settings DVB Sub Destination Settings. See DVB Sub Destination Settings for more details.
- ebu
Tt Property MapDDestination Settings EBU TT D Destination Settings. See EBU TT D Destination Settings for more details.
- embedded
Destination Property MapSettings Embedded Destination Settings.
- embedded
Plus Property MapScte20Destination Settings Embedded Plus SCTE20 Destination Settings.
- rtmp
Caption Property MapInfo Destination Settings RTMP Caption Info Destination Settings.
- scte20Plus
Embedded Property MapDestination Settings SCTE20 Plus Embedded Destination Settings.
- scte27Destination
Settings Property Map SCTE27 Destination Settings.
- smpte
Tt Property MapDestination Settings SMPTE TT Destination Settings.
- teletext
Destination Property MapSettings Teletext Destination Settings.
- ttml
Destination Property MapSettings TTML Destination Settings. See TTML Destination Settings for more details.
- webvtt
Destination Property MapSettings WebVTT Destination Settings. See WebVTT Destination Settings for more details.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsBurnInDestinationSettings, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsBurnInDestinationSettingsArgs
- Outline
Color string Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Teletext
Grid stringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- Alignment string
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
- Background
Color string Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- Background
Opacity int Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Font
Channel
Encoder Settings Caption Description Destination Settings Burn In Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- Font
Color string Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Font
Opacity int Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- Font
Resolution int Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- Font
Size string When set to ‘auto’ fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- Outline
Size int Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Shadow
Color string Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- Shadow
Opacity int Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Shadow
XOffset int Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- Shadow
YOffset int Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- XPosition int
Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
- YPosition int
Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
- Outline
Color string Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Teletext
Grid stringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- Alignment string
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
- Background
Color string Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- Background
Opacity int Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Font
Channel
Encoder Settings Caption Description Destination Settings Burn In Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- Font
Color string Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Font
Opacity int Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- Font
Resolution int Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- Font
Size string When set to ‘auto’ fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- Outline
Size int Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Shadow
Color string Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- Shadow
Opacity int Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Shadow
XOffset int Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- Shadow
YOffset int Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- XPosition int
Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
- YPosition int
Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
- outline
Color String Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- teletext
Grid StringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- alignment String
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
- background
Color String Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background
Opacity Integer Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font
Channel
Encoder Settings Caption Description Destination Settings Burn In Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font
Color String Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font
Opacity Integer Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font
Resolution Integer Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font
Size String When set to ‘auto’ fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline
Size Integer Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow
Color String Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow
Opacity Integer Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow
XOffset Integer Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow
YOffset Integer Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- x
Position Integer Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
- y
Position Integer Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
- outline
Color string Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- teletext
Grid stringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- alignment string
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
- background
Color string Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background
Opacity number Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font
Channel
Encoder Settings Caption Description Destination Settings Burn In Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font
Color string Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font
Opacity number Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font
Resolution number Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font
Size string When set to ‘auto’ fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline
Size number Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow
Color string Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow
Opacity number Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow
XOffset number Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow
YOffset number Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- x
Position number Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
- y
Position number Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
- outline_
color str Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- teletext_
grid_ strcontrol Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- alignment str
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
- background_
color str Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background_
opacity int Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font
Channel
Encoder Settings Caption Description Destination Settings Burn In Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font_
color str Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font_
opacity int Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font_
resolution int Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font_
size str When set to ‘auto’ fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline_
size int Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow_
color str Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow_
opacity int Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow_
x_ intoffset Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow_
y_ intoffset Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- x_
position int Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
- y_
position int Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
- outline
Color String Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- teletext
Grid StringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- alignment String
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
- background
Color String Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background
Opacity Number Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font Property Map
External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font
Color String Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font
Opacity Number Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font
Resolution Number Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font
Size String When set to ‘auto’ fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline
Size Number Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow
Color String Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow
Opacity Number Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow
XOffset Number Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow
YOffset Number Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- x
Position Number Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
- y
Position Number Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsBurnInDestinationSettingsFont, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsBurnInDestinationSettingsFontArgs
- 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.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsDvbSubDestinationSettings, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsDvbSubDestinationSettingsArgs
- Alignment string
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Background
Color string Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- Background
Opacity int Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Font
Channel
Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- Font
Color string Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Font
Opacity int Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- Font
Resolution int Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- Font
Size string When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- Outline
Color string Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Outline
Size int Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Shadow
Color string Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- Shadow
Opacity int Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Shadow
XOffset int Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- Shadow
YOffset int Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- Teletext
Grid stringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- XPosition int
Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- YPosition int
Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Alignment string
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Background
Color string Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- Background
Opacity int Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Font
Channel
Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- Font
Color string Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Font
Opacity int Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- Font
Resolution int Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- Font
Size string When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- Outline
Color string Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Outline
Size int Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- Shadow
Color string Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- Shadow
Opacity int Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- Shadow
XOffset int Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- Shadow
YOffset int Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- Teletext
Grid stringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- XPosition int
Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- YPosition int
Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- alignment String
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- background
Color String Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background
Opacity Integer Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font
Channel
Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font
Color String Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font
Opacity Integer Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font
Resolution Integer Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font
Size String When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline
Color String Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- outline
Size Integer Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow
Color String Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow
Opacity Integer Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow
XOffset Integer Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow
YOffset Integer Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- teletext
Grid StringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- x
Position Integer Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- y
Position Integer Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- alignment string
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- background
Color string Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background
Opacity number Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font
Channel
Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font
Color string Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font
Opacity number Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font
Resolution number Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font
Size string When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline
Color string Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- outline
Size number Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow
Color string Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow
Opacity number Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow
XOffset number Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow
YOffset number Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- teletext
Grid stringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- x
Position number Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- y
Position number Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- alignment str
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- background_
color str Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background_
opacity int Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font
Channel
Encoder Settings Caption Description Destination Settings Dvb Sub Destination Settings Font External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font_
color str Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font_
opacity int Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font_
resolution int Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font_
size str When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline_
color str Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- outline_
size int Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow_
color str Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow_
opacity int Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow_
x_ intoffset Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow_
y_ intoffset Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- teletext_
grid_ strcontrol Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- x_
position int Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- y_
position int Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- alignment String
If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting “smart” justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- background
Color String Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
- background
Opacity Number Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- font Property Map
External font file used for caption burn-in. File extension must be ‘ttf’ or ‘tte’. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match. See Font for more details.
- font
Color String Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- font
Opacity Number Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
- font
Resolution Number Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
- font
Size String When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
- outline
Color String Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- outline
Size Number Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- shadow
Color String Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
- shadow
Opacity Number Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
- shadow
XOffset Number Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
- shadow
YOffset Number Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
- teletext
Grid StringControl Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
- x
Position Number Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
- y
Position Number Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsDvbSubDestinationSettingsFont, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsDvbSubDestinationSettingsFontArgs
- 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.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsEbuTtDDestinationSettings, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsEbuTtDDestinationSettingsArgs
- Copyright
Holder string Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
- Fill
Line stringGap Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
- Font
Family string Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to “monospaced”. (If styleControl is set to exclude, the font family is always set to “monospaced”.) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
- Style
Control string Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to “monospaced”. Do not include any other style information.
- Copyright
Holder string Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
- Fill
Line stringGap Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
- Font
Family string Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to “monospaced”. (If styleControl is set to exclude, the font family is always set to “monospaced”.) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
- Style
Control string Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to “monospaced”. Do not include any other style information.
- copyright
Holder String Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
- fill
Line StringGap Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
- font
Family String Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to “monospaced”. (If styleControl is set to exclude, the font family is always set to “monospaced”.) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
- style
Control String Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to “monospaced”. Do not include any other style information.
- copyright
Holder string Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
- fill
Line stringGap Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
- font
Family string Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to “monospaced”. (If styleControl is set to exclude, the font family is always set to “monospaced”.) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
- style
Control string Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to “monospaced”. Do not include any other style information.
- copyright_
holder str Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
- fill_
line_ strgap Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
- font_
family str Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to “monospaced”. (If styleControl is set to exclude, the font family is always set to “monospaced”.) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
- style_
control str Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to “monospaced”. Do not include any other style information.
- copyright
Holder String Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata.
- fill
Line StringGap Specifies how to handle the gap between the lines (in multi-line captions). - enabled: Fill with the captions background color (as specified in the input captions). - disabled: Leave the gap unfilled.
- font
Family String Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to “monospaced”. (If styleControl is set to exclude, the font family is always set to “monospaced”.) You specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size. - Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as “Arial”), or a generic font family (such as “serif”), or “default” (to let the downstream player choose the font). - Leave blank to set the family to “monospace”.
- style
Control String Specifies the style information (font color, font position, and so on) to include in the font data that is attached to the EBU-TT captions. - include: Take the style information (font color, font position, and so on) from the source captions and include that information in the font data attached to the EBU-TT captions. This option is valid only if the source captions are Embedded or Teletext. - exclude: In the font data attached to the EBU-TT captions, set the font family to “monospaced”. Do not include any other style information.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsTtmlDestinationSettings, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsTtmlDestinationSettingsArgs
- Style
Control string This field is not currently supported and will not affect the output styling. Leave the default value.
- Style
Control string This field is not currently supported and will not affect the output styling. Leave the default value.
- style
Control String This field is not currently supported and will not affect the output styling. Leave the default value.
- style
Control string This field is not currently supported and will not affect the output styling. Leave the default value.
- style_
control str This field is not currently supported and will not affect the output styling. Leave the default value.
- style
Control String This field is not currently supported and will not affect the output styling. Leave the default value.
ChannelEncoderSettingsCaptionDescriptionDestinationSettingsWebvttDestinationSettings, ChannelEncoderSettingsCaptionDescriptionDestinationSettingsWebvttDestinationSettingsArgs
- Style
Control string Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don’t pass through the style. The output captions will not contain any font styling information.
- Style
Control string Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don’t pass through the style. The output captions will not contain any font styling information.
- style
Control String Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don’t pass through the style. The output captions will not contain any font styling information.
- style
Control string Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don’t pass through the style. The output captions will not contain any font styling information.
- style_
control str Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don’t pass through the style. The output captions will not contain any font styling information.
- style
Control String Controls whether the color and position of the source captions is passed through to the WebVTT output captions. PASSTHROUGH - Valid only if the source captions are EMBEDDED or TELETEXT. NO_STYLE_DATA - Don’t pass through the style. The output captions will not contain any font styling information.
ChannelEncoderSettingsGlobalConfiguration, ChannelEncoderSettingsGlobalConfigurationArgs
- Initial
Audio intGain Value to set the initial audio gain for the Live Event.
- Input
End stringAction Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When “none” is configured the encoder will transcode either black, a solid color, or a user specified slate images per the “Input Loss Behavior” configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
- Input
Loss ChannelBehavior Encoder Settings Global Configuration Input Loss Behavior Settings for system actions when input is lost. See Input Loss Behavior for more details.
- Output
Locking stringMode Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
- Output
Timing stringSource Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
- Support
Low stringFramerate Inputs Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
- Initial
Audio intGain Value to set the initial audio gain for the Live Event.
- Input
End stringAction Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When “none” is configured the encoder will transcode either black, a solid color, or a user specified slate images per the “Input Loss Behavior” configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
- Input
Loss ChannelBehavior Encoder Settings Global Configuration Input Loss Behavior Settings for system actions when input is lost. See Input Loss Behavior for more details.
- Output
Locking stringMode Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
- Output
Timing stringSource Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
- Support
Low stringFramerate Inputs Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
- initial
Audio IntegerGain Value to set the initial audio gain for the Live Event.
- input
End StringAction Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When “none” is configured the encoder will transcode either black, a solid color, or a user specified slate images per the “Input Loss Behavior” configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
- input
Loss ChannelBehavior Encoder Settings Global Configuration Input Loss Behavior Settings for system actions when input is lost. See Input Loss Behavior for more details.
- output
Locking StringMode Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
- output
Timing StringSource Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
- support
Low StringFramerate Inputs Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
- initial
Audio numberGain Value to set the initial audio gain for the Live Event.
- input
End stringAction Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When “none” is configured the encoder will transcode either black, a solid color, or a user specified slate images per the “Input Loss Behavior” configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
- input
Loss ChannelBehavior Encoder Settings Global Configuration Input Loss Behavior Settings for system actions when input is lost. See Input Loss Behavior for more details.
- output
Locking stringMode Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
- output
Timing stringSource Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
- support
Low stringFramerate Inputs Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
- initial_
audio_ intgain Value to set the initial audio gain for the Live Event.
- input_
end_ straction Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When “none” is configured the encoder will transcode either black, a solid color, or a user specified slate images per the “Input Loss Behavior” configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
- input_
loss_ Channelbehavior Encoder Settings Global Configuration Input Loss Behavior Settings for system actions when input is lost. See Input Loss Behavior for more details.
- output_
locking_ strmode Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
- output_
timing_ strsource Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
- support_
low_ strframerate_ inputs Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
- initial
Audio NumberGain Value to set the initial audio gain for the Live Event.
- input
End StringAction Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When “none” is configured the encoder will transcode either black, a solid color, or a user specified slate images per the “Input Loss Behavior” configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
- input
Loss Property MapBehavior Settings for system actions when input is lost. See Input Loss Behavior for more details.
- output
Locking StringMode Indicates how MediaLive pipelines are synchronized. PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other. EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
- output
Timing StringSource Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
- support
Low StringFramerate Inputs Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
ChannelEncoderSettingsGlobalConfigurationInputLossBehavior, ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorArgs
- black
Frame NumberMsec - input
Loss StringImage Color - input
Loss Property MapImage Slate - input
Loss StringImage Type - repeat
Frame NumberMsec
ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlate, ChannelEncoderSettingsGlobalConfigurationInputLossBehaviorInputLossImageSlateArgs
- 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.
ChannelEncoderSettingsMotionGraphicsConfiguration, ChannelEncoderSettingsMotionGraphicsConfigurationArgs
- Motion
Graphics ChannelSettings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Motion Graphics Settings. See Motion Graphics Settings for more details.
- Motion
Graphics stringInsertion Motion Graphics Insertion.
- Motion
Graphics ChannelSettings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Motion Graphics Settings. See Motion Graphics Settings for more details.
- Motion
Graphics stringInsertion Motion Graphics Insertion.
- motion
Graphics ChannelSettings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Motion Graphics Settings. See Motion Graphics Settings for more details.
- motion
Graphics StringInsertion Motion Graphics Insertion.
- motion
Graphics ChannelSettings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Motion Graphics Settings. See Motion Graphics Settings for more details.
- motion
Graphics stringInsertion Motion Graphics Insertion.
- motion_
graphics_ Channelsettings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Motion Graphics Settings. See Motion Graphics Settings for more details.
- motion_
graphics_ strinsertion Motion Graphics Insertion.
- motion
Graphics Property MapSettings Motion Graphics Settings. See Motion Graphics Settings for more details.
- motion
Graphics StringInsertion Motion Graphics Insertion.
ChannelEncoderSettingsMotionGraphicsConfigurationMotionGraphicsSettings, ChannelEncoderSettingsMotionGraphicsConfigurationMotionGraphicsSettingsArgs
- Html
Motion ChannelGraphics Settings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Html Motion Graphics Settings Html Motion Graphics Settings.
- Html
Motion ChannelGraphics Settings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Html Motion Graphics Settings Html Motion Graphics Settings.
- html
Motion ChannelGraphics Settings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Html Motion Graphics Settings Html Motion Graphics Settings.
- html
Motion ChannelGraphics Settings Encoder Settings Motion Graphics Configuration Motion Graphics Settings Html Motion Graphics Settings Html Motion Graphics Settings.
- html
Motion Property MapGraphics Settings Html Motion Graphics Settings.
ChannelEncoderSettingsNielsenConfiguration, ChannelEncoderSettingsNielsenConfigurationArgs
- Distributor
Id string Enter the Distributor ID assigned to your organization by Nielsen.
- Nielsen
Pcm stringTo Id3Tagging Enables Nielsen PCM to ID3 tagging.
- Distributor
Id string Enter the Distributor ID assigned to your organization by Nielsen.
- Nielsen
Pcm stringTo Id3Tagging Enables Nielsen PCM to ID3 tagging.
- distributor
Id String Enter the Distributor ID assigned to your organization by Nielsen.
- nielsen
Pcm StringTo Id3Tagging Enables Nielsen PCM to ID3 tagging.
- distributor
Id string Enter the Distributor ID assigned to your organization by Nielsen.
- nielsen
Pcm stringTo Id3Tagging Enables Nielsen PCM to ID3 tagging.
- distributor_
id str Enter the Distributor ID assigned to your organization by Nielsen.
- nielsen_
pcm_ strto_ id3_ tagging Enables Nielsen PCM to ID3 tagging.
- distributor
Id String Enter the Distributor ID assigned to your organization by Nielsen.
- nielsen
Pcm StringTo Id3Tagging Enables Nielsen PCM to ID3 tagging.
ChannelEncoderSettingsOutputGroup, ChannelEncoderSettingsOutputGroupArgs
- 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, ChannelEncoderSettingsOutputGroupOutputArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArchiveCdnSettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingArchiveCdnSettingsArchiveS3SettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsArchiveGroupSettingDestinationArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsDestinationArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsFrameCaptureCdnSettingsArgs
ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsFrameCaptureCdnSettingsFrameCaptureS3Settings, ChannelEncoderSettingsOutputGroupOutputGroupSettingsFrameCaptureGroupSettingsFrameCaptureCdnSettingsFrameCaptureS3SettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsCaptionLanguageMappingArgs
- Caption
Channel int - Language
Code string Selects a specific three-letter language code from within an audio source.
- Language
Description string Human readable information to indicate captions available for players (eg. English, or Spanish).
- Caption
Channel int - Language
Code string Selects a specific three-letter language code from within an audio source.
- Language
Description string Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption
Channel Integer - language
Code String Selects a specific three-letter language code from within an audio source.
- language
Description String Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption
Channel number - language
Code string Selects a specific three-letter language code from within an audio source.
- language
Description string Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption_
channel int - language_
code str Selects a specific three-letter language code from within an audio source.
- language_
description str Human readable information to indicate captions available for players (eg. English, or Spanish).
- caption
Channel Number - language
Code String Selects a specific three-letter language code from within an audio source.
- language
Description String Human readable information to indicate captions available for players (eg. English, or Spanish).
ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsDestination, ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsDestinationArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsAkamaiSettingsArgs
- 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, ChannelEncoderSettingsOutputGroupOutputGroupSettingsHlsGroupSettingsHlsCdnSettingHlsBasicPutSettingsArgs
- 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.