annotate test/test-vampipe-server.sh @ 42:91f5c92d3bf7

Some JSON fixes and a quick test program
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 23 Aug 2016 12:04:49 +0100
parents 1307d0d7e3ed
children e90fd30990eb
rev   line source
c@36 1 #!/bin/bash
c@36 2
c@36 3 ( bin/vampipe-convert request -i json -o capnp |
c@36 4 VAMP_PATH=./vamp-plugin-sdk/examples bin/vampipe-server |
c@36 5 bin/vampipe-convert response -i capnp -o json ) <<EOF
c@42 6 {"type":"list"}
c@36 7 {"type":"load","content": {"pluginKey":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
c@36 8 {"type":"configure","content":{"pluginHandle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
c@36 9 {"type":"process","content": {"pluginHandle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [{"values": [1,2,3,4,5,6,7,8]}]}}}
c@36 10 {"type":"finish","content": {"pluginHandle": 1}}
c@36 11 EOF
c@36 12