File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -607,7 +607,7 @@ int main(int argc, argv_t* argv[]) {
607
607
}
608
608
609
609
debug = 1 ;
610
- } else if (strcmp (argument -> key , "prefer-ffmpegc-muxer " ) == 0 ) {
610
+ } else if (strcmp (argument -> key , "prefer-ffmpegc" ) == 0 ) {
611
611
if (prefer_ffmpegc ) {
612
612
err = M3U8ERR_CLI_DUPLICATE_ARGUMENT ;
613
613
goto end ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This file is auto-generated. Use the ../tools/program_help.h.py tool to regenera
6
6
#define PROGRAM_HELP_H
7
7
8
8
#define PROGRAM_HELP \
9
- "usage: kai [-h] [-v] -u URL [-k] [-A USER_AGENT] [-x URI] [--doh-url URL] [-e URL] [-r COUNT] [--debug] [-S] [--select-media MEDIA] [--select-stream VARIANT_STREAM] [--disable-autoselection] [--disable-progress-meter] [--prefer-ffmpegc-muxer ] [-c CONCURRENCY] -o FILENAME\n" \
9
+ "usage: kai [-h] [-v] -u URL [-k] [-A USER_AGENT] [-x URI] [--doh-url URL] [-e URL] [-r COUNT] [--debug] [-S] [--select-media MEDIA] [--select-stream VARIANT_STREAM] [--disable-autoselection] [--disable-progress-meter] [--prefer-ffmpegc] [-c CONCURRENCY] -o FILENAME\n" \
10
10
"\n" \
11
11
"A command-line utility to download contents from M3U8 playlists.\n" \
12
12
"\n" \
@@ -32,8 +32,7 @@ This file is auto-generated. Use the ../tools/program_help.h.py tool to regenera
32
32
" Avoid autoselection of streams based on predefined preferences set by the master playlist.\n" \
33
33
" --disable-progress-meter\n" \
34
34
" Disable showing download progress meter.\n" \
35
- " --prefer-ffmpegc-muxer\n" \
36
- " Prefer using the FFmpeg CLI tool instead of the builtin implementation when muxing media streams.\n" \
35
+ " --prefer-ffmpegc Prefer using the FFmpeg CLI tool instead of the builtin implementation when muxing media streams.\n" \
37
36
" -c CONCURRENCY, --concurrency CONCURRENCY\n" \
38
37
" Specify how many media segments should be downloaded simultaneously. Defaults to 1.\n" \
39
38
" -o FILENAME, --output FILENAME\n" \
Original file line number Diff line number Diff line change 124
124
)
125
125
126
126
parser .add_argument (
127
- "--prefer-ffmpegc-muxer " ,
127
+ "--prefer-ffmpegc" ,
128
128
required = False ,
129
129
action = "store_true" ,
130
130
help = "Prefer using the FFmpeg CLI tool instead of the builtin implementation when muxing media streams."
You can’t perform that action at this time.
0 commit comments