Created
September 13, 2010 07:40
-
-
Save bhy/576940 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
def setClassPath(): | |
libDir = "/home/bhy/co/processing.py/libraries/" | |
classPaths = [ | |
"gsvideo/GSVideo.jar", | |
"gsvideo/jna.jar", | |
"gsvideo/gstreamer-java.jar", | |
] | |
for classPath in classPaths: | |
sys.path.insert(0, libDir + classPath) | |
setClassPath() | |
print sys.path | |
import codeanticode.gsvideo | |
def setup(): | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment