aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/MediaFrameInfo.cs
blob: bed4368ed22c908bdfb7887a99ba2f4f21db6bd2 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
using System.Collections.Generic;
using System.Text.Json.Serialization;

namespace MediaBrowser.MediaEncoding.Probing;

/// <summary>
/// Class MediaFrameInfo.
/// </summary>
public class MediaFrameInfo
{
    /// <summary>
    /// Gets or sets the media type.
    /// </summary>
    [JsonPropertyName("media_type")]
    public string? MediaType { get; set; }

    /// <summary>
    /// Gets or sets the StreamIndex.
    /// </summary>
    [JsonPropertyName("stream_index")]
    public int? StreamIndex { get; set; }

    /// <summary>
    /// Gets or sets the KeyFrame.
    /// </summary>
    [JsonPropertyName("key_frame")]
    public int? KeyFrame { get; set; }

    /// <summary>
    /// Gets or sets the Pts.
    /// </summary>
    [JsonPropertyName("pts")]
    public long? Pts { get; set; }

    /// <summary>
    /// Gets or sets the PtsTime.
    /// </summary>
    [JsonPropertyName("pts_time")]
    public string? PtsTime { get; set; }

    /// <summary>
    /// Gets or sets the BestEffortTimestamp.
    /// </summary>
    [JsonPropertyName("best_effort_timestamp")]
    public long BestEffortTimestamp { get; set; }

    /// <summary>
    /// Gets or sets the BestEffortTimestampTime.
    /// </summary>
    [JsonPropertyName("best_effort_timestamp_time")]
    public string? BestEffortTimestampTime { get; set; }

    /// <summary>
    /// Gets or sets the Duration.
    /// </summary>
    [JsonPropertyName("duration")]
    public int Duration { get; set; }

    /// <summary>
    /// Gets or sets the DurationTime.
    /// </summary>
    [JsonPropertyName("duration_time")]
    public string? DurationTime { get; set; }

    /// <summary>
    /// Gets or sets the PktPos.
    /// </summary>
    [JsonPropertyName("pkt_pos")]
    public string? PktPos { get; set; }

    /// <summary>
    /// Gets or sets the PktSize.
    /// </summary>
    [JsonPropertyName("pkt_size")]
    public string? PktSize { get; set; }

    /// <summary>
    /// Gets or sets the Width.
    /// </summary>
    [JsonPropertyName("width")]
    public int? Width { get; set; }

    /// <summary>
    /// Gets or sets the Height.
    /// </summary>
    [JsonPropertyName("height")]
    public int? Height { get; set; }

    /// <summary>
    /// Gets or sets the CropTop.
    /// </summary>
    [JsonPropertyName("crop_top")]
    public int? CropTop { get; set; }

    /// <summary>
    /// Gets or sets the CropBottom.
    /// </summary>
    [JsonPropertyName("crop_bottom")]
    public int? CropBottom { get; set; }

    /// <summary>
    /// Gets or sets the CropLeft.
    /// </summary>
    [JsonPropertyName("crop_left")]
    public int? CropLeft { get; set; }

    /// <summary>
    /// Gets or sets the CropRight.
    /// </summary>
    [JsonPropertyName("crop_right")]
    public int? CropRight { get; set; }

    /// <summary>
    /// Gets or sets the PixFmt.
    /// </summary>
    [JsonPropertyName("pix_fmt")]
    public string? PixFmt { get; set; }

    /// <summary>
    /// Gets or sets the SampleAspectRatio.
    /// </summary>
    [JsonPropertyName("sample_aspect_ratio")]
    public string? SampleAspectRatio { get; set; }

    /// <summary>
    /// Gets or sets the PictType.
    /// </summary>
    [JsonPropertyName("pict_type")]
    public string? PictType { get; set; }

    /// <summary>
    /// Gets or sets the InterlacedFrame.
    /// </summary>
    [JsonPropertyName("interlaced_frame")]
    public int? InterlacedFrame { get; set; }

    /// <summary>
    /// Gets or sets the TopFieldFirst.
    /// </summary>
    [JsonPropertyName("top_field_first")]
    public int? TopFieldFirst { get; set; }

    /// <summary>
    /// Gets or sets the RepeatPict.
    /// </summary>
    [JsonPropertyName("repeat_pict")]
    public int? RepeatPict { get; set; }

    /// <summary>
    /// Gets or sets the ColorRange.
    /// </summary>
    [JsonPropertyName("color_range")]
    public string? ColorRange { get; set; }

    /// <summary>
    /// Gets or sets the ColorSpace.
    /// </summary>
    [JsonPropertyName("color_space")]
    public string? ColorSpace { get; set; }

    /// <summary>
    /// Gets or sets the ColorPrimaries.
    /// </summary>
    [JsonPropertyName("color_primaries")]
    public string? ColorPrimaries { get; set; }

    /// <summary>
    /// Gets or sets the ColorTransfer.
    /// </summary>
    [JsonPropertyName("color_transfer")]
    public string? ColorTransfer { get; set; }

    /// <summary>
    /// Gets or sets the ChromaLocation.
    /// </summary>
    [JsonPropertyName("chroma_location")]
    public string? ChromaLocation { get; set; }

    /// <summary>
    /// Gets or sets the SideDataList.
    /// </summary>
    [JsonPropertyName("side_data_list")]
    public IReadOnlyList<MediaFrameSideDataInfo>? SideDataList { get; set; }
}