hi list,
(using Pd-0.40.3-extended-rc1-macosx104-powerpc.dmg) on 10.4, PPC
i use a shell script to startup pd for an installation. it looks
something like this:
---------------shell script---------
/Applications/Pd-extended.app/Contents/Resources/bin/pd -path /
Applications/Pd-extended.app/Contents/Resources/extra/hardware -path /
Applications/Pd-extended.app/Contents/Resources/extra/flatspace -
path /Applications/Pd-extended.app/Contents/Resources/extra/iemlib -
path /Applications/Pd-extended.app/Contents/Resources/extra/mapping -
path /clarafrancesco -lib mapping -lib iemlib -lib hardware -lib
flatspace -r 48000 -listdev -nomidiin -midioutdev 1 -noadc -
outchannels 2 -nogui -noprefs /clarafrancesco/CLARAFRANCESCO.pd
--------------end-------------------
but later in the terminal it seems i can't open the midi port.
----------Terminal output----------
008-06-12 01:10:21.623 pd[4717] CFLog (21): Error loading /Library/
QuickTime/Motion.component/Contents/MacOS/Motion: error code 4,
error number 0 (Library not loaded: /Library/Frameworks/
Motion.framework/Versions/A/Motion
Referenced from: /Library/QuickTime/Motion.component/Contents/
MacOS/Motion
Reason: image not found)
2008-06-12 01:10:21.737 pd[4717] CFLog (21): Error loading /Library/
QuickTime/Motion.component/Contents/MacOS/Motion: error code 4,
error number 0 (Library not loaded: /Library/Frameworks/
Motion.framework/Versions/A/Motion
Referenced from: /Library/QuickTime/Motion.component/Contents/
MacOS/Motion
Reason: image not found)
audio input devices:
audio output devices:
API number 4
pd(4717,0xa000ed88) malloc: *** error for object 0x25afbe0: double free pd(4717,0xa000ed88) malloc: *** set a breakpoint in szone_error to debug pd(4717,0xa000ed88) malloc: *** error for object 0x25aff20: double free pd(4717,0xa000ed88) malloc: *** set a breakpoint in szone_error to debug MIDI input devices:
MIDI output devices:
sys_nmidiin 0, nmidiindev 0
could not open midi output 1 (MidiPipe Eingang 1): PortMidi: `Bad
pointer'
--------------End-------------------
the same patch runs fine with midi on the same machine with the GUI. even stranger is that on another machine (Pd-0.40.3-extended-rc1- macosx104-i386.dmg, 10.5, intel) -nogui and midi just works.
what could be the cause?
m.
ok, the cause for the message
could not open midi output 1 (MidiPipe Eingang 1): PortMidi: `Bad pointer'
was inside the patch:
[loadbang] | [; pd midi-dialog 0 0 0 0 1 0 0 0 2 2(
after i removed that the error was gone.
but i have a new one: logik 25 1 16 1 (trigger->prepend) connection failed
this only apperars when i load pd in nogui.
Am 2008-06-12 um 01:18 schrieb Max Neupert:
hi list,
(using Pd-0.40.3-extended-rc1-macosx104-powerpc.dmg) on 10.4, PPC
i use a shell script to startup pd for an installation. it looks something like this:
---------------shell script--------- /Applications/Pd-extended.app/Contents/Resources/bin/pd -path / Applications/Pd-extended.app/Contents/Resources/extra/hardware -path / Applications/Pd-extended.app/Contents/Resources/extra/flatspace - path /Applications/Pd-extended.app/Contents/Resources/extra/iemlib - path /Applications/Pd-extended.app/Contents/Resources/extra/mapping - path /clarafrancesco -lib mapping -lib iemlib -lib hardware -lib flatspace -r 48000 -listdev -nomidiin -midioutdev 1 -noadc - outchannels 2 -nogui -noprefs /clarafrancesco/CLARAFRANCESCO.pd --------------end-------------------
but later in the terminal it seems i can't open the midi port.
----------Terminal output---------- 008-06-12 01:10:21.623 pd[4717] CFLog (21): Error loading /Library/ QuickTime/Motion.component/Contents/MacOS/Motion: error code 4, error number 0 (Library not loaded: /Library/Frameworks/ Motion.framework/Versions/A/Motion Referenced from: /Library/QuickTime/Motion.component/Contents/ MacOS/Motion Reason: image not found) 2008-06-12 01:10:21.737 pd[4717] CFLog (21): Error loading /Library/ QuickTime/Motion.component/Contents/MacOS/Motion: error code 4, error number 0 (Library not loaded: /Library/Frameworks/ Motion.framework/Versions/A/Motion Referenced from: /Library/QuickTime/Motion.component/Contents/ MacOS/Motion Reason: image not found) audio input devices:
- (0)iSight
- (0)Built-in Audio
audio output devices:
- (0)Built-in Audio
API number 4
pd(4717,0xa000ed88) malloc: *** error for object 0x25afbe0: double
free pd(4717,0xa000ed88) malloc: *** set a breakpoint in szone_error to
debug pd(4717,0xa000ed88) malloc: *** error for object 0x25aff20: double
free pd(4717,0xa000ed88) malloc: *** set a breakpoint in szone_error to
debug MIDI input devices:
- MidiPipe Ausgang 1
MIDI output devices:
- MidiPipe Eingang 1
sys_nmidiin 0, nmidiindev 0 could not open midi output 1 (MidiPipe Eingang 1): PortMidi: `Bad pointer' --------------End-------------------
the same patch runs fine with midi on the same machine with the GUI. even stranger is that on another machine (Pd-0.40.3-extended-rc1- macosx104-i386.dmg, 10.5, intel) -nogui and midi just works.
what could be the cause?
m.
Hallo, Max Neupert hat gesagt: // Max Neupert wrote:
ok, the cause for the message
could not open midi output 1 (MidiPipe Eingang 1): PortMidi: `Bad pointer'
was inside the patch:
[loadbang] | [; pd midi-dialog 0 0 0 0 1 0 0 0 2 2(
after i removed that the error was gone.
but i have a new one: logik 25 1 16 1 (trigger->prepend) connection failed
this only apperars when i load pd in nogui.
Strange. Normally missing objects like your prepend are missing regardless of gui or nongui mode. Does it also happen if you use a prepend built from [list prepend ...]---[list trim] instead?
[prepend] is an object that should be avoided anyway because there are various incompatible version of it available.
Frank Barknecht _ ______footils.org__
aah, great.
after replacing [prepend] with [list prepend] it works.
thank you frank!
max
Am 2008-06-12 um 17:02 schrieb Frank Barknecht:
Hallo, Max Neupert hat gesagt: // Max Neupert wrote:
ok, the cause for the message
could not open midi output 1 (MidiPipe Eingang 1): PortMidi: `Bad pointer'
was inside the patch:
[loadbang] | [; pd midi-dialog 0 0 0 0 1 0 0 0 2 2(
after i removed that the error was gone.
but i have a new one: logik 25 1 16 1 (trigger->prepend) connection failed
this only apperars when i load pd in nogui.
Strange. Normally missing objects like your prepend are missing regardless of gui or nongui mode. Does it also happen if you use a prepend built from [list prepend ...]---[list trim] instead?
[prepend] is an object that should be avoided anyway because there are various incompatible version of it available.
Ciao
Frank Barknecht _
______footils.org__
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
i get the message saying that (trigger->prepend) connection failed when i run my patch in -nogui.
i am trying to guess what is happening. i have a theory:
in the helpfile of prepend i read that the version in max doesn't
have a second inlet.
so is it possible, that a cyclone version of prepend is loaded when i
run in -nogui?
on the other hand [cyclone/prepend] has two inlets as well, so it
might be something else.
comments would be appreciated.
Am 2008-06-12 um 15:54 schrieb Max Neupert:
logik 25 1 16 1 (trigger->prepend) connection failed
this only apperars when i load pd in nogui.
Hallo, Max Neupert hat gesagt: // Max Neupert wrote:
i get the message saying that (trigger->prepend) connection failed when i run my patch in -nogui.
i am trying to guess what is happening. i have a theory:
in the helpfile of prepend i read that the version in max doesn't
have a second inlet. so is it possible, that a cyclone version of prepend is loaded when i
run in -nogui? on the other hand [cyclone/prepend] has two inlets as well, so it
might be something else.
You could try "pd -verbose" to see what exactly is happening with library loading in botch cases.
Frank Barknecht _ ______footils.org__