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.

200 lines
6.0KB

  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. typedef struct {
  31. FFDemuxSubtitlesQueue q;
  32. } WebVTTContext;
  33. static int webvtt_probe(AVProbeData *p)
  34. {
  35. const uint8_t *ptr = p->buf;
  36. if (AV_RB24(ptr) == 0xEFBBBF)
  37. ptr += 3; /* skip UTF-8 BOM */
  38. if (!strncmp(ptr, "WEBVTT", 6) &&
  39. (!ptr[6] || strchr("\n\r\t ", ptr[6])))
  40. return AVPROBE_SCORE_MAX;
  41. return 0;
  42. }
  43. static int64_t read_ts(const char *s)
  44. {
  45. int hh, mm, ss, ms;
  46. if (sscanf(s, "%u:%u:%u.%u", &hh, &mm, &ss, &ms) == 4) return (hh*3600LL + mm*60LL + ss) * 1000LL + ms;
  47. if (sscanf(s, "%u:%u.%u", &mm, &ss, &ms) == 3) return ( mm*60LL + ss) * 1000LL + ms;
  48. return AV_NOPTS_VALUE;
  49. }
  50. static int webvtt_read_header(AVFormatContext *s)
  51. {
  52. WebVTTContext *webvtt = s->priv_data;
  53. AVBPrint header, cue;
  54. int res = 0;
  55. AVStream *st = avformat_new_stream(s, NULL);
  56. if (!st)
  57. return AVERROR(ENOMEM);
  58. avpriv_set_pts_info(st, 64, 1, 1000);
  59. st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
  60. st->codec->codec_id = AV_CODEC_ID_WEBVTT;
  61. av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
  62. av_bprint_init(&cue, 0, AV_BPRINT_SIZE_UNLIMITED);
  63. for (;;) {
  64. int i;
  65. int64_t pos;
  66. AVPacket *sub;
  67. const char *p, *identifier, *settings;
  68. int identifier_len, settings_len;
  69. int64_t ts_start, ts_end;
  70. ff_subtitles_read_chunk(s->pb, &cue);
  71. if (!cue.len)
  72. break;
  73. p = identifier = cue.str;
  74. pos = avio_tell(s->pb);
  75. /* ignore header chunk */
  76. if (!strncmp(p, "\xEF\xBB\xBFWEBVTT", 9) ||
  77. !strncmp(p, "WEBVTT", 6))
  78. continue;
  79. /* optional cue identifier (can be a number like in SRT or some kind of
  80. * chaptering id) */
  81. for (i = 0; p[i] && p[i] != '\n' && p[i] != '\r'; i++) {
  82. if (!strncmp(p + i, "-->", 3)) {
  83. identifier = NULL;
  84. break;
  85. }
  86. }
  87. if (!identifier)
  88. identifier_len = 0;
  89. else {
  90. identifier_len = strcspn(p, "\r\n");
  91. p += identifier_len;
  92. if (*p == '\r')
  93. p++;
  94. if (*p == '\n')
  95. p++;
  96. }
  97. /* cue timestamps */
  98. if ((ts_start = read_ts(p)) == AV_NOPTS_VALUE)
  99. break;
  100. if (!(p = strstr(p, "-->")))
  101. break;
  102. p += 3;
  103. do p++; while (*p == ' ' || *p == '\t');
  104. if ((ts_end = read_ts(p)) == AV_NOPTS_VALUE)
  105. break;
  106. /* optional cue settings */
  107. p += strcspn(p, "\n\t ");
  108. while (*p == '\t' || *p == ' ')
  109. p++;
  110. settings = p;
  111. settings_len = strcspn(p, "\r\n");
  112. p += settings_len;
  113. if (*p == '\r')
  114. p++;
  115. if (*p == '\n')
  116. p++;
  117. /* create packet */
  118. sub = ff_subtitles_queue_insert(&webvtt->q, p, strlen(p), 0);
  119. if (!sub) {
  120. res = AVERROR(ENOMEM);
  121. goto end;
  122. }
  123. sub->pos = pos;
  124. sub->pts = ts_start;
  125. sub->duration = ts_end - ts_start;
  126. #define SET_SIDE_DATA(name, type) do { \
  127. if (name##_len) { \
  128. uint8_t *buf = av_packet_new_side_data(sub, type, name##_len); \
  129. if (!buf) { \
  130. res = AVERROR(ENOMEM); \
  131. goto end; \
  132. } \
  133. memcpy(buf, name, name##_len); \
  134. } \
  135. } while (0)
  136. SET_SIDE_DATA(identifier, AV_PKT_DATA_WEBVTT_IDENTIFIER);
  137. SET_SIDE_DATA(settings, AV_PKT_DATA_WEBVTT_SETTINGS);
  138. }
  139. ff_subtitles_queue_finalize(&webvtt->q);
  140. end:
  141. av_bprint_finalize(&cue, NULL);
  142. av_bprint_finalize(&header, NULL);
  143. return res;
  144. }
  145. static int webvtt_read_packet(AVFormatContext *s, AVPacket *pkt)
  146. {
  147. WebVTTContext *webvtt = s->priv_data;
  148. return ff_subtitles_queue_read_packet(&webvtt->q, pkt);
  149. }
  150. static int webvtt_read_seek(AVFormatContext *s, int stream_index,
  151. int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
  152. {
  153. WebVTTContext *webvtt = s->priv_data;
  154. return ff_subtitles_queue_seek(&webvtt->q, s, stream_index,
  155. min_ts, ts, max_ts, flags);
  156. }
  157. static int webvtt_read_close(AVFormatContext *s)
  158. {
  159. WebVTTContext *webvtt = s->priv_data;
  160. ff_subtitles_queue_clean(&webvtt->q);
  161. return 0;
  162. }
  163. AVInputFormat ff_webvtt_demuxer = {
  164. .name = "webvtt",
  165. .long_name = NULL_IF_CONFIG_SMALL("WebVTT subtitle"),
  166. .priv_data_size = sizeof(WebVTTContext),
  167. .read_probe = webvtt_probe,
  168. .read_header = webvtt_read_header,
  169. .read_packet = webvtt_read_packet,
  170. .read_seek2 = webvtt_read_seek,
  171. .read_close = webvtt_read_close,
  172. .extensions = "vtt",
  173. };