From 042a0ef17f9c58ab188d878f07fd2d8080312bbf Mon Sep 17 00:00:00 2001 From: Adrien Beudin Date: Wed, 15 Mar 2017 22:00:49 +0100 Subject: [PATCH] fix typo --- prosopopee/prosopopee.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosopopee/prosopopee.py b/prosopopee/prosopopee.py index 1db28f3..81faca6 100644 --- a/prosopopee/prosopopee.py +++ b/prosopopee/prosopopee.py @@ -92,7 +92,7 @@ class Video(object): print(command) error(os.system(command) == 0, "%s command failed" % ffmpeg_switches["binary"]) else: - command = "{binary} {loglevel} -i {source} {video} {vbitrate} {othee} {audio} {abitrate} {resolution} {format} -y {target}".format(**ffmpeg_switches) + command = "{binary} {loglevel} -i {source} {video} {vbitrate} {other} {audio} {abitrate} {resolution} {format} -y {target}".format(**ffmpeg_switches) print(command) error(os.system(command) == 0, "%s command failed" % ffmpeg_switches["binary"])