I've checked the flags to open Pd with some custom settings, but I've no idea how to close it if I open it -nogui. Haven't tried to do, to be honest, but I'd like to be sure about how to close it before I go on playing with it -nogui. The other question is this, which has been address already, but I'm not sure about the answer. I'm running a Pd basics workshop and one of the students has Pd running in Greek by default. I checked Hans's video about how to open Pd in any language, so we did that and Pd opened in English, but as soon as he open a patch we made the week before, Pd turned to Greek again... So, is it something in the Contents/Resources/po directory, or something I should run in Terminal? I don't want to disable the Greek translation, I just don't want it to be the default one..
Alexandros Drymonitis wrote:
I've checked the flags to open Pd with some custom settings, but I've no idea how to close it if I open it -nogui. Haven't tried to do, to be honest, but I'd like to be sure about how to close it before I go on playing with it -nogui.
Add a "; pd quit" message in your patch. Make so that this message is banged when the work is done. Alternatively you can do it with pdsend on the command-line.
So, what's the exact command I should type? I'm trying some things (with Pd with the gui), but it won't work. Adding a [; pd quit( I understand, but that will need an external controller to hit the message box, right?
On Mon, Feb 4, 2013 at 1:33 PM, Charles Goyard cg@fsck.fr wrote:
Alexandros Drymonitis wrote:
I've checked the flags to open Pd with some custom settings, but I've no idea how to close it if I open it -nogui. Haven't tried to do, to be honest, but I'd like to be sure about how to close it before I go on playing with it -nogui.
Add a "; pd quit" message in your patch. Make so that this message is banged when the work is done. Alternatively you can do it with pdsend on the command-line.
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi,
it depends vastly on your patch and how you access it without gui. MIDI ? OSC ? network ?
On my computer (archlinux) "killall pd" on the command-line works.
Adding a [; pd quit( I understand, but that will need an external controller to hit the message box, right?
Yes, that's what I meant when I said :
Make so that this message is banged when the work is done.
Sorry for being unclear.
Attached is an example from something I use.
typing echo "control quit;" | pdsend 3489 makes pd exit.
You can replace the network and route logic with a midi controller or whatever. Mine is controlled from Processing/controlP5.
hth, Charles
What I have in mind is to connect a beagleboard to my laptop via ethernet, so the former plays audio and the latter is dealing with the visuals, communicating via OSC (mrpeach lib). Since my only controller will be an arduino nano, I only have 8 potentiometers and ten buttons, and I wouldn't like to spear any of these for something that can be done via the command line (plus, it could happen that I accidentally press the 'quit' button by mistake, during a performance). I tried your suggestions but they won't work. I'm on OS X 10.8.2 and via the Terminal I open Pd like this: Applications/Pd-extended.app/Contents/Resources/bin/pd pdsend is in the same directory, but I've no idea how to use it via command line to quit Pd..
On Mon, Feb 4, 2013 at 2:22 PM, Charles Goyard cg@fsck.fr wrote:
Hi,
it depends vastly on your patch and how you access it without gui. MIDI ? OSC ? network ?
On my computer (archlinux) "killall pd" on the command-line works.
Adding a [; pd quit( I understand, but that will need an external controller to hit the message box, right?
Yes, that's what I meant when I said :
Make so that this message is banged when the work is done.
Sorry for being unclear.
Attached is an example from something I use.
typing echo "control quit;" | pdsend 3489 makes pd exit.
You can replace the network and route logic with a midi controller or whatever. Mine is controlled from Processing/controlP5.
hth, Charles
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Ok, just found the answer to my question, if I quit Terminal, Pd quits as well...
On Mon, Feb 4, 2013 at 2:43 PM, Alexandros Drymonitis adrcki@gmail.comwrote:
What I have in mind is to connect a beagleboard to my laptop via ethernet, so the former plays audio and the latter is dealing with the visuals, communicating via OSC (mrpeach lib). Since my only controller will be an arduino nano, I only have 8 potentiometers and ten buttons, and I wouldn't like to spear any of these for something that can be done via the command line (plus, it could happen that I accidentally press the 'quit' button by mistake, during a performance). I tried your suggestions but they won't work. I'm on OS X 10.8.2 and via the Terminal I open Pd like this: Applications/Pd-extended.app/Contents/Resources/bin/pd pdsend is in the same directory, but I've no idea how to use it via command line to quit Pd..
On Mon, Feb 4, 2013 at 2:22 PM, Charles Goyard cg@fsck.fr wrote:
Hi,
it depends vastly on your patch and how you access it without gui. MIDI ? OSC ? network ?
On my computer (archlinux) "killall pd" on the command-line works.
Adding a [; pd quit( I understand, but that will need an external controller to hit the message box, right?
Yes, that's what I meant when I said :
Make so that this message is banged when the work is done.
Sorry for being unclear.
Attached is an example from something I use.
typing echo "control quit;" | pdsend 3489 makes pd exit.
You can replace the network and route logic with a midi controller or whatever. Mine is controlled from Processing/controlP5.
hth, Charles
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Well, that didn't really work actually. I opened Pd with the gui and it close just by quiting Terminal, but the I made a very simple patch ([osc~ 440] connceted to [dac~] and a loadbang connected to [; pd dsp 1( ) and the patch opened and the sound worked and all, but quiting Terminal didn't do the trick, the sound kept going, I had to shut down my computer. So, any indications on this one?
On Mon, Feb 4, 2013 at 2:45 PM, Alexandros Drymonitis adrcki@gmail.comwrote:
Ok, just found the answer to my question, if I quit Terminal, Pd quits as well...
On Mon, Feb 4, 2013 at 2:43 PM, Alexandros Drymonitis adrcki@gmail.comwrote:
What I have in mind is to connect a beagleboard to my laptop via ethernet, so the former plays audio and the latter is dealing with the visuals, communicating via OSC (mrpeach lib). Since my only controller will be an arduino nano, I only have 8 potentiometers and ten buttons, and I wouldn't like to spear any of these for something that can be done via the command line (plus, it could happen that I accidentally press the 'quit' button by mistake, during a performance). I tried your suggestions but they won't work. I'm on OS X 10.8.2 and via the Terminal I open Pd like this: Applications/Pd-extended.app/Contents/Resources/bin/pd pdsend is in the same directory, but I've no idea how to use it via command line to quit Pd..
On Mon, Feb 4, 2013 at 2:22 PM, Charles Goyard cg@fsck.fr wrote:
Hi,
it depends vastly on your patch and how you access it without gui. MIDI ? OSC ? network ?
On my computer (archlinux) "killall pd" on the command-line works.
Adding a [; pd quit( I understand, but that will need an external controller to hit the message box, right?
Yes, that's what I meant when I said :
Make so that this message is banged when the work is done.
Sorry for being unclear.
Attached is an example from something I use.
typing echo "control quit;" | pdsend 3489 makes pd exit.
You can replace the network and route logic with a midi controller or whatever. Mine is controlled from Processing/controlP5.
hth, Charles
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Am 04.02.2013 um 13:45 schrieb Alexandros Drymonitis adrcki@gmail.com:
Ok, just found the answer to my question, if I quit Terminal, Pd quits as well…
Maybe instead of closing the Terminal you want to press cmd-. (command and point) to quit the process before.
m.
On 02/04/2013 06:03 PM, Max wrote:
Am 04.02.2013 um 13:45 schrieb Alexandros Drymonitisadrcki@gmail.com:
Ok, just found the answer to my question, if I quit Terminal, Pd quits as wellÂ…
Maybe instead of closing the Terminal you want to press cmd-. (command and point) to quit the process before.
or "Ctrl-C" which is a quite universal shortcut to terminate a process.
f gamdr IOhannes
Alexandros Drymonitis wrote:
Applications/Pd-extended.app/Contents/Resources/bin/pd pdsend is in the same directory, but I've no idea how to use it via command line to quit Pd..
when in pd's directory, do : ./pdsend ./ means "the command that's in the current directory. You can also use : /Applications/Pd-extended.app/Contents/Resources/bin/pdsend
Patch in pd:
[netreceive 4444] | | [ ; pd quit (
on the command-line :
echo "hello;" | ./pdsend 4444
works.
Sound stopped, so I guess it works, thanks.
On Mon, Feb 4, 2013 at 3:40 PM, Charles Goyard cg@fsck.fr wrote:
Alexandros Drymonitis wrote:
Applications/Pd-extended.app/Contents/Resources/bin/pd pdsend is in the same directory, but I've no idea how to use it via
command
line to quit Pd..
when in pd's directory, do : ./pdsend ./ means "the command that's in the current directory. You can also use : /Applications/Pd-extended.app/Contents/Resources/bin/pdsend
Patch in pd:
[netreceive 4444] | | [ ; pd quit (
on the command-line :
echo "hello;" | ./pdsend 4444
works.
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list