Re: [FFmpeg-devel] [PATCH v2] avformat/matroska: Write WebVTT subtitles according to MKV specs

2023-03-14 Thread Gwyneth Morgan
On 2023-03-14 04:37:17+0100, Andreas Rheinhardt wrote: > The reason we write it the way we do is that webvtt is muxed differently > in Matroska than WebM. This needs to be fixed, too, before S_TEXT/WEBVTT > can be used for Matroska. Ah, I see. I wasn't aware of the differences in muxing. Thanks

[FFmpeg-devel] [PATCH v2] avformat/matroska: Write WebVTT subtitles according to MKV specs

2023-03-13 Thread Gwyneth Morgan
reading MKVs using either tag, write regular MKVs with S_TEXT/WEBVTT, and write WebMs with the D_WEBVTT/* tags we already use. [1]: https://www.webmproject.org/docs/container/ [2]: https://matroska.org/technical/codec_specs.html#s_textwebvtt Signed-off-by: Gwyneth Morgan Fixes: https

[FFmpeg-devel] [PATCH] avformat/matroska: Write WebVTT subtitles according to MKV specs

2023-03-08 Thread Gwyneth Morgan
reading MKVs using either tag, write regular MKVs with S_TEXT/WEBVTT, and write WebMs with the D_WEBVTT/* tags we already use. [1]: https://www.webmproject.org/docs/container/ [2]: https://matroska.org/technical/codec_specs.html#s_textwebvtt Signed-off-by: Gwyneth Morgan Fixes: https