[mod] pep8

This commit is contained in:
Laurent Peuch 2016-05-04 09:40:12 +02:00
parent 04056bd876
commit 2595b004ce

View File

@ -57,16 +57,16 @@ class Video(object):
return return
ffmpeg_switches = { ffmpeg_switches = {
"source": source, "source": source,
"target": target, "target": target,
"loglevel": "-loglevel %s" % options["loglevel"], "loglevel": "-loglevel %s" % options["loglevel"],
"resolution": "-s %s" % options["resolution"], "resolution": "-s %s" % options["resolution"],
"preselect": "-vpre %s" % options["preselect"], "preselect": "-vpre %s" % options["preselect"],
"resize": "-vf scale=-1:%s" % options.get("resize"), "resize": "-vf scale=-1:%s" % options.get("resize"),
"bitrate": "-b %s" % options["bitrate"], "bitrate": "-b %s" % options["bitrate"],
"format": "-f %s" % options["format"], "format": "-f %s" % options["format"],
"binary": "%s" % options["binary"] "binary": "%s" % options["binary"]
} }
warning("Generation", source) warning("Generation", source)