Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Puredata.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <path> -audiobuf <n> -nostdpath -nogui -send \"pd dsp 1;pd dsp 0;\"
Expand All @@ -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):
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -33,6 +33,7 @@ Author(s)
---------

* Enrique Erne
* Moritz Wettstein


### Related Projects
Expand Down