vban-cmd-python/__main__.py
onyx-and-iris 83429e17ad edits to tests
add more tests to higher.

added opts to tests.

removed delay, max_polls from runmany, not required for these tests.
2022-02-28 18:14:31 +00:00

21 lines
578 B
Python

import vban_cmd
def main():
with vban_cmd.connect('potato', ip=ip, port=port, streamname=streamname, bps=bps, channel=channel) as vban:
for param in ['A1', 'A2', 'A3', 'A4', 'A5', 'B1', 'B2', 'B3', 'mono', 'mute']:
setattr(vban.strip[0], param, True)
print(getattr(vban.strip[0], param))
setattr(vban.strip[0], param, False)
print(getattr(vban.strip[0], param))
if __name__ == '__main__':
kind_id = 'potato'
ip = 'ws.local'
port=6980
streamname = 'testing'
bps = 57600
channel=3
main()