diff --git a/Puredata.py b/Puredata.py index a608477..27a79ba 100644 --- a/Puredata.py +++ b/Puredata.py @@ -15,7 +15,7 @@ class Puredata(threading.Thread): - def prepare(self, pd = None, dir = '', file = '', args = '-stderr -nostdpath -rt -send \"pd dsp 1;pd dsp 0;\"'): + def prepare(self, pd = None, dir = '', file = '', args = '-nostdpath -send \"pd dsp 1;pd dsp 0;\"'): self.pd = pd self.file = dir + file # args = -stderr -nostdpath -rt -nogui -path -audiobuf -nostdpath -nogui -send \"pd dsp 1;pd dsp 0;\" @@ -28,7 +28,7 @@ def prepare(self, pd = None, dir = '', file = '', args = '-stderr -nostdpath -rt 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' + self.pd = 'C:\\pd\\bin\\pd.exe' return self def run(self): diff --git a/README.md b/README.md index 3bf554a..147c85c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The networking protocol sent to Pd is [FUDI](http://en.wikipedia.org/wiki/FUDI) ### Todo - * test on win + * test on linux * close method for Pd-Socket * Pd-0.43 compatibility * write test @@ -33,6 +33,7 @@ Author(s) --------- * Enrique Erne + * Moritz Wettstein ### Related Projects