Class VideoMetadata
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class VideoMetadata : FileMetadata
Properties
AudioStreams
Declaration
[JsonProperty("audioStreams", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<AudioStream> AudioStreams { get; set; }
Property Value
ICollection<AudioStream> |
Codec
Declaration
[JsonProperty("codec", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Codec { get; set; }
Property Value
string |
DurationInSeconds
Declaration
[JsonProperty("durationInSeconds", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public float DurationInSeconds { get; set; }
Property Value
float |
Format
Declaration
[JsonProperty("format", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Format { get; set; }
Property Value
string |
Height
Declaration
[JsonProperty("height", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Height { get; set; }
Property Value
int |
OverallBitrate
Declaration
[JsonProperty("overallBitrate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? OverallBitrate { get; set; }
Property Value
int? |
VideoStreams
Declaration
[JsonProperty("videoStreams", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<VideoStream> VideoStreams { get; set; }
Property Value
ICollection<VideoStream> |
Width
Declaration
[JsonProperty("width", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Width { get; set; }
Property Value
int |
Methods
FromJson(string)
Declaration
public static VideoMetadata FromJson(string data)
Parameters
string data |
Returns
VideoMetadata |