ffprobe.xsd 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="http://www.ffmpeg.org/schema/ffprobe"
  4. xmlns:ffprobe="http://www.ffmpeg.org/schema/ffprobe">
  5. <xsd:element name="ffprobe" type="ffprobe:ffprobeType"/>
  6. <xsd:complexType name="ffprobeType">
  7. <xsd:sequence>
  8. <xsd:element name="packets" type="ffprobe:packetsType" minOccurs="0" maxOccurs="1" />
  9. <xsd:element name="frames" type="ffprobe:framesType" minOccurs="0" maxOccurs="1" />
  10. <xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1" />
  11. <xsd:element name="format" type="ffprobe:formatType" minOccurs="0" maxOccurs="1" />
  12. <xsd:element name="error" type="ffprobe:errorType" minOccurs="0" maxOccurs="1" />
  13. <xsd:element name="program_version" type="ffprobe:programVersionType" minOccurs="0" maxOccurs="1" />
  14. <xsd:element name="library_versions" type="ffprobe:libraryVersionsType" minOccurs="0" maxOccurs="1" />
  15. </xsd:sequence>
  16. </xsd:complexType>
  17. <xsd:complexType name="packetsType">
  18. <xsd:sequence>
  19. <xsd:element name="packet" type="ffprobe:packetType" minOccurs="0" maxOccurs="unbounded"/>
  20. </xsd:sequence>
  21. </xsd:complexType>
  22. <xsd:complexType name="framesType">
  23. <xsd:sequence>
  24. <xsd:element name="frame" type="ffprobe:frameType" minOccurs="0" maxOccurs="unbounded"/>
  25. </xsd:sequence>
  26. </xsd:complexType>
  27. <xsd:complexType name="packetType">
  28. <xsd:attribute name="codec_type" type="xsd:string" use="required" />
  29. <xsd:attribute name="stream_index" type="xsd:int" use="required" />
  30. <xsd:attribute name="pts" type="xsd:long" />
  31. <xsd:attribute name="pts_time" type="xsd:float" />
  32. <xsd:attribute name="dts" type="xsd:long" />
  33. <xsd:attribute name="dts_time" type="xsd:float" />
  34. <xsd:attribute name="duration" type="xsd:long" />
  35. <xsd:attribute name="duration_time" type="xsd:float" />
  36. <xsd:attribute name="convergence_duration" type="xsd:long" />
  37. <xsd:attribute name="convergence_duration_time" type="xsd:float" />
  38. <xsd:attribute name="size" type="xsd:long" use="required" />
  39. <xsd:attribute name="pos" type="xsd:long" />
  40. <xsd:attribute name="flags" type="xsd:string" use="required" />
  41. <xsd:attribute name="data" type="xsd:string" />
  42. </xsd:complexType>
  43. <xsd:complexType name="frameType">
  44. <xsd:attribute name="media_type" type="xsd:string" use="required"/>
  45. <xsd:attribute name="key_frame" type="xsd:int" use="required"/>
  46. <xsd:attribute name="pts" type="xsd:long" />
  47. <xsd:attribute name="pts_time" type="xsd:float"/>
  48. <xsd:attribute name="pkt_pts" type="xsd:long" />
  49. <xsd:attribute name="pkt_pts_time" type="xsd:float"/>
  50. <xsd:attribute name="pkt_dts" type="xsd:long" />
  51. <xsd:attribute name="pkt_dts_time" type="xsd:float"/>
  52. <xsd:attribute name="pkt_duration" type="xsd:long" />
  53. <xsd:attribute name="pkt_duration_time" type="xsd:float"/>
  54. <xsd:attribute name="pkt_pos" type="xsd:long" />
  55. <!-- audio attributes -->
  56. <xsd:attribute name="sample_fmt" type="xsd:string"/>
  57. <xsd:attribute name="nb_samples" type="xsd:long" />
  58. <xsd:attribute name="channels" type="xsd:int" />
  59. <xsd:attribute name="channel_layout" type="xsd:string"/>
  60. <!-- video attributes -->
  61. <xsd:attribute name="width" type="xsd:long" />
  62. <xsd:attribute name="height" type="xsd:long" />
  63. <xsd:attribute name="pix_fmt" type="xsd:string"/>
  64. <xsd:attribute name="sample_aspect_ratio" type="xsd:string"/>
  65. <xsd:attribute name="pict_type" type="xsd:string"/>
  66. <xsd:attribute name="coded_picture_number" type="xsd:long" />
  67. <xsd:attribute name="display_picture_number" type="xsd:long" />
  68. <xsd:attribute name="interlaced_frame" type="xsd:int" />
  69. <xsd:attribute name="top_field_first" type="xsd:int" />
  70. <xsd:attribute name="repeat_pict" type="xsd:int" />
  71. <xsd:attribute name="reference" type="xsd:int" />
  72. </xsd:complexType>
  73. <xsd:complexType name="streamsType">
  74. <xsd:sequence>
  75. <xsd:element name="stream" type="ffprobe:streamType" minOccurs="0" maxOccurs="unbounded"/>
  76. </xsd:sequence>
  77. </xsd:complexType>
  78. <xsd:complexType name="streamType">
  79. <xsd:sequence>
  80. <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
  81. </xsd:sequence>
  82. <xsd:attribute name="index" type="xsd:int" use="required"/>
  83. <xsd:attribute name="codec_name" type="xsd:string" />
  84. <xsd:attribute name="codec_long_name" type="xsd:string" />
  85. <xsd:attribute name="profile" type="xsd:string" />
  86. <xsd:attribute name="codec_type" type="xsd:string" />
  87. <xsd:attribute name="codec_time_base" type="xsd:string" use="required"/>
  88. <xsd:attribute name="codec_tag" type="xsd:string" use="required"/>
  89. <xsd:attribute name="codec_tag_string" type="xsd:string" use="required"/>
  90. <xsd:attribute name="extradata" type="xsd:string" />
  91. <!-- video attributes -->
  92. <xsd:attribute name="width" type="xsd:int"/>
  93. <xsd:attribute name="height" type="xsd:int"/>
  94. <xsd:attribute name="has_b_frames" type="xsd:int"/>
  95. <xsd:attribute name="sample_aspect_ratio" type="xsd:string"/>
  96. <xsd:attribute name="display_aspect_ratio" type="xsd:string"/>
  97. <xsd:attribute name="pix_fmt" type="xsd:string"/>
  98. <xsd:attribute name="level" type="xsd:int"/>
  99. <xsd:attribute name="timecode" type="xsd:string"/>
  100. <!-- audio attributes -->
  101. <xsd:attribute name="sample_fmt" type="xsd:string"/>
  102. <xsd:attribute name="sample_rate" type="xsd:int"/>
  103. <xsd:attribute name="channels" type="xsd:int"/>
  104. <xsd:attribute name="bits_per_sample" type="xsd:int"/>
  105. <xsd:attribute name="id" type="xsd:string"/>
  106. <xsd:attribute name="r_frame_rate" type="xsd:string" use="required"/>
  107. <xsd:attribute name="avg_frame_rate" type="xsd:string" use="required"/>
  108. <xsd:attribute name="time_base" type="xsd:string" use="required"/>
  109. <xsd:attribute name="start_pts" type="xsd:long"/>
  110. <xsd:attribute name="start_time" type="xsd:float"/>
  111. <xsd:attribute name="duration_ts" type="xsd:long"/>
  112. <xsd:attribute name="duration" type="xsd:float"/>
  113. <xsd:attribute name="bit_rate" type="xsd:int"/>
  114. <xsd:attribute name="nb_frames" type="xsd:int"/>
  115. <xsd:attribute name="nb_read_frames" type="xsd:int"/>
  116. <xsd:attribute name="nb_read_packets" type="xsd:int"/>
  117. </xsd:complexType>
  118. <xsd:complexType name="formatType">
  119. <xsd:sequence>
  120. <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
  121. </xsd:sequence>
  122. <xsd:attribute name="filename" type="xsd:string" use="required"/>
  123. <xsd:attribute name="nb_streams" type="xsd:int" use="required"/>
  124. <xsd:attribute name="format_name" type="xsd:string" use="required"/>
  125. <xsd:attribute name="format_long_name" type="xsd:string"/>
  126. <xsd:attribute name="start_time" type="xsd:float"/>
  127. <xsd:attribute name="duration" type="xsd:float"/>
  128. <xsd:attribute name="size" type="xsd:long"/>
  129. <xsd:attribute name="bit_rate" type="xsd:long"/>
  130. </xsd:complexType>
  131. <xsd:complexType name="tagType">
  132. <xsd:attribute name="key" type="xsd:string" use="required"/>
  133. <xsd:attribute name="value" type="xsd:string" use="required"/>
  134. </xsd:complexType>
  135. <xsd:complexType name="errorType">
  136. <xsd:attribute name="code" type="xsd:int" use="required"/>
  137. <xsd:attribute name="string" type="xsd:string" use="required"/>
  138. </xsd:complexType>
  139. <xsd:complexType name="programVersionType">
  140. <xsd:attribute name="version" type="xsd:string" use="required"/>
  141. <xsd:attribute name="copyright" type="xsd:string" use="required"/>
  142. <xsd:attribute name="build_date" type="xsd:string" use="required"/>
  143. <xsd:attribute name="build_time" type="xsd:string" use="required"/>
  144. <xsd:attribute name="compiler_type" type="xsd:string" use="required"/>
  145. <xsd:attribute name="compiler_version" type="xsd:string" use="required"/>
  146. <xsd:attribute name="configuration" type="xsd:string" use="required"/>
  147. </xsd:complexType>
  148. <xsd:complexType name="libraryVersionType">
  149. <xsd:attribute name="name" type="xsd:string" use="required"/>
  150. <xsd:attribute name="major" type="xsd:int" use="required"/>
  151. <xsd:attribute name="minor" type="xsd:int" use="required"/>
  152. <xsd:attribute name="micro" type="xsd:int" use="required"/>
  153. <xsd:attribute name="version" type="xsd:int" use="required"/>
  154. </xsd:complexType>
  155. <xsd:complexType name="libraryVersionsType">
  156. <xsd:sequence>
  157. <xsd:element name="library_version" type="ffprobe:libraryVersionType" minOccurs="0" maxOccurs="unbounded"/>
  158. </xsd:sequence>
  159. </xsd:complexType>
  160. </xsd:schema>