-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathProbeInfo.cs
More file actions
33 lines (32 loc) · 839 Bytes
/
ProbeInfo.cs
File metadata and controls
33 lines (32 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TranscodeProcessor
{
// Wrapper classes for deserialized probe information
public class ProbeInfo
{
public List<StreamInfo> streams { get; set; }
public FormatInfo format { get; set; }
}
public class StreamInfo
{
public object index;
public object codec_name;
public object profile;
public object codec_type;
public object width;
public object height;
public object display_aspect_ratio;
public object sample_aspect_ratio;
public object bit_rate;
public object avg_frame_rate;
}
public class FormatInfo
{
public object duration;
public object bit_rate;
}
}