Skip to content

Instantly share code, notes, and snippets.

@bhy
Created September 13, 2010 07:40
Show Gist options
  • Save bhy/576940 to your computer and use it in GitHub Desktop.
Save bhy/576940 to your computer and use it in GitHub Desktop.
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