diff --git a/libavformat/lrcenc.c b/libavformat/lrcenc.c
index 7570529..37380cf 100644
--- a/libavformat/lrcenc.c
+++ b/libavformat/lrcenc.c
@@ -33,10 +33,19 @@
 #include "libavutil/log.h"
 #include "libavutil/macros.h"
 
+typedef struct LrcContext {
+    /**
+     * Look ahead timestamp pts + duration
+     */
+    int64_t lookahead_te;
+} LrcContext;
+
 static int lrc_write_header(AVFormatContext *s)
 {
     const AVDictionaryEntry *metadata_item;
+    LrcContext *lc = s->priv_data;
 
+    lc->lookahead_te = 0;
     if(s->streams[0]->codecpar->codec_id != AV_CODEC_ID_SUBRIP &&
        s->streams[0]->codecpar->codec_id != AV_CODEC_ID_TEXT) {
         av_log(s, AV_LOG_ERROR, "Unsupported subtitle codec: %s\n",
@@ -77,6 +86,7 @@ static int lrc_write_header(AVFormatContext *s)
 
 static int lrc_write_packet(AVFormatContext *s, AVPacket *pkt)
 {
+    LrcContext *lc = s->priv_data;
     if(pkt->pts != AV_NOPTS_VALUE) {
         const uint8_t *line = pkt->data;
         const uint8_t *end  = pkt->data + pkt->size;
@@ -91,6 +101,8 @@ static int lrc_write_packet(AVFormatContext *s, AVPacket *pkt)
         while(line) {
             const uint8_t *next_line = memchr(line, '\n', end - line);
             size_t size = end - line;
+            const int64_t te = lc->lookahead_te;
+            lc->lookahead_te = pkt->pts + pkt->duration;
 
             if (next_line) {
                 size = next_line - line;
@@ -103,6 +115,14 @@ static int lrc_write_packet(AVFormatContext *s, AVPacket *pkt)
                        "Subtitle starts with '[', may cause problems with LRC format.\n");
             }
 
+            /* Verify whether a blank line is required between the two lines */
+            if (te < pkt->pts && pkt->pts - te >= 10) {
+                avio_printf(s->pb, "[%02"PRIu64":%02"PRIu64".%02"PRIu64"]\n",
+                        (FFABS64U(te) / 6000),
+                        ((FFABS64U(te) / 100) % 60),
+                        (FFABS64U(te) % 100));
+            }
+
             /* Offset feature of LRC can easily make pts negative,
              * we just output it directly and let the player drop it. */
             avio_write(s->pb, "[-", 1 + (pkt->pts < 0));
@@ -129,7 +149,7 @@ const FFOutputFormat ff_lrc_muxer = {
     .p.audio_codec    = AV_CODEC_ID_NONE,
     .p.subtitle_codec = AV_CODEC_ID_SUBRIP,
     .flags_internal   = FF_OFMT_FLAG_MAX_ONE_OF_EACH,
-    .priv_data_size = 0,
+    .priv_data_size = sizeof(LrcContext),
     .write_header   = lrc_write_header,
     .write_packet   = lrc_write_packet,
 };
