Show / Hide Table of Contents

Class VideoProcessingDetailsProcessingProgress

Video processing progress and completion time estimate.

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

Properties

ETag

The ETag of the item.

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

PartsProcessed

The number of parts of the video that YouTube has already processed. You can estimate the percentage of the video that YouTube has already processed by calculating: 100 * parts_processed / parts_total Note that since the estimated number of parts could increase without a corresponding increase in the number of parts that have already been processed, it is possible that the calculated progress could periodically decrease while YouTube processes a video.

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

PartsTotal

An estimate of the total number of parts that need to be processed for the video. The number may be updated with more precise estimates while YouTube processes the video.

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

TimeLeftMs

An estimate of the amount of time, in millseconds, that YouTube needs to finish processing the video.

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

Implements

IDirectResponseSchema
Back to top