From dcccd74440ac048425866cb8839aab82cff952ed Mon Sep 17 00:00:00 2001 From: pux Date: Tue, 11 Feb 2020 19:17:46 +0100 Subject: skel gooey proj, reference test script --- nstvid.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 nstvid.py (limited to 'nstvid.py') diff --git a/nstvid.py b/nstvid.py new file mode 100644 index 0000000..53c443c --- /dev/null +++ b/nstvid.py @@ -0,0 +1,21 @@ +#!/bin/env python + +from gooey import Gooey, GooeyParser + +@Gooey(default_size=(800, 600), terminal_font_color="FFFFFF", + header_bg_color="#000000") +def init(): + parser = GooeyParser(description = \ + "nstvid - Neural Style Transfer Video Creator") + parser.add_argument("style_image", help="Style image", \ + widget="FileChooser") + parser.add_argument("input_video", help="Source", widget="FileChooser") + params = parser.parse_args() + return params + +def main(): + pass + +if __name__ == '__main__': + init() + main() -- cgit v1.2.2-1-g5e49