ffprobe.xsd 13.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?xml version="1.0" encoding="UTF-8"?>

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.ffmpeg.org/schema/ffprobe"
    xmlns:ffprobe="http://www.ffmpeg.org/schema/ffprobe">

    <xsd:element name="ffprobe" type="ffprobe:ffprobeType"/>

    <xsd:complexType name="ffprobeType">
        <xsd:sequence>
            <xsd:element name="packets"  type="ffprobe:packetsType" minOccurs="0" maxOccurs="1" />
12
            <xsd:element name="frames"   type="ffprobe:framesType"  minOccurs="0" maxOccurs="1" />
13
            <xsd:element name="streams"  type="ffprobe:streamsType" minOccurs="0" maxOccurs="1" />
14
            <xsd:element name="programs" type="ffprobe:programsType" minOccurs="0" maxOccurs="1" />
15
            <xsd:element name="chapters" type="ffprobe:chaptersType" minOccurs="0" maxOccurs="1" />
16
            <xsd:element name="format"   type="ffprobe:formatType"  minOccurs="0" maxOccurs="1" />
17
            <xsd:element name="error"    type="ffprobe:errorType"   minOccurs="0" maxOccurs="1" />
18 19
            <xsd:element name="program_version"  type="ffprobe:programVersionType"  minOccurs="0" maxOccurs="1" />
            <xsd:element name="library_versions" type="ffprobe:libraryVersionsType" minOccurs="0" maxOccurs="1" />
20 21 22 23 24 25 26 27 28
        </xsd:sequence>
    </xsd:complexType>

    <xsd:complexType name="packetsType">
        <xsd:sequence>
            <xsd:element name="packet" type="ffprobe:packetType" minOccurs="0" maxOccurs="unbounded"/>
        </xsd:sequence>
    </xsd:complexType>

29 30
    <xsd:complexType name="framesType">
        <xsd:sequence>
31 32 33 34
            <xsd:choice minOccurs="0" maxOccurs="unbounded">
                <xsd:element name="frame" type="ffprobe:frameType" minOccurs="0" maxOccurs="unbounded"/>
                <xsd:element name="subtitle" type="ffprobe:subtitleType" minOccurs="0" maxOccurs="unbounded"/>
            </xsd:choice>
35 36 37
        </xsd:sequence>
    </xsd:complexType>

38 39 40 41 42 43 44 45 46
    <xsd:complexType name="packetType">
      <xsd:attribute name="codec_type"    type="xsd:string" use="required" />
      <xsd:attribute name="stream_index"  type="xsd:int" use="required" />
      <xsd:attribute name="pts"           type="xsd:long"  />
      <xsd:attribute name="pts_time"      type="xsd:float" />
      <xsd:attribute name="dts"           type="xsd:long"  />
      <xsd:attribute name="dts_time"      type="xsd:float" />
      <xsd:attribute name="duration"      type="xsd:long"  />
      <xsd:attribute name="duration_time" type="xsd:float" />
47 48
      <xsd:attribute name="convergence_duration"      type="xsd:long"  />
      <xsd:attribute name="convergence_duration_time" type="xsd:float" />
49 50 51
      <xsd:attribute name="size"          type="xsd:long" use="required" />
      <xsd:attribute name="pos"           type="xsd:long"  />
      <xsd:attribute name="flags"         type="xsd:string" use="required" />
52
      <xsd:attribute name="data"          type="xsd:string" />
53 54
    </xsd:complexType>

55 56 57 58 59 60 61 62 63
    <xsd:complexType name="frameType">
      <xsd:attribute name="media_type"    type="xsd:string" use="required"/>
      <xsd:attribute name="key_frame"     type="xsd:int"    use="required"/>
      <xsd:attribute name="pts"           type="xsd:long" />
      <xsd:attribute name="pts_time"      type="xsd:float"/>
      <xsd:attribute name="pkt_pts"       type="xsd:long" />
      <xsd:attribute name="pkt_pts_time"  type="xsd:float"/>
      <xsd:attribute name="pkt_dts"       type="xsd:long" />
      <xsd:attribute name="pkt_dts_time"  type="xsd:float"/>
64 65
      <xsd:attribute name="best_effort_timestamp"      type="xsd:long" />
      <xsd:attribute name="best_effort_timestamp_time" type="xsd:float" />
66 67
      <xsd:attribute name="pkt_duration"  type="xsd:long" />
      <xsd:attribute name="pkt_duration_time" type="xsd:float"/>
68
      <xsd:attribute name="pkt_pos"       type="xsd:long" />
69
      <xsd:attribute name="pkt_size"      type="xsd:int" />
70

71 72 73
      <!-- audio attributes -->
      <xsd:attribute name="sample_fmt"             type="xsd:string"/>
      <xsd:attribute name="nb_samples"             type="xsd:long"  />
74 75
      <xsd:attribute name="channels"               type="xsd:int"   />
      <xsd:attribute name="channel_layout"         type="xsd:string"/>
76

77 78 79 80 81 82 83 84 85 86 87 88 89
      <!-- video attributes -->
      <xsd:attribute name="width"                  type="xsd:long"  />
      <xsd:attribute name="height"                 type="xsd:long"  />
      <xsd:attribute name="pix_fmt"                type="xsd:string"/>
      <xsd:attribute name="sample_aspect_ratio"    type="xsd:string"/>
      <xsd:attribute name="pict_type"              type="xsd:string"/>
      <xsd:attribute name="coded_picture_number"   type="xsd:long"  />
      <xsd:attribute name="display_picture_number" type="xsd:long"  />
      <xsd:attribute name="interlaced_frame"       type="xsd:int"   />
      <xsd:attribute name="top_field_first"        type="xsd:int"   />
      <xsd:attribute name="repeat_pict"            type="xsd:int"   />
    </xsd:complexType>

90 91 92 93 94 95 96 97 98 99
    <xsd:complexType name="subtitleType">
      <xsd:attribute name="media_type"         type="xsd:string" fixed="subtitle" use="required"/>
      <xsd:attribute name="pts"                type="xsd:long" />
      <xsd:attribute name="pts_time"           type="xsd:float"/>
      <xsd:attribute name="format"             type="xsd:int"  />
      <xsd:attribute name="start_display_time" type="xsd:int"  />
      <xsd:attribute name="end_display_time"   type="xsd:int"  />
      <xsd:attribute name="num_rects"          type="xsd:int"  />
    </xsd:complexType>

100 101 102 103 104 105
    <xsd:complexType name="streamsType">
        <xsd:sequence>
            <xsd:element name="stream" type="ffprobe:streamType" minOccurs="0" maxOccurs="unbounded"/>
        </xsd:sequence>
    </xsd:complexType>

106 107 108 109 110 111
    <xsd:complexType name="programsType">
        <xsd:sequence>
            <xsd:element name="program" type="ffprobe:programType" minOccurs="0" maxOccurs="unbounded"/>
        </xsd:sequence>
    </xsd:complexType>

112 113 114 115 116 117 118 119 120 121 122 123 124 125
    <xsd:complexType name="streamDispositionType">
      <xsd:attribute name="default"          type="xsd:int" use="required" />
      <xsd:attribute name="dub"              type="xsd:int" use="required" />
      <xsd:attribute name="original"         type="xsd:int" use="required" />
      <xsd:attribute name="comment"          type="xsd:int" use="required" />
      <xsd:attribute name="lyrics"           type="xsd:int" use="required" />
      <xsd:attribute name="karaoke"          type="xsd:int" use="required" />
      <xsd:attribute name="forced"           type="xsd:int" use="required" />
      <xsd:attribute name="hearing_impaired" type="xsd:int" use="required" />
      <xsd:attribute name="visual_impaired"  type="xsd:int" use="required" />
      <xsd:attribute name="clean_effects"    type="xsd:int" use="required" />
      <xsd:attribute name="attached_pic"     type="xsd:int" use="required" />
    </xsd:complexType>

126
    <xsd:complexType name="streamType">
127
      <xsd:sequence>
128
        <xsd:element name="disposition" type="ffprobe:streamDispositionType" minOccurs="0" maxOccurs="1"/>
129
        <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
130 131
      </xsd:sequence>

132 133 134
      <xsd:attribute name="index"            type="xsd:int" use="required"/>
      <xsd:attribute name="codec_name"       type="xsd:string" />
      <xsd:attribute name="codec_long_name"  type="xsd:string" />
135
      <xsd:attribute name="profile"          type="xsd:string" />
136 137 138 139
      <xsd:attribute name="codec_type"       type="xsd:string" />
      <xsd:attribute name="codec_time_base"  type="xsd:string" use="required"/>
      <xsd:attribute name="codec_tag"        type="xsd:string" use="required"/>
      <xsd:attribute name="codec_tag_string" type="xsd:string" use="required"/>
140
      <xsd:attribute name="extradata"        type="xsd:string" />
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

      <!-- video attributes -->
      <xsd:attribute name="width"                type="xsd:int"/>
      <xsd:attribute name="height"               type="xsd:int"/>
      <xsd:attribute name="has_b_frames"         type="xsd:int"/>
      <xsd:attribute name="sample_aspect_ratio"  type="xsd:string"/>
      <xsd:attribute name="display_aspect_ratio" type="xsd:string"/>
      <xsd:attribute name="pix_fmt"              type="xsd:string"/>
      <xsd:attribute name="level"                type="xsd:int"/>
      <xsd:attribute name="timecode"             type="xsd:string"/>

      <!-- audio attributes -->
      <xsd:attribute name="sample_fmt"       type="xsd:string"/>
      <xsd:attribute name="sample_rate"      type="xsd:int"/>
      <xsd:attribute name="channels"         type="xsd:int"/>
156
      <xsd:attribute name="channel_layout"   type="xsd:string"/>
157 158 159 160 161 162
      <xsd:attribute name="bits_per_sample"  type="xsd:int"/>

      <xsd:attribute name="id"               type="xsd:string"/>
      <xsd:attribute name="r_frame_rate"     type="xsd:string" use="required"/>
      <xsd:attribute name="avg_frame_rate"   type="xsd:string" use="required"/>
      <xsd:attribute name="time_base"        type="xsd:string" use="required"/>
163
      <xsd:attribute name="start_pts"        type="xsd:long"/>
164
      <xsd:attribute name="start_time"       type="xsd:float"/>
165
      <xsd:attribute name="duration_ts"      type="xsd:long"/>
166
      <xsd:attribute name="duration"         type="xsd:float"/>
167
      <xsd:attribute name="bit_rate"         type="xsd:int"/>
168
      <xsd:attribute name="nb_frames"        type="xsd:int"/>
169 170
      <xsd:attribute name="nb_read_frames"   type="xsd:int"/>
      <xsd:attribute name="nb_read_packets"  type="xsd:int"/>
171 172
    </xsd:complexType>

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
    <xsd:complexType name="programType">
      <xsd:sequence>
        <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1"/>
      </xsd:sequence>

      <xsd:attribute name="program_id"           type="xsd:int"    use="required"/>
      <xsd:attribute name="program_num"          type="xsd:int"    use="required"/>
      <xsd:attribute name="nb_streams"           type="xsd:int"    use="required"/>
      <xsd:attribute name="start_time"           type="xsd:float"/>
      <xsd:attribute name="start_pts"            type="xsd:long"/>
      <xsd:attribute name="end_time"             type="xsd:float"/>
      <xsd:attribute name="end_pts"              type="xsd:long"/>
      <xsd:attribute name="pmt_pid"              type="xsd:int"    use="required"/>
      <xsd:attribute name="pcr_pid"              type="xsd:int"    use="required"/>
    </xsd:complexType>

190 191 192 193 194 195 196
    <xsd:complexType name="formatType">
      <xsd:sequence>
        <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
      </xsd:sequence>

      <xsd:attribute name="filename"         type="xsd:string" use="required"/>
      <xsd:attribute name="nb_streams"       type="xsd:int"    use="required"/>
197
      <xsd:attribute name="nb_programs"      type="xsd:int"    use="required"/>
198
      <xsd:attribute name="format_name"      type="xsd:string" use="required"/>
199
      <xsd:attribute name="format_long_name" type="xsd:string"/>
200 201 202 203
      <xsd:attribute name="start_time"       type="xsd:float"/>
      <xsd:attribute name="duration"         type="xsd:float"/>
      <xsd:attribute name="size"             type="xsd:long"/>
      <xsd:attribute name="bit_rate"         type="xsd:long"/>
204
      <xsd:attribute name="probe_score"      type="xsd:int"/>
205 206 207 208 209 210
    </xsd:complexType>

    <xsd:complexType name="tagType">
      <xsd:attribute name="key"   type="xsd:string" use="required"/>
      <xsd:attribute name="value" type="xsd:string" use="required"/>
    </xsd:complexType>
211 212 213 214 215

    <xsd:complexType name="errorType">
      <xsd:attribute name="code"   type="xsd:int"    use="required"/>
      <xsd:attribute name="string" type="xsd:string" use="required"/>
    </xsd:complexType>
216 217 218 219 220 221 222 223 224 225 226

    <xsd:complexType name="programVersionType">
      <xsd:attribute name="version"          type="xsd:string" use="required"/>
      <xsd:attribute name="copyright"        type="xsd:string" use="required"/>
      <xsd:attribute name="build_date"       type="xsd:string" use="required"/>
      <xsd:attribute name="build_time"       type="xsd:string" use="required"/>
      <xsd:attribute name="compiler_type"    type="xsd:string" use="required"/>
      <xsd:attribute name="compiler_version" type="xsd:string" use="required"/>
      <xsd:attribute name="configuration"    type="xsd:string" use="required"/>
    </xsd:complexType>

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
    <xsd:complexType name="chaptersType">
      <xsd:sequence>
        <xsd:element name="chapter" type="ffprobe:chapterType" minOccurs="0" maxOccurs="unbounded"/>
      </xsd:sequence>
    </xsd:complexType>

    <xsd:complexType name="chapterType">
      <xsd:sequence>
        <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
      </xsd:sequence>

      <xsd:attribute name="id"         type="xsd:int" use="required"/>
      <xsd:attribute name="time_base"  type="xsd:string" use="required"/>
      <xsd:attribute name="start"      type="xsd:int" use="required"/>
      <xsd:attribute name="start_time" type="xsd:float"/>
      <xsd:attribute name="end"        type="xsd:int" use="required"/>
      <xsd:attribute name="end_time"   type="xsd:float" use="required"/>
    </xsd:complexType>

246 247 248 249 250 251
    <xsd:complexType name="libraryVersionType">
      <xsd:attribute name="name"        type="xsd:string" use="required"/>
      <xsd:attribute name="major"       type="xsd:int"    use="required"/>
      <xsd:attribute name="minor"       type="xsd:int"    use="required"/>
      <xsd:attribute name="micro"       type="xsd:int"    use="required"/>
      <xsd:attribute name="version"     type="xsd:int"    use="required"/>
252
      <xsd:attribute name="ident"       type="xsd:string" use="required"/>
253 254 255 256 257 258 259
    </xsd:complexType>

    <xsd:complexType name="libraryVersionsType">
        <xsd:sequence>
          <xsd:element name="library_version" type="ffprobe:libraryVersionType" minOccurs="0" maxOccurs="unbounded"/>
        </xsd:sequence>
    </xsd:complexType>
260
</xsd:schema>