Show / Hide Table of Contents

Class Transcode

Represents information about the transcoded audio or video file.

Inheritance
System.Object
Transcode
Implements
Google.Apis.Requests.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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class Transcode : IDirectResponseSchema

Properties

AudioBitRateKbps

The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.

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

AudioSampleRateHz

The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.

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

BitRateKbps

The transcoding bit rate of the transcoded video, in kilobits per second.

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

Dimensions

The dimensions of the transcoded video.

Declaration
[JsonProperty("dimensions")]
public virtual Dimensions Dimensions { get; set; }
Property Value
Type Description
Dimensions

ETag

The ETag of the item.

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

FileSizeBytes

The size of the transcoded file, in bytes.

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

FrameRate

The frame rate of the transcoded video, in frames per second.

Declaration
[JsonProperty("frameRate")]
public virtual float? FrameRate { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

MimeType

The MIME type of the transcoded file.

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

Name

The name of the transcoded file.

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

Transcoded

Indicates if the transcoding was successful.

Declaration
[JsonProperty("transcoded")]
public virtual bool? Transcoded { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top