Show / Hide Table of Contents

Class File.VideoMediaMetadataData

Additional metadata about video media. This may not be available immediately upon upload.

Inheritance
System.Object
File.VideoMediaMetadataData
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.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class VideoMediaMetadataData

Properties

DurationMillis

The duration of the video in milliseconds.

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

Height

The height of the video in pixels.

Declaration
[JsonProperty("height")]
public virtual int? Height { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Width

The width of the video in pixels.

Declaration
[JsonProperty("width")]
public virtual int? Width { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
Back to top