map01bf@623: README.txt map01bf@623: map01bf@623: to install, try: map01bf@623: map01bf@623: python setup.py build map01bf@623: python setup.py install map01bf@623: map01bf@623: Notes: map01bf@623: - a compatible build of audioDB (>=r914) needs to be linkable at runtime map01bf@623: - currently only the direct C-api exposure layer is visible, so the calling semantics are a bit gross map01bf@623: map01bf@623: map01bf@623: The actual query call is a bit of a mess, but will be more intuitive from the native python layer (to be written)... map01bf@623: so the python bindings now have a complete path: map01bf@623: >>import _pyadb map01bf@623: >>aDB = _pyadb._pyadb_create("test.adb", 0,0,0) map01bf@623: >>_pyadb._pyadb_status(aDB) map01bf@623: >>_pyadb._pyadb_insertFromFile(aDB, "someFeats.mfcc12") map01bf@623: ...(add some more data) map01bf@623: >>result = _pyadb._pyadb_queryFromKey(aDB, "a Key in aDB", [options]) map01bf@623: map01bf@623: and then result has a nice dict of your results. map01bf@623: map01bf@623: map01bf@623: map01bf@623: 21 September 2009, Ben Fields, b.fields@gold.ac.uk