Show / Hide Table of Contents

Class ScaleFilter

ScaleFilter

Inheritance
System.Object
BitmovinResponse
BitmovinResource
Filter
ScaleFilter
Inherited Members
BitmovinResource.Name
BitmovinResource.Description
BitmovinResource.CreatedAt
BitmovinResource.ModifiedAt
BitmovinResource.CustomData
BitmovinResponse.Id
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 ScaleFilter : Filter

Properties

Height

The height of the output frame in pixels. If not set it will be based on the configured width by maintaining the original aspect ratio. If width is also not set, the original source dimensions will be applied.

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

SampleAspectRatioDenominator

The denominator of the sample aspect ratio (also known as pixel aspect ratio). Must be set if sampleAspectRatioNumerator is set.

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

SampleAspectRatioNumerator

The numerator of the sample aspect ratio (also known as pixel aspect ratio). Must be set if sampleAspectRatioDenominator is set.

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

ScalingAlgorithm

ScalingAlgorithm

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

Width

The width of the output frame in pixels. If not set it will be based on the configured height by maintaining the original aspect ratio. If height is also not set, the original source dimensions will be applied.

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