]> git.sesse.net Git - ffmpeg/blob - doc/ffprobe.xsd
fate: add adpcm_ima_ws test in a VQA v3 file
[ffmpeg] / doc / ffprobe.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4     targetNamespace="http://www.ffmpeg.org/schema/ffprobe"
5     xmlns:ffprobe="http://www.ffmpeg.org/schema/ffprobe">
6
7     <xsd:element name="ffprobe" type="ffprobe:ffprobeType"/>
8
9     <xsd:complexType name="ffprobeType">
10         <xsd:sequence>
11             <xsd:element name="program_version"  type="ffprobe:programVersionType"  minOccurs="0" maxOccurs="1" />
12             <xsd:element name="library_versions" type="ffprobe:libraryVersionsType" minOccurs="0" maxOccurs="1" />
13             <xsd:element name="pixel_formats"    type="ffprobe:pixelFormatsType"    minOccurs="0" maxOccurs="1" />
14             <xsd:element name="packets"  type="ffprobe:packetsType" minOccurs="0" maxOccurs="1" />
15             <xsd:element name="frames"   type="ffprobe:framesType"  minOccurs="0" maxOccurs="1" />
16             <xsd:element name="packets_and_frames" type="ffprobe:packetsAndFramesType" minOccurs="0" maxOccurs="1" />
17             <xsd:element name="programs" type="ffprobe:programsType" minOccurs="0" maxOccurs="1" />
18             <xsd:element name="streams"  type="ffprobe:streamsType" minOccurs="0" maxOccurs="1" />
19             <xsd:element name="chapters" type="ffprobe:chaptersType" minOccurs="0" maxOccurs="1" />
20             <xsd:element name="format"   type="ffprobe:formatType"  minOccurs="0" maxOccurs="1" />
21             <xsd:element name="error"    type="ffprobe:errorType"   minOccurs="0" maxOccurs="1" />
22         </xsd:sequence>
23     </xsd:complexType>
24
25     <xsd:complexType name="packetsType">
26         <xsd:sequence>
27             <xsd:element name="packet" type="ffprobe:packetType" minOccurs="0" maxOccurs="unbounded"/>
28         </xsd:sequence>
29     </xsd:complexType>
30
31     <xsd:complexType name="framesType">
32         <xsd:choice minOccurs="0" maxOccurs="unbounded">
33             <xsd:element name="frame"    type="ffprobe:frameType"/>
34             <xsd:element name="subtitle" type="ffprobe:subtitleType"/>
35         </xsd:choice>
36     </xsd:complexType>
37
38     <xsd:complexType name="packetsAndFramesType">
39         <xsd:choice minOccurs="0" maxOccurs="unbounded">
40             <xsd:element name="packet"   type="ffprobe:packetType"/>
41             <xsd:element name="frame"    type="ffprobe:frameType"/>
42             <xsd:element name="subtitle" type="ffprobe:subtitleType"/>
43         </xsd:choice>
44     </xsd:complexType>
45
46     <xsd:complexType name="packetType">
47       <xsd:sequence>
48         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
49         <xsd:element name="side_data_list" type="ffprobe:packetSideDataListType"   minOccurs="0" maxOccurs="1" />
50       </xsd:sequence>
51
52       <xsd:attribute name="codec_type"    type="xsd:string" use="required" />
53       <xsd:attribute name="stream_index"  type="xsd:int" use="required" />
54       <xsd:attribute name="pts"           type="xsd:long"  />
55       <xsd:attribute name="pts_time"      type="xsd:float" />
56       <xsd:attribute name="dts"           type="xsd:long"  />
57       <xsd:attribute name="dts_time"      type="xsd:float" />
58       <xsd:attribute name="duration"      type="xsd:long"  />
59       <xsd:attribute name="duration_time" type="xsd:float" />
60       <xsd:attribute name="size"          type="xsd:long" use="required" />
61       <xsd:attribute name="pos"           type="xsd:long"  />
62       <xsd:attribute name="flags"         type="xsd:string" use="required" />
63       <xsd:attribute name="data"          type="xsd:string" />
64       <xsd:attribute name="data_hash"     type="xsd:string" />
65     </xsd:complexType>
66
67     <xsd:complexType name="packetSideDataListType">
68         <xsd:sequence>
69             <xsd:element name="side_data" type="ffprobe:packetSideDataType" minOccurs="1" maxOccurs="unbounded"/>
70         </xsd:sequence>
71     </xsd:complexType>
72     <xsd:complexType name="packetSideDataType">
73         <xsd:attribute name="side_data_type"              type="xsd:string"/>
74         <xsd:attribute name="side_data_size"              type="xsd:int"   />
75     </xsd:complexType>
76
77     <xsd:complexType name="frameType">
78       <xsd:sequence>
79             <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
80             <xsd:element name="logs" type="ffprobe:logsType" minOccurs="0" maxOccurs="1"/>
81             <xsd:element name="side_data_list" type="ffprobe:frameSideDataListType"   minOccurs="0" maxOccurs="1" />
82       </xsd:sequence>
83
84       <xsd:attribute name="media_type"    type="xsd:string" use="required"/>
85       <xsd:attribute name="stream_index"  type="xsd:int"  />
86       <xsd:attribute name="key_frame"     type="xsd:int"    use="required"/>
87       <xsd:attribute name="pts"           type="xsd:long" />
88       <xsd:attribute name="pts_time"      type="xsd:float"/>
89       <xsd:attribute name="pkt_pts"       type="xsd:long" />
90       <xsd:attribute name="pkt_pts_time"  type="xsd:float"/>
91       <xsd:attribute name="pkt_dts"       type="xsd:long" />
92       <xsd:attribute name="pkt_dts_time"  type="xsd:float"/>
93       <xsd:attribute name="best_effort_timestamp"      type="xsd:long" />
94       <xsd:attribute name="best_effort_timestamp_time" type="xsd:float" />
95       <xsd:attribute name="pkt_duration"  type="xsd:long" />
96       <xsd:attribute name="pkt_duration_time" type="xsd:float"/>
97       <xsd:attribute name="pkt_pos"       type="xsd:long" />
98       <xsd:attribute name="pkt_size"      type="xsd:int" />
99
100       <!-- audio attributes -->
101       <xsd:attribute name="sample_fmt"             type="xsd:string"/>
102       <xsd:attribute name="nb_samples"             type="xsd:long"  />
103       <xsd:attribute name="channels"               type="xsd:int"   />
104       <xsd:attribute name="channel_layout"         type="xsd:string"/>
105
106       <!-- video attributes -->
107       <xsd:attribute name="width"                  type="xsd:long"  />
108       <xsd:attribute name="height"                 type="xsd:long"  />
109       <xsd:attribute name="pix_fmt"                type="xsd:string"/>
110       <xsd:attribute name="sample_aspect_ratio"    type="xsd:string"/>
111       <xsd:attribute name="pict_type"              type="xsd:string"/>
112       <xsd:attribute name="coded_picture_number"   type="xsd:long"  />
113       <xsd:attribute name="display_picture_number" type="xsd:long"  />
114       <xsd:attribute name="interlaced_frame"       type="xsd:int"   />
115       <xsd:attribute name="top_field_first"        type="xsd:int"   />
116       <xsd:attribute name="repeat_pict"            type="xsd:int"   />
117       <xsd:attribute name="color_range"            type="xsd:string"/>
118       <xsd:attribute name="color_space"            type="xsd:string"/>
119       <xsd:attribute name="color_primaries"        type="xsd:string"/>
120       <xsd:attribute name="color_transfer"         type="xsd:string"/>
121       <xsd:attribute name="chroma_location"        type="xsd:string"/>
122     </xsd:complexType>
123
124     <xsd:complexType name="logsType">
125         <xsd:sequence>
126             <xsd:element name="log" type="ffprobe:logType" minOccurs="1" maxOccurs="unbounded"/>
127         </xsd:sequence>
128     </xsd:complexType>
129     <xsd:complexType name="logType">
130         <xsd:attribute name="context"                     type="xsd:string"/>
131         <xsd:attribute name="level"                       type="xsd:int"   />
132         <xsd:attribute name="category"                    type="xsd:int"   />
133         <xsd:attribute name="parent_context"              type="xsd:string"/>
134         <xsd:attribute name="parent_category"             type="xsd:int"   />
135         <xsd:attribute name="message"                     type="xsd:string"/>
136     </xsd:complexType>
137
138     <xsd:complexType name="frameSideDataListType">
139         <xsd:sequence>
140             <xsd:element name="side_data" type="ffprobe:frameSideDataType" minOccurs="1" maxOccurs="unbounded"/>
141         </xsd:sequence>
142     </xsd:complexType>
143     <xsd:complexType name="frameSideDataType">
144         <xsd:sequence>
145             <xsd:element name="timecodes" type="ffprobe:frameSideDataTimecodeList" minOccurs="0" maxOccurs="1"/>
146         </xsd:sequence>
147
148         <xsd:attribute name="side_data_type"              type="xsd:string"/>
149         <xsd:attribute name="side_data_size"              type="xsd:int"   />
150         <xsd:attribute name="timecode"                    type="xsd:string"/>
151     </xsd:complexType>
152
153     <xsd:complexType name="frameSideDataTimecodeList">
154         <xsd:sequence>
155             <xsd:element name="timecode" type="ffprobe:frameSideDataTimecodeType" minOccurs="0" maxOccurs="unbounded"/>
156         </xsd:sequence>
157     </xsd:complexType>
158
159     <xsd:complexType name="frameSideDataTimecodeType">
160         <xsd:attribute name="value"              type="xsd:string"/>
161     </xsd:complexType>
162
163     <xsd:complexType name="subtitleType">
164       <xsd:attribute name="media_type"         type="xsd:string" fixed="subtitle" use="required"/>
165       <xsd:attribute name="pts"                type="xsd:long" />
166       <xsd:attribute name="pts_time"           type="xsd:float"/>
167       <xsd:attribute name="format"             type="xsd:int"  />
168       <xsd:attribute name="start_display_time" type="xsd:int"  />
169       <xsd:attribute name="end_display_time"   type="xsd:int"  />
170       <xsd:attribute name="num_rects"          type="xsd:int"  />
171     </xsd:complexType>
172
173     <xsd:complexType name="streamsType">
174         <xsd:sequence>
175             <xsd:element name="stream" type="ffprobe:streamType" minOccurs="0" maxOccurs="unbounded"/>
176         </xsd:sequence>
177     </xsd:complexType>
178
179     <xsd:complexType name="programsType">
180         <xsd:sequence>
181             <xsd:element name="program" type="ffprobe:programType" minOccurs="0" maxOccurs="unbounded"/>
182         </xsd:sequence>
183     </xsd:complexType>
184
185     <xsd:complexType name="streamDispositionType">
186       <xsd:attribute name="default"          type="xsd:int" use="required" />
187       <xsd:attribute name="dub"              type="xsd:int" use="required" />
188       <xsd:attribute name="original"         type="xsd:int" use="required" />
189       <xsd:attribute name="comment"          type="xsd:int" use="required" />
190       <xsd:attribute name="lyrics"           type="xsd:int" use="required" />
191       <xsd:attribute name="karaoke"          type="xsd:int" use="required" />
192       <xsd:attribute name="forced"           type="xsd:int" use="required" />
193       <xsd:attribute name="hearing_impaired" type="xsd:int" use="required" />
194       <xsd:attribute name="visual_impaired"  type="xsd:int" use="required" />
195       <xsd:attribute name="clean_effects"    type="xsd:int" use="required" />
196       <xsd:attribute name="attached_pic"     type="xsd:int" use="required" />
197       <xsd:attribute name="timed_thumbnails" type="xsd:int" use="required" />
198       <xsd:attribute name="captions"         type="xsd:int" use="required" />
199       <xsd:attribute name="descriptions"     type="xsd:int" use="required" />
200       <xsd:attribute name="metadata"         type="xsd:int" use="required" />
201       <xsd:attribute name="dependent"        type="xsd:int" use="required" />
202       <xsd:attribute name="still_image"      type="xsd:int" use="required" />
203     </xsd:complexType>
204
205     <xsd:complexType name="streamType">
206       <xsd:sequence>
207         <xsd:element name="disposition" type="ffprobe:streamDispositionType" minOccurs="0" maxOccurs="1"/>
208         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
209         <xsd:element name="side_data_list" type="ffprobe:packetSideDataListType"   minOccurs="0" maxOccurs="1" />
210       </xsd:sequence>
211
212       <xsd:attribute name="index"            type="xsd:int" use="required"/>
213       <xsd:attribute name="codec_name"       type="xsd:string" />
214       <xsd:attribute name="codec_long_name"  type="xsd:string" />
215       <xsd:attribute name="profile"          type="xsd:string" />
216       <xsd:attribute name="codec_type"       type="xsd:string" />
217       <xsd:attribute name="codec_tag"        type="xsd:string" use="required"/>
218       <xsd:attribute name="codec_tag_string" type="xsd:string" use="required"/>
219       <xsd:attribute name="extradata"        type="xsd:string" />
220       <xsd:attribute name="extradata_hash"   type="xsd:string" />
221
222       <!-- video attributes -->
223       <xsd:attribute name="width"                type="xsd:int"/>
224       <xsd:attribute name="height"               type="xsd:int"/>
225       <xsd:attribute name="coded_width"          type="xsd:int"/>
226       <xsd:attribute name="coded_height"         type="xsd:int"/>
227       <xsd:attribute name="closed_captions"      type="xsd:boolean"/>
228       <xsd:attribute name="has_b_frames"         type="xsd:int"/>
229       <xsd:attribute name="sample_aspect_ratio"  type="xsd:string"/>
230       <xsd:attribute name="display_aspect_ratio" type="xsd:string"/>
231       <xsd:attribute name="pix_fmt"              type="xsd:string"/>
232       <xsd:attribute name="level"                type="xsd:int"/>
233       <xsd:attribute name="color_range"          type="xsd:string"/>
234       <xsd:attribute name="color_space"          type="xsd:string"/>
235       <xsd:attribute name="color_transfer"       type="xsd:string"/>
236       <xsd:attribute name="color_primaries"      type="xsd:string"/>
237       <xsd:attribute name="chroma_location"      type="xsd:string"/>
238       <xsd:attribute name="field_order"          type="xsd:string"/>
239       <xsd:attribute name="refs"                 type="xsd:int"/>
240
241       <!-- audio attributes -->
242       <xsd:attribute name="sample_fmt"       type="xsd:string"/>
243       <xsd:attribute name="sample_rate"      type="xsd:int"/>
244       <xsd:attribute name="channels"         type="xsd:int"/>
245       <xsd:attribute name="channel_layout"   type="xsd:string"/>
246       <xsd:attribute name="bits_per_sample"  type="xsd:int"/>
247
248       <xsd:attribute name="id"               type="xsd:string"/>
249       <xsd:attribute name="r_frame_rate"     type="xsd:string" use="required"/>
250       <xsd:attribute name="avg_frame_rate"   type="xsd:string" use="required"/>
251       <xsd:attribute name="time_base"        type="xsd:string" use="required"/>
252       <xsd:attribute name="start_pts"        type="xsd:long"/>
253       <xsd:attribute name="start_time"       type="xsd:float"/>
254       <xsd:attribute name="duration_ts"      type="xsd:long"/>
255       <xsd:attribute name="duration"         type="xsd:float"/>
256       <xsd:attribute name="bit_rate"         type="xsd:int"/>
257       <xsd:attribute name="max_bit_rate"     type="xsd:int"/>
258       <xsd:attribute name="bits_per_raw_sample" type="xsd:int"/>
259       <xsd:attribute name="nb_frames"        type="xsd:int"/>
260       <xsd:attribute name="nb_read_frames"   type="xsd:int"/>
261       <xsd:attribute name="nb_read_packets"  type="xsd:int"/>
262     </xsd:complexType>
263
264     <xsd:complexType name="programType">
265       <xsd:sequence>
266         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
267         <xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1"/>
268       </xsd:sequence>
269
270       <xsd:attribute name="program_id"           type="xsd:int"    use="required"/>
271       <xsd:attribute name="program_num"          type="xsd:int"    use="required"/>
272       <xsd:attribute name="nb_streams"           type="xsd:int"    use="required"/>
273       <xsd:attribute name="start_time"           type="xsd:float"/>
274       <xsd:attribute name="start_pts"            type="xsd:long"/>
275       <xsd:attribute name="end_time"             type="xsd:float"/>
276       <xsd:attribute name="end_pts"              type="xsd:long"/>
277       <xsd:attribute name="pmt_pid"              type="xsd:int"    use="required"/>
278       <xsd:attribute name="pcr_pid"              type="xsd:int"    use="required"/>
279     </xsd:complexType>
280
281     <xsd:complexType name="formatType">
282       <xsd:sequence>
283         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
284       </xsd:sequence>
285
286       <xsd:attribute name="filename"         type="xsd:string" use="required"/>
287       <xsd:attribute name="nb_streams"       type="xsd:int"    use="required"/>
288       <xsd:attribute name="nb_programs"      type="xsd:int"    use="required"/>
289       <xsd:attribute name="format_name"      type="xsd:string" use="required"/>
290       <xsd:attribute name="format_long_name" type="xsd:string"/>
291       <xsd:attribute name="start_time"       type="xsd:float"/>
292       <xsd:attribute name="duration"         type="xsd:float"/>
293       <xsd:attribute name="size"             type="xsd:long"/>
294       <xsd:attribute name="bit_rate"         type="xsd:long"/>
295       <xsd:attribute name="probe_score"      type="xsd:int"/>
296     </xsd:complexType>
297
298     <xsd:complexType name="tagType">
299       <xsd:attribute name="key"   type="xsd:string" use="required"/>
300       <xsd:attribute name="value" type="xsd:string" use="required"/>
301     </xsd:complexType>
302
303     <xsd:complexType name="errorType">
304       <xsd:attribute name="code"   type="xsd:int"    use="required"/>
305       <xsd:attribute name="string" type="xsd:string" use="required"/>
306     </xsd:complexType>
307
308     <xsd:complexType name="programVersionType">
309       <xsd:attribute name="version"          type="xsd:string" use="required"/>
310       <xsd:attribute name="copyright"        type="xsd:string" use="required"/>
311       <xsd:attribute name="build_date"       type="xsd:string"/>
312       <xsd:attribute name="build_time"       type="xsd:string"/>
313       <xsd:attribute name="compiler_ident"   type="xsd:string" use="required"/>
314       <xsd:attribute name="configuration"    type="xsd:string" use="required"/>
315     </xsd:complexType>
316
317     <xsd:complexType name="chaptersType">
318       <xsd:sequence>
319         <xsd:element name="chapter" type="ffprobe:chapterType" minOccurs="0" maxOccurs="unbounded"/>
320       </xsd:sequence>
321     </xsd:complexType>
322
323     <xsd:complexType name="chapterType">
324       <xsd:sequence>
325         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
326       </xsd:sequence>
327
328       <xsd:attribute name="id"         type="xsd:int" use="required"/>
329       <xsd:attribute name="time_base"  type="xsd:string" use="required"/>
330       <xsd:attribute name="start"      type="xsd:int" use="required"/>
331       <xsd:attribute name="start_time" type="xsd:float"/>
332       <xsd:attribute name="end"        type="xsd:int" use="required"/>
333       <xsd:attribute name="end_time"   type="xsd:float" use="required"/>
334     </xsd:complexType>
335
336     <xsd:complexType name="libraryVersionType">
337       <xsd:attribute name="name"        type="xsd:string" use="required"/>
338       <xsd:attribute name="major"       type="xsd:int"    use="required"/>
339       <xsd:attribute name="minor"       type="xsd:int"    use="required"/>
340       <xsd:attribute name="micro"       type="xsd:int"    use="required"/>
341       <xsd:attribute name="version"     type="xsd:int"    use="required"/>
342       <xsd:attribute name="ident"       type="xsd:string" use="required"/>
343     </xsd:complexType>
344
345     <xsd:complexType name="libraryVersionsType">
346         <xsd:sequence>
347           <xsd:element name="library_version" type="ffprobe:libraryVersionType" minOccurs="0" maxOccurs="unbounded"/>
348         </xsd:sequence>
349     </xsd:complexType>
350
351     <xsd:complexType name="pixelFormatFlagsType">
352       <xsd:attribute name="big_endian" type="xsd:int" use="required"/>
353       <xsd:attribute name="palette"    type="xsd:int" use="required"/>
354       <xsd:attribute name="bitstream"  type="xsd:int" use="required"/>
355       <xsd:attribute name="hwaccel"    type="xsd:int" use="required"/>
356       <xsd:attribute name="planar"     type="xsd:int" use="required"/>
357       <xsd:attribute name="rgb"        type="xsd:int" use="required"/>
358       <xsd:attribute name="alpha"      type="xsd:int" use="required"/>
359     </xsd:complexType>
360
361     <xsd:complexType name="pixelFormatComponentType">
362       <xsd:attribute name="index"      type="xsd:int" use="required"/>
363       <xsd:attribute name="bit_depth"  type="xsd:int" use="required"/>
364     </xsd:complexType>
365
366     <xsd:complexType name="pixelFormatComponentsType">
367       <xsd:sequence>
368         <xsd:element name="component" type="ffprobe:pixelFormatComponentType" minOccurs="0" maxOccurs="unbounded"/>
369       </xsd:sequence>
370     </xsd:complexType>
371
372     <xsd:complexType name="pixelFormatType">
373       <xsd:sequence>
374         <xsd:element name="flags" type="ffprobe:pixelFormatFlagsType" minOccurs="0" maxOccurs="1"/>
375         <xsd:element name="components" type="ffprobe:pixelFormatComponentsType" minOccurs="0" maxOccurs="1"/>
376       </xsd:sequence>
377
378       <xsd:attribute name="name"                type="xsd:string" use="required"/>
379       <xsd:attribute name="nb_components"       type="xsd:int"    use="required"/>
380       <xsd:attribute name="log2_chroma_w"       type="xsd:int"/>
381       <xsd:attribute name="log2_chroma_h"       type="xsd:int"/>
382       <xsd:attribute name="bits_per_pixel"      type="xsd:int"/>
383     </xsd:complexType>
384
385     <xsd:complexType name="pixelFormatsType">
386       <xsd:sequence>
387         <xsd:element name="pixel_format" type="ffprobe:pixelFormatType" minOccurs="0" maxOccurs="unbounded"/>
388       </xsd:sequence>
389     </xsd:complexType>
390 </xsd:schema>