diff options
author | Antonin Gouzer <antonin.gouzer@gmail.com> | 2019-05-24 09:46:50 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2019-05-27 00:28:34 +0200 |
commit | 3da8d04c18fedcedc6c52137ed310a2a0fe27577 (patch) | |
tree | 50975d11c7247664facc78b124e28e5881c93b33 /doc/ffprobe.xsd | |
parent | 6b67daa326f647e3b405ce0fb0f88f0266d40ab3 (diff) | |
download | ffmpeg-3da8d04c18fedcedc6c52137ed310a2a0fe27577.tar.gz |
fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)
Slightly modified by Marton Balint to produce valid json as well.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r-- | doc/ffprobe.xsd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd index 3e58da0f46..97dc67def6 100644 --- a/doc/ffprobe.xsd +++ b/doc/ffprobe.xsd @@ -147,11 +147,25 @@ </xsd:sequence> </xsd:complexType> <xsd:complexType name="frameSideDataType"> + <xsd:sequence> + <xsd:element name="timecodes" type="ffprobe:frameSideDataTimecodeList" minOccurs="0" maxOccurs="1"/> + </xsd:sequence> + <xsd:attribute name="side_data_type" type="xsd:string"/> <xsd:attribute name="side_data_size" type="xsd:int" /> <xsd:attribute name="timecode" type="xsd:string"/> </xsd:complexType> + <xsd:complexType name="frameSideDataTimecodeList"> + <xsd:sequence> + <xsd:element name="timecode" type="ffprobe:frameSideDataTimecodeType" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="frameSideDataTimecodeType"> + <xsd:attribute name="value" type="xsd:string"/> + </xsd:complexType> + <xsd:complexType name="subtitleType"> <xsd:attribute name="media_type" type="xsd:string" fixed="subtitle" use="required"/> <xsd:attribute name="pts" type="xsd:long" /> |