vf_subtitles.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. /*
  2. * Copyright (c) 2011 Baptiste Coudurier
  3. * Copyright (c) 2011 Stefano Sabatini
  4. * Copyright (c) 2012 Clément Bœsch
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * Libass subtitles burning filter.
  25. *
  26. * @see{http://www.matroska.org/technical/specs/subtitles/ssa.html}
  27. */
  28. #include <ass/ass.h>
  29. #include "config.h"
  30. #if CONFIG_SUBTITLES_FILTER
  31. # include "libavcodec/avcodec.h"
  32. # include "libavformat/avformat.h"
  33. #endif
  34. #include "libavutil/avstring.h"
  35. #include "libavutil/imgutils.h"
  36. #include "libavutil/opt.h"
  37. #include "libavutil/parseutils.h"
  38. #include "drawutils.h"
  39. #include "avfilter.h"
  40. #include "internal.h"
  41. #include "formats.h"
  42. #include "video.h"
  43. typedef struct {
  44. const AVClass *class;
  45. ASS_Library *library;
  46. ASS_Renderer *renderer;
  47. ASS_Track *track;
  48. char *filename;
  49. char *charenc;
  50. int stream_index;
  51. uint8_t rgba_map[4];
  52. int pix_step[4]; ///< steps per pixel for each plane of the main output
  53. int original_w, original_h;
  54. FFDrawContext draw;
  55. } AssContext;
  56. #define OFFSET(x) offsetof(AssContext, x)
  57. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  58. #define COMMON_OPTIONS \
  59. {"filename", "set the filename of file to read", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS }, \
  60. {"f", "set the filename of file to read", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS }, \
  61. {"original_size", "set the size of the original video (used to scale fonts)", OFFSET(original_w), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS }, \
  62. /* libass supports a log level ranging from 0 to 7 */
  63. static const int ass_libavfilter_log_level_map[] = {
  64. AV_LOG_QUIET, /* 0 */
  65. AV_LOG_PANIC, /* 1 */
  66. AV_LOG_FATAL, /* 2 */
  67. AV_LOG_ERROR, /* 3 */
  68. AV_LOG_WARNING, /* 4 */
  69. AV_LOG_INFO, /* 5 */
  70. AV_LOG_VERBOSE, /* 6 */
  71. AV_LOG_DEBUG, /* 7 */
  72. };
  73. static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
  74. {
  75. int level = ass_libavfilter_log_level_map[ass_level];
  76. av_vlog(ctx, level, fmt, args);
  77. av_log(ctx, level, "\n");
  78. }
  79. static av_cold int init(AVFilterContext *ctx)
  80. {
  81. AssContext *ass = ctx->priv;
  82. if (!ass->filename) {
  83. av_log(ctx, AV_LOG_ERROR, "No filename provided!\n");
  84. return AVERROR(EINVAL);
  85. }
  86. ass->library = ass_library_init();
  87. if (!ass->library) {
  88. av_log(ctx, AV_LOG_ERROR, "Could not initialize libass.\n");
  89. return AVERROR(EINVAL);
  90. }
  91. ass_set_message_cb(ass->library, ass_log, ctx);
  92. ass->renderer = ass_renderer_init(ass->library);
  93. if (!ass->renderer) {
  94. av_log(ctx, AV_LOG_ERROR, "Could not initialize libass renderer.\n");
  95. return AVERROR(EINVAL);
  96. }
  97. return 0;
  98. }
  99. static av_cold void uninit(AVFilterContext *ctx)
  100. {
  101. AssContext *ass = ctx->priv;
  102. if (ass->track)
  103. ass_free_track(ass->track);
  104. if (ass->renderer)
  105. ass_renderer_done(ass->renderer);
  106. if (ass->library)
  107. ass_library_done(ass->library);
  108. }
  109. static int query_formats(AVFilterContext *ctx)
  110. {
  111. ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
  112. return 0;
  113. }
  114. static int config_input(AVFilterLink *inlink)
  115. {
  116. AssContext *ass = inlink->dst->priv;
  117. ff_draw_init(&ass->draw, inlink->format, 0);
  118. ass_set_frame_size (ass->renderer, inlink->w, inlink->h);
  119. if (ass->original_w && ass->original_h)
  120. ass_set_aspect_ratio(ass->renderer, (double)inlink->w / inlink->h,
  121. (double)ass->original_w / ass->original_h);
  122. return 0;
  123. }
  124. /* libass stores an RGBA color in the format RRGGBBTT, where TT is the transparency level */
  125. #define AR(c) ( (c)>>24)
  126. #define AG(c) (((c)>>16)&0xFF)
  127. #define AB(c) (((c)>>8) &0xFF)
  128. #define AA(c) ((0xFF-c) &0xFF)
  129. static void overlay_ass_image(AssContext *ass, AVFrame *picref,
  130. const ASS_Image *image)
  131. {
  132. for (; image; image = image->next) {
  133. uint8_t rgba_color[] = {AR(image->color), AG(image->color), AB(image->color), AA(image->color)};
  134. FFDrawColor color;
  135. ff_draw_color(&ass->draw, &color, rgba_color);
  136. ff_blend_mask(&ass->draw, &color,
  137. picref->data, picref->linesize,
  138. picref->width, picref->height,
  139. image->bitmap, image->stride, image->w, image->h,
  140. 3, 0, image->dst_x, image->dst_y);
  141. }
  142. }
  143. static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
  144. {
  145. AVFilterContext *ctx = inlink->dst;
  146. AVFilterLink *outlink = ctx->outputs[0];
  147. AssContext *ass = ctx->priv;
  148. int detect_change = 0;
  149. double time_ms = picref->pts * av_q2d(inlink->time_base) * 1000;
  150. ASS_Image *image = ass_render_frame(ass->renderer, ass->track,
  151. time_ms, &detect_change);
  152. if (detect_change)
  153. av_log(ctx, AV_LOG_DEBUG, "Change happened at time ms:%f\n", time_ms);
  154. overlay_ass_image(ass, picref, image);
  155. return ff_filter_frame(outlink, picref);
  156. }
  157. static const AVFilterPad ass_inputs[] = {
  158. {
  159. .name = "default",
  160. .type = AVMEDIA_TYPE_VIDEO,
  161. .filter_frame = filter_frame,
  162. .config_props = config_input,
  163. .needs_writable = 1,
  164. },
  165. { NULL }
  166. };
  167. static const AVFilterPad ass_outputs[] = {
  168. {
  169. .name = "default",
  170. .type = AVMEDIA_TYPE_VIDEO,
  171. },
  172. { NULL }
  173. };
  174. #if CONFIG_ASS_FILTER
  175. static const AVOption ass_options[] = {
  176. COMMON_OPTIONS
  177. {NULL},
  178. };
  179. AVFILTER_DEFINE_CLASS(ass);
  180. static av_cold int init_ass(AVFilterContext *ctx)
  181. {
  182. AssContext *ass = ctx->priv;
  183. int ret = init(ctx);
  184. if (ret < 0)
  185. return ret;
  186. /* Initialize fonts */
  187. ass_set_fonts(ass->renderer, NULL, NULL, 1, NULL, 1);
  188. ass->track = ass_read_file(ass->library, ass->filename, NULL);
  189. if (!ass->track) {
  190. av_log(ctx, AV_LOG_ERROR,
  191. "Could not create a libass track when reading file '%s'\n",
  192. ass->filename);
  193. return AVERROR(EINVAL);
  194. }
  195. return 0;
  196. }
  197. AVFilter ff_vf_ass = {
  198. .name = "ass",
  199. .description = NULL_IF_CONFIG_SMALL("Render ASS subtitles onto input video using the libass library."),
  200. .priv_size = sizeof(AssContext),
  201. .init = init_ass,
  202. .uninit = uninit,
  203. .query_formats = query_formats,
  204. .inputs = ass_inputs,
  205. .outputs = ass_outputs,
  206. .priv_class = &ass_class,
  207. };
  208. #endif
  209. #if CONFIG_SUBTITLES_FILTER
  210. static const AVOption subtitles_options[] = {
  211. COMMON_OPTIONS
  212. {"charenc", "set input character encoding", OFFSET(charenc), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS},
  213. {"stream_index", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS},
  214. {"si", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS},
  215. {NULL},
  216. };
  217. static const char * const font_mimetypes[] = {
  218. "application/x-truetype-font",
  219. "application/vnd.ms-opentype",
  220. "application/x-font-ttf",
  221. NULL
  222. };
  223. static int attachment_is_font(AVStream * st)
  224. {
  225. const AVDictionaryEntry *tag = NULL;
  226. int n;
  227. tag = av_dict_get(st->metadata, "mimetype", NULL, AV_DICT_MATCH_CASE);
  228. if (tag) {
  229. for (n = 0; font_mimetypes[n]; n++) {
  230. if (av_strcasecmp(font_mimetypes[n], tag->value) == 0)
  231. return 1;
  232. }
  233. }
  234. return 0;
  235. }
  236. AVFILTER_DEFINE_CLASS(subtitles);
  237. static av_cold int init_subtitles(AVFilterContext *ctx)
  238. {
  239. int j, ret, sid;
  240. int k = 0;
  241. AVDictionary *codec_opts = NULL;
  242. AVFormatContext *fmt = NULL;
  243. AVCodecContext *dec_ctx = NULL;
  244. AVCodec *dec = NULL;
  245. const AVCodecDescriptor *dec_desc;
  246. AVStream *st;
  247. AVPacket pkt;
  248. AssContext *ass = ctx->priv;
  249. /* Init libass */
  250. ret = init(ctx);
  251. if (ret < 0)
  252. return ret;
  253. ass->track = ass_new_track(ass->library);
  254. if (!ass->track) {
  255. av_log(ctx, AV_LOG_ERROR, "Could not create a libass track\n");
  256. return AVERROR(EINVAL);
  257. }
  258. /* Open subtitles file */
  259. ret = avformat_open_input(&fmt, ass->filename, NULL, NULL);
  260. if (ret < 0) {
  261. av_log(ctx, AV_LOG_ERROR, "Unable to open %s\n", ass->filename);
  262. goto end;
  263. }
  264. ret = avformat_find_stream_info(fmt, NULL);
  265. if (ret < 0)
  266. goto end;
  267. /* Locate subtitles stream */
  268. if (ass->stream_index < 0)
  269. ret = av_find_best_stream(fmt, AVMEDIA_TYPE_SUBTITLE, -1, -1, NULL, 0);
  270. else {
  271. ret = -1;
  272. if (ass->stream_index < fmt->nb_streams) {
  273. for (j = 0; j < fmt->nb_streams; j++) {
  274. if (fmt->streams[j]->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
  275. if (ass->stream_index == k) {
  276. ret = j;
  277. break;
  278. }
  279. k++;
  280. }
  281. }
  282. }
  283. }
  284. if (ret < 0) {
  285. av_log(ctx, AV_LOG_ERROR, "Unable to locate subtitle stream in %s\n",
  286. ass->filename);
  287. goto end;
  288. }
  289. sid = ret;
  290. st = fmt->streams[sid];
  291. /* Load attached fonts */
  292. for (j = 0; j < fmt->nb_streams; j++) {
  293. AVStream *st = fmt->streams[j];
  294. if (st->codec->codec_type == AVMEDIA_TYPE_ATTACHMENT &&
  295. attachment_is_font(st)) {
  296. const AVDictionaryEntry *tag = NULL;
  297. tag = av_dict_get(st->metadata, "filename", NULL,
  298. AV_DICT_MATCH_CASE);
  299. if (tag) {
  300. av_log(ctx, AV_LOG_DEBUG, "Loading attached font: %s\n",
  301. tag->value);
  302. ass_add_font(ass->library, tag->value,
  303. st->codec->extradata,
  304. st->codec->extradata_size);
  305. } else {
  306. av_log(ctx, AV_LOG_WARNING,
  307. "Font attachment has no filename, ignored.\n");
  308. }
  309. }
  310. }
  311. /* Initialize fonts */
  312. ass_set_fonts(ass->renderer, NULL, NULL, 1, NULL, 1);
  313. /* Open decoder */
  314. dec_ctx = st->codec;
  315. dec = avcodec_find_decoder(dec_ctx->codec_id);
  316. if (!dec) {
  317. av_log(ctx, AV_LOG_ERROR, "Failed to find subtitle codec %s\n",
  318. avcodec_get_name(dec_ctx->codec_id));
  319. return AVERROR(EINVAL);
  320. }
  321. dec_desc = avcodec_descriptor_get(dec_ctx->codec_id);
  322. if (dec_desc && !(dec_desc->props & AV_CODEC_PROP_TEXT_SUB)) {
  323. av_log(ctx, AV_LOG_ERROR,
  324. "Only text based subtitles are currently supported\n");
  325. return AVERROR_PATCHWELCOME;
  326. }
  327. if (ass->charenc)
  328. av_dict_set(&codec_opts, "sub_charenc", ass->charenc, 0);
  329. ret = avcodec_open2(dec_ctx, dec, &codec_opts);
  330. if (ret < 0)
  331. goto end;
  332. /* Decode subtitles and push them into the renderer (libass) */
  333. if (dec_ctx->subtitle_header)
  334. ass_process_codec_private(ass->track,
  335. dec_ctx->subtitle_header,
  336. dec_ctx->subtitle_header_size);
  337. av_init_packet(&pkt);
  338. pkt.data = NULL;
  339. pkt.size = 0;
  340. while (av_read_frame(fmt, &pkt) >= 0) {
  341. int i, got_subtitle;
  342. AVSubtitle sub = {0};
  343. if (pkt.stream_index == sid) {
  344. ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_subtitle, &pkt);
  345. if (ret < 0) {
  346. av_log(ctx, AV_LOG_WARNING, "Error decoding: %s (ignored)\n",
  347. av_err2str(ret));
  348. } else if (got_subtitle) {
  349. for (i = 0; i < sub.num_rects; i++) {
  350. char *ass_line = sub.rects[i]->ass;
  351. if (!ass_line)
  352. break;
  353. ass_process_data(ass->track, ass_line, strlen(ass_line));
  354. }
  355. }
  356. }
  357. av_free_packet(&pkt);
  358. avsubtitle_free(&sub);
  359. }
  360. end:
  361. av_dict_free(&codec_opts);
  362. if (dec_ctx)
  363. avcodec_close(dec_ctx);
  364. if (fmt)
  365. avformat_close_input(&fmt);
  366. return ret;
  367. }
  368. AVFilter ff_vf_subtitles = {
  369. .name = "subtitles",
  370. .description = NULL_IF_CONFIG_SMALL("Render text subtitles onto input video using the libass library."),
  371. .priv_size = sizeof(AssContext),
  372. .init = init_subtitles,
  373. .uninit = uninit,
  374. .query_formats = query_formats,
  375. .inputs = ass_inputs,
  376. .outputs = ass_outputs,
  377. .priv_class = &subtitles_class,
  378. };
  379. #endif