ffmpeg-args flag message
This commit is contained in:
parent
02572e8eb0
commit
ab3b47d66b
1 changed files with 6 additions and 1 deletions
7
main.go
7
main.go
|
@ -177,7 +177,12 @@ func main() {
|
|||
|
||||
u2vCmd := flag.NewFlagSet("u2v", flag.ExitOnError)
|
||||
u2vCmd.StringVar(&flags.outputFileName, "o", "", "Converted Ugoira output file")
|
||||
u2vCmd.StringVar(&flags.ffmpegArgs, "ffmpeg-args", "", "Arguments to be supplied to FFmpeg")
|
||||
u2vCmd.StringVar(
|
||||
&flags.ffmpegArgs,
|
||||
"ffmpeg-args",
|
||||
"",
|
||||
"Arguments to be supplied to FFmpeg (a single `%s` acts as a placeholder for the output file name)",
|
||||
)
|
||||
|
||||
if len(os.Args) < 2 {
|
||||
die("expected command")
|
||||
|
|
Loading…
Add table
Reference in a new issue