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"])