56 parser = argparse.ArgumentParser(description=HELP, formatter_class=Formatter)
57 parser.add_argument(
'--bind-address',
'-b', default=
'tcp://localhost:5555', help=
'specify bind address used to communicate with ZMQ')
59 args = parser.parse_args()
61 LavfiCmd(args.bind_address).cmdloop(
'FFmpeg libavfilter interactive shell')
62 except KeyboardInterrupt: