FFmpeg
lrcenc.c
Go to the documentation of this file.
1 /*
2  * LRC lyrics file format decoder
3  * Copyright (c) 2014 StarBrilliant <m13253@hotmail.com>
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21 
22 #include <inttypes.h>
23 #include <stdint.h>
24 #include <string.h>
25 
26 #include "avformat.h"
27 #include "internal.h"
28 #include "lrc.h"
29 #include "metadata.h"
30 #include "version.h"
31 #include "libavutil/dict.h"
32 #include "libavutil/log.h"
33 #include "libavutil/macros.h"
34 
36 {
37  const AVDictionaryEntry *metadata_item;
38 
39  if(s->nb_streams != 1 ||
40  s->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE) {
42  "LRC supports only a single subtitle stream.\n");
43  return AVERROR(EINVAL);
44  }
45  if(s->streams[0]->codecpar->codec_id != AV_CODEC_ID_SUBRIP &&
46  s->streams[0]->codecpar->codec_id != AV_CODEC_ID_TEXT) {
47  av_log(s, AV_LOG_ERROR, "Unsupported subtitle codec: %s\n",
48  avcodec_get_name(s->streams[0]->codecpar->codec_id));
49  return AVERROR(EINVAL);
50  }
51  avpriv_set_pts_info(s->streams[0], 64, 1, 100);
52 
55  if(!(s->flags & AVFMT_FLAG_BITEXACT)) { // avoid breaking regression tests
56  /* LRC provides a metadata slot for specifying encoder version
57  * in addition to encoder name. We will store LIBAVFORMAT_VERSION
58  * to it.
59  */
60  av_dict_set(&s->metadata, "ve", AV_STRINGIFY(LIBAVFORMAT_VERSION), 0);
61  } else {
62  av_dict_set(&s->metadata, "ve", NULL, 0);
63  }
64  for(metadata_item = NULL;
65  (metadata_item = av_dict_get(s->metadata, "", metadata_item,
67  char *delim;
68  if(!metadata_item->value[0]) {
69  continue;
70  }
71  while((delim = strchr(metadata_item->value, '\n'))) {
72  *delim = ' ';
73  }
74  while((delim = strchr(metadata_item->value, '\r'))) {
75  *delim = ' ';
76  }
77  avio_printf(s->pb, "[%s:%s]\n",
78  metadata_item->key, metadata_item->value);
79  }
80  avio_w8(s->pb, '\n');
81  return 0;
82 }
83 
85 {
86  if(pkt->pts != AV_NOPTS_VALUE) {
87  const uint8_t *line = pkt->data;
88  const uint8_t *end = pkt->data + pkt->size;
89 
90  while (end > line && (end[-1] == '\n' || end[-1] == '\r'))
91  end--;
92  if (line != end) {
93  while (line[0] == '\n' || line[0] == '\r')
94  line++; // Skip first empty lines
95  }
96 
97  while(line) {
98  const uint8_t *next_line = memchr(line, '\n', end - line);
99  size_t size = end - line;
100 
101  if (next_line) {
102  size = next_line - line;
103  if (next_line > line && next_line[-1] == '\r')
104  size--;
105  next_line++;
106  }
107  if(line[0] == '[') {
109  "Subtitle starts with '[', may cause problems with LRC format.\n");
110  }
111 
112  /* Offset feature of LRC can easily make pts negative,
113  * we just output it directly and let the player drop it. */
114  avio_write(s->pb, "[-", 1 + (pkt->pts < 0));
115  avio_printf(s->pb, "%02"PRIu64":%02"PRIu64".%02"PRIu64"]",
116  (FFABS64U(pkt->pts) / 6000),
117  ((FFABS64U(pkt->pts) / 100) % 60),
118  (FFABS64U(pkt->pts) % 100));
119 
120  avio_write(s->pb, line, size);
121  avio_w8(s->pb, '\n');
122  line = next_line;
123  }
124  }
125  return 0;
126 }
127 
129  .name = "lrc",
130  .long_name = NULL_IF_CONFIG_SMALL("LRC lyrics"),
131  .extensions = "lrc",
132  .priv_data_size = 0,
133  .write_header = lrc_write_header,
134  .write_packet = lrc_write_packet,
137  .subtitle_codec = AV_CODEC_ID_SUBRIP
138 };
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
AVOutputFormat::name
const char * name
Definition: avformat.h:504
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AVFMT_VARIABLE_FPS
#define AVFMT_VARIABLE_FPS
Format allows variable fps.
Definition: avformat.h:478
AVPacket::data
uint8_t * data
Definition: packet.h:373
AV_DICT_IGNORE_SUFFIX
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key,...
Definition: dict.h:68
macros.h
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_dict_get
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:40
s
#define s(width, name)
Definition: cbs_vp9.c:257
lrc.h
AVDictionaryEntry::key
char * key
Definition: dict.h:80
lrc_write_packet
static int lrc_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: lrcenc.c:84
ff_lrc_metadata_conv
const AVMetadataConv ff_lrc_metadata_conv[]
Definition: lrc.c:25
AVFormatContext
Format I/O context.
Definition: avformat.h:1200
internal.h
ff_metadata_conv_ctx
void ff_metadata_conv_ctx(AVFormatContext *ctx, const AVMetadataConv *d_conv, const AVMetadataConv *s_conv)
Definition: metadata.c:59
NULL
#define NULL
Definition: coverity.c:32
avio_w8
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:210
AVPacket::size
int size
Definition: packet.h:374
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
size
int size
Definition: twinvq_data.h:10344
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
avio_write
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:232
line
Definition: graph2dot.c:48
ff_standardize_creation_time
int ff_standardize_creation_time(AVFormatContext *s)
Standardize creation_time metadata in AVFormatContext to an ISO-8601 timestamp string.
Definition: utils.c:1883
avcodec_get_name
const char * avcodec_get_name(enum AVCodecID id)
Get the name of a codec.
Definition: utils.c:443
log.h
AVFMT_GLOBALHEADER
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition: avformat.h:474
AVOutputFormat
Definition: avformat.h:503
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:366
AV_CODEC_ID_SUBRIP
@ AV_CODEC_ID_SUBRIP
Definition: codec_id.h:539
AV_STRINGIFY
#define AV_STRINGIFY(s)
Definition: macros.h:66
AVFMT_TS_NEGATIVE
#define AVFMT_TS_NEGATIVE
Format allows muxing negative timestamps.
Definition: avformat.h:488
AVFMT_TS_NONSTRICT
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:485
version.h
LIBAVFORMAT_VERSION
#define LIBAVFORMAT_VERSION
Definition: version.h:41
AVFMT_FLAG_BITEXACT
#define AVFMT_FLAG_BITEXACT
When muxing, try to avoid writing any random/volatile data to the output.
Definition: avformat.h:1335
metadata.h
avformat.h
ff_lrc_muxer
const AVOutputFormat ff_lrc_muxer
Definition: lrcenc.c:128
dict.h
AV_CODEC_ID_TEXT
@ AV_CODEC_ID_TEXT
raw UTF-8 text
Definition: codec_id.h:524
avio_printf
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
Writes a formatted string to the context.
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:1196
AVDictionaryEntry
Definition: dict.h:79
AVPacket
This structure stores compressed data.
Definition: packet.h:350
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
FFABS64U
#define FFABS64U(a)
Definition: common.h:83
AVDictionaryEntry::value
char * value
Definition: dict.h:81
line
The official guide to swscale for confused that consecutive non overlapping rectangles of slice_bottom special converter These generally are unscaled converters of common like for each output line the vertical scaler pulls lines from a ring buffer When the ring buffer does not contain the wanted line
Definition: swscale.txt:40
lrc_write_header
static int lrc_write_header(AVFormatContext *s)
Definition: lrcenc.c:35