comparison README @ 1:dc88002ce687

some typos corrected
author fazekasgy
date Tue, 11 Mar 2008 20:24:58 +0000
parents e20e214bdfb5
children a4c955e9a70b
comparison
equal deleted inserted replaced
0:e20e214bdfb5 1:dc88002ce687
44 It has very high level libraries. e.g. you can stream audio from your VamPy plugin (it works for me...) 44 It has very high level libraries. e.g. you can stream audio from your VamPy plugin (it works for me...)
45 Supports functional programming 45 Supports functional programming
46 46
47 47
48 COMPILING AND LINKING: 48 COMPILING AND LINKING:
49
49 (1) include Python.h wherever it is on your machine 50 (1) include Python.h wherever it is on your machine
50 (2) this plugin needs to be linked against the Python binary: 51 (2) this plugin needs to be linked against the Python binary:
51 52
52 example on on MacOSX: 53 example on on MacOSX:
53 g++ -O2 -Wall -I. -fPIC -c -o pyvamp-main.o pyvamp-main.cpp 54 g++ -O2 -Wall -I. -fPIC -c -o pyvamp-main.o pyvamp-main.cpp
54 g++ -dynamiclib -o vamp-pyvamp-plugin.dylib ./PyPlugScanner.o ./PyPlugin.o ./pyvamp-main.o sdk/vamp-sdk/libvamp-sdk.a 55 g++ -dynamiclib -o vamp-pyvamp-plugin.dylib ./PyPlugScanner.o ./PyPlugin.o ./pyvamp-main.o sdk/vamp-sdk/libvamp-sdk.a
55 -u _PyMac_Error /Library/Frameworks/Python.framework/Versions/2.5/Python 56 -u _PyMac_Error /Library/Frameworks/Python.framework/Versions/2.5/Python
56
57 OR:
58 57
59 (3) There is a modified Makefile from the VAMP-SDK that compiles this plugin by default. 58 (3) There is a modified Makefile from the VAMP-SDK that compiles this plugin by default.
60 59
61 60
62 TODO: needs more complete error checking 61 TODO: needs more complete error checking