Skip to content

Commit

Permalink
mp4box splitr doesn't take any argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouqueau committed Oct 19, 2024
1 parent 9c26192 commit 5613808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/mp4box/mp4box.c
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ MP4BoxArg m4b_split_args[] =
MP4BOX_ARG("split", "split in files of given max duration (float number) in seconds. A trailing unit can be specified:\n"
"- `M`, `m`: duration is in minutes\n"
"- `H`, `h`: size is in hours", GF_ARG_STRING, 0, parse_split, 0, ARG_IS_FUN),
MP4BOX_ARG_ALT("split-rap", "splitr", "split in files at each new RAP", GF_ARG_STRING, 0, parse_split, 1, ARG_IS_FUN),
MP4BOX_ARG_ALT("split-rap", "splitr", "split in files at each new RAP", GF_ARG_BOOL, 0, parse_split, 1, ARG_IS_FUN),
MP4BOX_ARG_ALT("split-size", "splits", "split in files of given max size (integer number) in kilobytes. A trailing unit can be specified:\n"
"- `M`, `m`: size is in megabytes\n"
"- `G`, `g`: size is in gigabytes", GF_ARG_STRING, 0, parse_split, 2, ARG_IS_FUN),
Expand Down

0 comments on commit 5613808

Please sign in to comment.