2 * SubRip subtitle muxer
3 * Copyright (c) 2012 Nicolas George <nicolas.george@normalesup.org>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "libavutil/log.h"
25 #include "libavutil/intreadwrite.h"
27 /* TODO: add options for:
33 typedef struct SRTContext{
37 static int srt_write_header(AVFormatContext *avf)
39 SRTContext *srt = avf->priv_data;
41 if (avf->nb_streams != 1 ||
42 avf->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE) {
43 av_log(avf, AV_LOG_ERROR,
44 "SRT supports only a single subtitles stream.\n");
45 return AVERROR(EINVAL);
47 if (avf->streams[0]->codecpar->codec_id != AV_CODEC_ID_TEXT &&
48 avf->streams[0]->codecpar->codec_id != AV_CODEC_ID_SUBRIP) {
49 av_log(avf, AV_LOG_ERROR,
50 "Unsupported subtitles codec: %s\n",
51 avcodec_get_name(avf->streams[0]->codecpar->codec_id));
52 return AVERROR(EINVAL);
54 avpriv_set_pts_info(avf->streams[0], 64, 1, 1000);
59 static int srt_write_packet(AVFormatContext *avf, AVPacket *pkt)
61 SRTContext *srt = avf->priv_data;
63 int64_t s = pkt->pts, e, d = pkt->duration;
64 int size, x1 = -1, y1 = -1, x2 = -1, y2 = -1;
67 p = av_packet_get_side_data(pkt, AV_PKT_DATA_SUBTITLE_POSITION, &size);
68 if (p && size == 16) {
75 #if FF_API_CONVERGENCE_DURATION
76 FF_DISABLE_DEPRECATION_WARNINGS
78 /* For backward compatibility, fallback to convergence_duration. */
79 d = pkt->convergence_duration;
80 FF_ENABLE_DEPRECATION_WARNINGS
82 if (s == AV_NOPTS_VALUE || d < 0) {
83 av_log(avf, AV_LOG_WARNING,
84 "Insufficient timestamps in event number %d.\n", srt->index);
88 avio_printf(avf->pb, "%d\n%02d:%02d:%02d,%03d --> %02d:%02d:%02d,%03d",
90 (int)(s / 3600000), (int)(s / 60000) % 60,
91 (int)(s / 1000) % 60, (int)(s % 1000),
92 (int)(e / 3600000), (int)(e / 60000) % 60,
93 (int)(e / 1000) % 60, (int)(e % 1000));
95 avio_printf(avf->pb, " X1:%03d X2:%03d Y1:%03d Y2:%03d",
97 avio_printf(avf->pb, "\n");
99 avio_write(avf->pb, pkt->data, pkt->size);
100 avio_write(avf->pb, "\n\n", 2);
105 AVOutputFormat ff_srt_muxer = {
107 .long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
108 .mime_type = "application/x-subrip",
110 .priv_data_size = sizeof(SRTContext),
111 .write_header = srt_write_header,
112 .write_packet = srt_write_packet,
113 .flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT,
114 .subtitle_codec = AV_CODEC_ID_SUBRIP,