shithub: aubio

ref: 04d50b073a752a4d6a4e854d35c8a08a77b21c8c
dir: /tests/demo/localaubio.py/

View raw version

try:
  from aubio.aubiowrapper import * 
except ImportError:
  try: 
    import os
    import sys
    cur_dir = os.path.dirname(sys.argv[0])
    sys.path.append(os.path.join(cur_dir,'..','..','python'))
    sys.path.append(os.path.join(cur_dir,'..','..','python','aubio','.libs'))
    from aubio.aubiowrapper import * 
  except ImportError:
    raise