Skip to content

Instantly share code, notes, and snippets.

View bhy's full-sized avatar

Haoyu Bai bhy

  • Bright Jade Pte. Ltd.
  • Singapore
View GitHub Profile
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)