You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

227 lines
7.3KB

  1. /*
  2. * Copyright (c) 2012 Clément Bœsch
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * WebVTT subtitle demuxer
  23. * @see http://dev.w3.org/html5/webvtt/
  24. */
  25. #include "avformat.h"
  26. #include "internal.h"
  27. #include "subtitles.h"
  28. #include "libavutil/bprint.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "libavutil/opt.h"
  31. typedef struct {
  32. const AVClass *class;
  33. FFDemuxSubtitlesQueue q;
  34. int kind;
  35. } WebVTTContext;
  36. static int webvtt_probe(AVProbeData *p)
  37. {
  38. const uint8_t *ptr = p->buf;
  39. if (AV_RB24(ptr) == 0xEFBBBF)
  40. ptr += 3; /* skip UTF-8 BOM */
  41. if (!strncmp(ptr, "WEBVTT", 6) &&
  42. (!ptr[6] || strchr("\n\r\t ", ptr[6])))
  43. return AVPROBE_SCORE_MAX;
  44. return 0;
  45. }
  46. static int64_t read_ts(const char *s)
  47. {
  48. int hh, mm, ss, ms;
  49. if (sscanf(s, "%u:%u:%u.%u", &hh, &mm, &ss, &ms) == 4) return (hh*3600LL + mm*60LL + ss) * 1000LL + ms;
  50. if (sscanf(s, "%u:%u.%u", &mm, &ss, &ms) == 3) return ( mm*60LL + ss) * 1000LL + ms;
  51. return AV_NOPTS_VALUE;
  52. }
  53. static int webvtt_read_header(AVFormatContext *s)
  54. {
  55. WebVTTContext *webvtt = s->priv_data;
  56. AVBPrint header, cue;
  57. int res = 0;
  58. AVStream *st = avformat_new_stream(s, NULL);
  59. if (!st)
  60. return AVERROR(ENOMEM);
  61. avpriv_set_pts_info(st, 64, 1, 1000);
  62. st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
  63. st->codecpar->codec_id = AV_CODEC_ID_WEBVTT;
  64. st->disposition |= webvtt->kind;
  65. av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
  66. av_bprint_init(&cue, 0, AV_BPRINT_SIZE_UNLIMITED);
  67. for (;;) {
  68. int i;
  69. int64_t pos;
  70. AVPacket *sub;
  71. const char *p, *identifier, *settings;
  72. int identifier_len, settings_len;
  73. int64_t ts_start, ts_end;
  74. ff_subtitles_read_chunk(s->pb, &cue);
  75. if (!cue.len)
  76. break;
  77. p = identifier = cue.str;
  78. pos = avio_tell(s->pb);
  79. /* ignore header chunk */
  80. if (!strncmp(p, "\xEF\xBB\xBFWEBVTT", 9) ||
  81. !strncmp(p, "WEBVTT", 6) ||
  82. !strncmp(p, "NOTE", 4))
  83. continue;
  84. /* optional cue identifier (can be a number like in SRT or some kind of
  85. * chaptering id) */
  86. for (i = 0; p[i] && p[i] != '\n' && p[i] != '\r'; i++) {
  87. if (!strncmp(p + i, "-->", 3)) {
  88. identifier = NULL;
  89. break;
  90. }
  91. }
  92. if (!identifier)
  93. identifier_len = 0;
  94. else {
  95. identifier_len = strcspn(p, "\r\n");
  96. p += identifier_len;
  97. if (*p == '\r')
  98. p++;
  99. if (*p == '\n')
  100. p++;
  101. }
  102. /* cue timestamps */
  103. if ((ts_start = read_ts(p)) == AV_NOPTS_VALUE)
  104. break;
  105. if (!(p = strstr(p, "-->")))
  106. break;
  107. p += 2;
  108. do p++; while (*p == ' ' || *p == '\t');
  109. if ((ts_end = read_ts(p)) == AV_NOPTS_VALUE)
  110. break;
  111. /* optional cue settings */
  112. p += strcspn(p, "\n\t ");
  113. while (*p == '\t' || *p == ' ')
  114. p++;
  115. settings = p;
  116. settings_len = strcspn(p, "\r\n");
  117. p += settings_len;
  118. if (*p == '\r')
  119. p++;
  120. if (*p == '\n')
  121. p++;
  122. /* create packet */
  123. sub = ff_subtitles_queue_insert(&webvtt->q, p, strlen(p), 0);
  124. if (!sub) {
  125. res = AVERROR(ENOMEM);
  126. goto end;
  127. }
  128. sub->pos = pos;
  129. sub->pts = ts_start;
  130. sub->duration = ts_end - ts_start;
  131. #define SET_SIDE_DATA(name, type) do { \
  132. if (name##_len) { \
  133. uint8_t *buf = av_packet_new_side_data(sub, type, name##_len); \
  134. if (!buf) { \
  135. res = AVERROR(ENOMEM); \
  136. goto end; \
  137. } \
  138. memcpy(buf, name, name##_len); \
  139. } \
  140. } while (0)
  141. SET_SIDE_DATA(identifier, AV_PKT_DATA_WEBVTT_IDENTIFIER);
  142. SET_SIDE_DATA(settings, AV_PKT_DATA_WEBVTT_SETTINGS);
  143. }
  144. ff_subtitles_queue_finalize(s, &webvtt->q);
  145. end:
  146. if (res < 0)
  147. ff_subtitles_queue_clean(&webvtt->q);
  148. av_bprint_finalize(&cue, NULL);
  149. av_bprint_finalize(&header, NULL);
  150. return res;
  151. }
  152. static int webvtt_read_packet(AVFormatContext *s, AVPacket *pkt)
  153. {
  154. WebVTTContext *webvtt = s->priv_data;
  155. return ff_subtitles_queue_read_packet(&webvtt->q, pkt);
  156. }
  157. static int webvtt_read_seek(AVFormatContext *s, int stream_index,
  158. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  159. {
  160. WebVTTContext *webvtt = s->priv_data;
  161. return ff_subtitles_queue_seek(&webvtt->q, s, stream_index,
  162. min_ts, ts, max_ts, flags);
  163. }
  164. static int webvtt_read_close(AVFormatContext *s)
  165. {
  166. WebVTTContext *webvtt = s->priv_data;
  167. ff_subtitles_queue_clean(&webvtt->q);
  168. return 0;
  169. }
  170. #define OFFSET(x) offsetof(WebVTTContext, x)
  171. #define KIND_FLAGS AV_OPT_FLAG_SUBTITLE_PARAM
  172. static const AVOption options[] = {
  173. { "kind", "Set kind of WebVTT track", OFFSET(kind), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, KIND_FLAGS, "webvtt_kind" },
  174. { "subtitles", "WebVTT subtitles kind", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, 0, "webvtt_kind" },
  175. { "captions", "WebVTT captions kind", 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CAPTIONS }, INT_MIN, INT_MAX, 0, "webvtt_kind" },
  176. { "descriptions", "WebVTT descriptions kind", 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DESCRIPTIONS }, INT_MIN, INT_MAX, 0, "webvtt_kind" },
  177. { "metadata", "WebVTT metadata kind", 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_METADATA }, INT_MIN, INT_MAX, 0, "webvtt_kind" },
  178. { NULL }
  179. };
  180. static const AVClass webvtt_demuxer_class = {
  181. .class_name = "WebVTT demuxer",
  182. .item_name = av_default_item_name,
  183. .option = options,
  184. .version = LIBAVUTIL_VERSION_INT,
  185. };
  186. AVInputFormat ff_webvtt_demuxer = {
  187. .name = "webvtt",
  188. .long_name = NULL_IF_CONFIG_SMALL("WebVTT subtitle"),
  189. .priv_data_size = sizeof(WebVTTContext),
  190. .read_probe = webvtt_probe,
  191. .read_header = webvtt_read_header,
  192. .read_packet = webvtt_read_packet,
  193. .read_seek2 = webvtt_read_seek,
  194. .read_close = webvtt_read_close,
  195. .extensions = "vtt",
  196. .priv_class = &webvtt_demuxer_class,
  197. };