Show / Hide Table of Contents

Class VideoFileDetailsVideoStream

Information about a video stream.

Inheritance
System.Object
VideoFileDetailsVideoStream
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class VideoFileDetailsVideoStream : IDirectResponseSchema

Properties

AspectRatio

The video content's display aspect ratio, which specifies the aspect ratio in which the video should be displayed.

Declaration
[JsonProperty("aspectRatio")]
public virtual double? AspectRatio { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

BitrateBps

The video stream's bitrate, in bits per second.

Declaration
[JsonProperty("bitrateBps")]
public virtual ulong? BitrateBps { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Codec

The video codec that the stream uses.

Declaration
[JsonProperty("codec")]
public virtual string Codec { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

FrameRateFps

The video stream's frame rate, in frames per second.

Declaration
[JsonProperty("frameRateFps")]
public virtual double? FrameRateFps { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

HeightPixels

The encoded video content's height in pixels.

Declaration
[JsonProperty("heightPixels")]
public virtual long? HeightPixels { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Rotation

The amount that YouTube needs to rotate the original source content to properly display the video.

Declaration
[JsonProperty("rotation")]
public virtual string Rotation { get; set; }
Property Value
Type Description
System.String

Vendor

A value that uniquely identifies a video vendor. Typically, the value is a four-letter vendor code.

Declaration
[JsonProperty("vendor")]
public virtual string Vendor { get; set; }
Property Value
Type Description
System.String

WidthPixels

The encoded video content's width in pixels. You can calculate the video's encoding aspect ratio as width_pixels / height_pixels.

Declaration
[JsonProperty("widthPixels")]
public virtual long? WidthPixels { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
Back to top