From fea9aded03f795cfea3e1710a5d1024d41895720 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Wed, 17 Sep 2014 13:35:48 +0200 Subject: [PATCH] gst-trick-mode.py: pass the speed rate as a command line argument --- python/gst-trick-mode.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/python/gst-trick-mode.py b/python/gst-trick-mode.py index 0bb5877..45e7af2 100755 --- a/python/gst-trick-mode.py +++ b/python/gst-trick-mode.py @@ -72,15 +72,16 @@ class Player: def main(args): def usage(): - sys.stdout.write("usage: %s \n" % args[0]) + sys.stdout.write("usage: %s \n" % args[0]) - if len(args) != 2: + if len(args) != 3: usage() sys.exit(1) uri = Gst.filename_to_uri(args[1]) + rate = float(args[2]) - player = Player(uri, 3.0) + player = Player(uri, rate) player.run() if __name__ == '__main__': -- 2.1.4