Show / Hide Table of Contents

Class VideoFileDetailsAudioStream

Information about an audio stream.

Inheritance
System.Object
VideoFileDetailsAudioStream
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 VideoFileDetailsAudioStream : IDirectResponseSchema

Properties

BitrateBps

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

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

ChannelCount

The number of audio channels that the stream contains.

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

Codec

The audio 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

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

Implements

IDirectResponseSchema
Back to top