diff options
author | pux <pux@pux.dom> | 2020-02-21 22:28:57 +0100 |
---|---|---|
committer | pux <pux@pux.dom> | 2020-02-21 22:28:57 +0100 |
commit | debf723bb42cbb7acd0d4daf4a5c48cb7d21da7a (patch) | |
tree | 75f0aff6ff1538752fedd1192b9e39fcc7766cfc | |
parent | e6ddd806775ffaddab997f19b0008ec893f766ff (diff) | |
download | nstvid-debf723bb42cbb7acd0d4daf4a5c48cb7d21da7a.tar.gz nstvid-debf723bb42cbb7acd0d4daf4a5c48cb7d21da7a.tar.bz2 nstvid-debf723bb42cbb7acd0d4daf4a5c48cb7d21da7a.zip |
79char fix
-rwxr-xr-x | nstvid.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,8 @@ def init(): parser = GooeyParser(description = \ "nstvid - Neural Style Transfer Video Creator") - parser.add_argument("style_image", help="Style image(s) separated by comma", \ + parser.add_argument("style_image", \ + help="Style image(s) separated by comma", \ widget="FileChooser") parser.add_argument("input_video", help="Source video", \ widget="FileChooser", default="/home/pux/tmp/nstest/in.mp4") |