-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPuredata.py
49 lines (39 loc) · 1.05 KB
/
Puredata.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
name: Puredata
version: 0.4.0-wip
authors:
- Enrique Erne
license: MIT license
"""
from os import system, getcwd
import os, sys, threading
class Puredata(threading.Thread):
def prepare(self, pd = None, dir = '', file = '', args = '-stderr -nostdpath -rt -send \"pd dsp 1;pd dsp 0;\"'):
self.pd = pd
self.file = dir + file
# args = -stderr -nostdpath -rt -nogui -path <path> -audiobuf <n> -nostdpath -nogui -send \"pd dsp 1;pd dsp 0;\"
# note in -nogui you can't use -send
self.args = args
if pd != None:
self.pd = pd
elif sys.platform == 'linux2':
self.pd = 'pd'
elif sys.platform == 'darwin':
self.pd = '//Applications/Pd-0.42-5.app/Contents/Resources/bin/pd'
elif sys.platform == 'win32':
self.pd = '%programfiles%\pd\bin\pd.exe'
return self
def run(self):
try:
pdInit = '%s %s' % (self.pd, self.args)
if (self.file != ''):
pdInit += ' ' + self.file
os.system(pdInit)
except:
print 'couldn\'t load Pd'
finally:
print 'Puredata quit'
if __name__ == '__main__':
pd = Puredata()
pd.prepare()
pd.start()