Mercurial > hg > vampy-host
view test/test_process.py @ 65:c5106210370e
Default args
author | Chris Cannam |
---|---|
date | Wed, 14 Jan 2015 11:36:02 +0000 |
parents | ee7542afa98e |
children | f0e2a8421797 |
line wrap: on
line source
import vamp import numpy as np testPluginKey = "vamp-test-plugin:vamp-test-plugin" rate = 44100 def test_process(): buf = np.zeros(10240) results = vamp.process(buf, rate, testPluginKey) print("results = " + str(list(results))) return True