annotate test/test-vampipe-server.sh @ 55:38780f15ac8d
Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Mon, 19 Sep 2016 13:35:56 +0100 |
parents |
e90fd30990eb |
children |
72c43bc69616 |
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@52
|
5
|
c@52
|
6 # capnp decode capnproto/vamp.capnp VampResponse
|
c@52
|
7
|
c@52
|
8 bin/vampipe-convert response -i capnp -o json
|
c@52
|
9 ) <<EOF
|
c@42
|
10 {"type":"list"}
|
c@36
|
11 {"type":"load","content": {"pluginKey":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
|
c@36
|
12 {"type":"configure","content":{"pluginHandle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
|
c@36
|
13 {"type":"process","content": {"pluginHandle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [{"values": [1,2,3,4,5,6,7,8]}]}}}
|
c@36
|
14 {"type":"finish","content": {"pluginHandle": 1}}
|
c@36
|
15 EOF
|
c@36
|
16
|