[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
ffmpeg_switches = {
"source": source,
"target": target,
"loglevel": "-loglevel %s" % options["loglevel"],
"resolution": "-s %s" % options["resolution"],
"preselect": "-vpre %s" % options["preselect"],
"resize": "-vf scale=-1:%s" % options.get("resize"),
"bitrate": "-b %s" % options["bitrate"],
"format": "-f %s" % options["format"],
"binary": "%s" % options["binary"]
}
"source": source,
"target": target,
"loglevel": "-loglevel %s" % options["loglevel"],
"resolution": "-s %s" % options["resolution"],
"preselect": "-vpre %s" % options["preselect"],
"resize": "-vf scale=-1:%s" % options.get("resize"),
"bitrate": "-b %s" % options["bitrate"],
"format": "-f %s" % options["format"],
"binary": "%s" % options["binary"]
}
warning("Generation", source)