Show / Hide Table of Contents

Class StreamInput

StreamInput

Inheritance
System.Object
StreamInput
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class StreamInput

Properties

AnalysisDetails

Input analysis details This property is populated after the encoding has finished

Declaration
public EncodingStreamInputDetails AnalysisDetails { get; }
Property Value
Type Description
EncodingStreamInputDetails

InputId

ID of an Input resource defining the input storage. Required if 'inputStreamId' is not set.

Declaration
public string InputId { get; set; }
Property Value
Type Description
System.String

InputPath

Path to an input media file. Required if 'inputStreamId' is not set.

Declaration
public string InputPath { get; set; }
Property Value
Type Description
System.String

InputStreamId

Set this property instead of all others to reference an InputStream resource (e.g. an Ingest-, Trimming- or ConcatenationInputStream)

Declaration
public string InputStreamId { get; set; }
Property Value
Type Description
System.String

Position

Position of the stream to be selected from the input file (zero-based). Must not be set in combination with selectionMode 'AUTO', defaults to 0 for any other selectionMode.

Declaration
public int? Position { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SelectionMode

Specifies the strategy for selecting a stream from the input file. Must not be set when 'inputStreamId' is set.

Declaration
public StreamSelectionMode? SelectionMode { get; set; }
Property Value
Type Description
System.Nullable<StreamSelectionMode>
Back to top Generated by DocFX