* [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions
@ 2025-04-29 23:44 Michael Niedermayer
2025-04-29 23:44 ` [FFmpeg-devel] [PATCH 2/2] avformat/hls: Fix flash1.bogulus.cfd support Michael Niedermayer
2025-05-02 20:49 ` [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions Michael Niedermayer
0 siblings, 2 replies; 3+ messages in thread
From: Michael Niedermayer @ 2025-04-29 23:44 UTC (permalink / raw)
To: FFmpeg development discussions and patches
This allows the user to set only the one that is needed to ALL or a
specific "wrong" extension like html
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
libavformat/hls.c | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 84a5e66149b..34a36f68f1f 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -224,6 +224,7 @@ typedef struct HLSContext {
AVDictionary *avio_opts;
AVDictionary *seg_format_opts;
char *allowed_extensions;
+ char *allowed_segment_extensions;
int extension_picky;
int max_reload;
int http_persistent;
@@ -740,12 +741,12 @@ static int test_segment(AVFormatContext *s, const AVInputFormat *in_fmt, struct
if (!c->extension_picky)
return 0;
- if (strcmp(c->allowed_extensions, "ALL"))
- matchA = av_match_ext (seg->url, c->allowed_extensions)
- + 2*(ff_match_url_ext(seg->url, c->allowed_extensions) > 0);
+ if (strcmp(c->allowed_segment_extensions, "ALL"))
+ matchA = av_match_ext (seg->url, c->allowed_segment_extensions)
+ + 2*(ff_match_url_ext(seg->url, c->allowed_segment_extensions) > 0);
if (!matchA) {
- av_log(s, AV_LOG_ERROR, "URL %s is not in allowed_extensions, consider updating hls.c and submitting a patch to ffmpeg-devel, if this should be added\n", seg->url);
+ av_log(s, AV_LOG_ERROR, "URL %s is not in allowed_segment_extensions, consider updating hls.c and submitting a patch to ffmpeg-devel, if this should be added\n", seg->url);
return AVERROR_INVALIDDATA;
}
@@ -2774,6 +2775,14 @@ static const AVOption hls_options[] = {
",fmp4" // https://github.com/yt-dlp/yt-dlp/issues/12700
},
INT_MIN, INT_MAX, FLAGS},
+ {"allowed_segment_extensions", "List of file extensions that hls is allowed to access",
+ OFFSET(allowed_segment_extensions), AV_OPT_TYPE_STRING,
+ {.str = "3gp,aac,avi,ac3,eac3,flac,mkv,m3u8,m4a,m4s,m4v,mpg,mov,mp2,mp3,mp4,mpeg,mpegts,ogg,ogv,oga,ts,vob,vtt,wav,webvtt"
+ ",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
+ },
+ INT_MIN, INT_MAX, FLAGS},
{"extension_picky", "Be picky with all extensions matching",
OFFSET(extension_picky), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, FLAGS},
{"max_reload", "Maximum number of times a insufficient list is attempted to be reloaded",
--
2.49.0
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 3+ messages in thread
* [FFmpeg-devel] [PATCH 2/2] avformat/hls: Fix flash1.bogulus.cfd support
2025-04-29 23:44 [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions Michael Niedermayer
@ 2025-04-29 23:44 ` Michael Niedermayer
2025-05-02 20:49 ` [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions Michael Niedermayer
1 sibling, 0 replies; 3+ messages in thread
From: Michael Niedermayer @ 2025-04-29 23:44 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
libavformat/hls.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 34a36f68f1f..1025ccd2f58 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);
} else if (!strcmp(in_fmt->name, "webvtt")) {
matchF = av_match_ext( seg->url, "vtt,webvtt")
+ 2*(ff_match_url_ext(seg->url, "vtt,webvtt") > 0);
@@ -2781,6 +2784,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",
--
2.49.0
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions
2025-04-29 23:44 [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions Michael Niedermayer
2025-04-29 23:44 ` [FFmpeg-devel] [PATCH 2/2] avformat/hls: Fix flash1.bogulus.cfd support Michael Niedermayer
@ 2025-05-02 20:49 ` Michael Niedermayer
1 sibling, 0 replies; 3+ messages in thread
From: Michael Niedermayer @ 2025-05-02 20:49 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1.1: Type: text/plain, Size: 561 bytes --]
On Wed, Apr 30, 2025 at 01:44:04AM +0200, Michael Niedermayer wrote:
> This allows the user to set only the one that is needed to ALL or a
> specific "wrong" extension like html
>
> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
> ---
> libavformat/hls.c | 17 +++++++++++++----
> 1 file changed, 13 insertions(+), 4 deletions(-)
will apply pacthset
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
The greatest way to live with honor in this world is to be what we pretend
to be. -- Socrates
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-05-02 20:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-29 23:44 [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions Michael Niedermayer
2025-04-29 23:44 ` [FFmpeg-devel] [PATCH 2/2] avformat/hls: Fix flash1.bogulus.cfd support Michael Niedermayer
2025-05-02 20:49 ` [FFmpeg-devel] [PATCH 1/2] avformat/hls: Split allowed_segment_extensions off allowed_extensions Michael Niedermayer
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git