1

Im using processing in python mode but I want to use the processing library sound. But I dont know how to import this into my program in python syntax. In java its like this: Import processing.sound.*; Thanks

  • Someone already asked this question: http://stackoverflow.com/questions/476968/using-a-java-library-from-python – Jason Nov 21 '14 at 03:41

2 Answers2

0

You can use add_library(processing.sound). I used it with g4p library

Kirill
  • 163
  • 1
  • 10
0

Use the add_library function:

add_library("sound")

ybakos
  • 8,152
  • 7
  • 46
  • 74