[FFmpeg-cvslog] avformat/hls: Fix flash1.bogulus.cfd support
Michael Niedermayer
git at videolan.org
Mon Aug 4 23:56:09 EEST 2025
ffmpeg | branch: release/7.0 | Michael Niedermayer <michael at niedermayer.cc> | Wed Apr 30 01:05:18 2025 +0200| [d0f89c457d77d864def2d86e8c424dfbedb523f7] | committer: Michael Niedermayer
avformat/hls: Fix flash1.bogulus.cfd support
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 75be669ca1c986cc3510a5ad847e82785e2682e0)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d0f89c457d77d864def2d86e8c424dfbedb523f7
---
libavformat/hls.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/libavformat/hls.c b/libavformat/hls.c
index f9738e65a7..3c9f1d2be5 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -760,8 +760,11 @@ static int test_segment(AVFormatContext *s, const AVInputFormat *in_fmt, struct
+ 2*(ff_match_url_ext(seg->url, "ts,m2t,m2ts,mts,mpg,m4s,mpeg,mpegts") > 0);
}
} else if (!strcmp(in_fmt->name, "mpegts")) {
- matchF = av_match_ext( seg->url, "ts,m2t,m2ts,mts,mpg,m4s,mpeg,mpegts")
- + 2*(ff_match_url_ext(seg->url, "ts,m2t,m2ts,mts,mpg,m4s,mpeg,mpegts") > 0);
+ const char *str = "ts,m2t,m2ts,mts,mpg,m4s,mpeg,mpegts"
+ ",html" // https://flash1.bogulus.cfd/
+ ;
+ matchF = av_match_ext( seg->url, str)
+ + 2*(ff_match_url_ext(seg->url, str) > 0);
}
if (!(matchA & matchF)) {
@@ -2638,6 +2641,7 @@ static const AVOption hls_options[] = {
",cmfv,cmfa" // Ticket11526 www.nicovideo.jp
",ec3" // part of Ticket11435 (Elisa Viihde (Finnish online recording service))
",fmp4" // https://github.com/yt-dlp/yt-dlp/issues/12700
+ ",html" // https://flash1.bogulus.cfd/
},
INT_MIN, INT_MAX, FLAGS},
{"extension_picky", "Be picky with all extensions matching",
More information about the ffmpeg-cvslog
mailing list