(sorry for x-posting; please distribute)
//////////
CALL FOR WORKS
The ÖGZM - Österreichische Gesellschaft für zeitgenössische Musik
(Austrian Society for Contemporary Music) is announcing a call for works,
seeking electro-acoustic compositions with or without instruments (see
"guidelines" for details). The call is open to composers of all ages and
nationalities.
Four compositions will be selected from the submitted works by a jury.
The four selected works will receive two performances in Vienna and Graz
(Austria) in spring 2019 within the framework of OEGZM´s electronic
concert series CROSSTALKS. The composers of the selected works will be
announced via e-mail and on the OEGZM Website at the beginning of March
2019.
GUIDELINES
1. Instrumentation: 2 categories: a) saxophone (available instruments:
soprano, tenor, baritone sax.) and/or double bass plus live electronics
or playback b) fixed media. NOTE: All works of (a) must contain an
electronic part - either live electronics or playback (fixed media). The
maximum number of channels is 4.
2. Submitted pieces may be no longer than 11 minutes duration. A minimum
duration of 3 minutes would be appreciated, but is not mandatory.
3. Submissions are due by 31.01.2019 midnight. Composers may submit one
work per category (= max. 2 works).
4. The material for the jury - scores (*pdf) and/or playback, fixed
media, audio material in stereo and *mp3 only - must be submitted via
Dropbox, Google Drive, WeTransfer or a similar download link without
expiring date, sent to office(at)oegzm.at before the deadline. We are
sorry that scores on paper and sound files on CD, flash drive and other
hardware media cannot be accepted.
5. The use of video is possible by means of video beamer + screen, which
will be provided on request.
6. A short biography in English (running text, max. 2000 figures
including spaces; *pdf) is required.
7. Submissions must contain the following information: Composer´s full
name, date and place of birth, full current address, e-mail address and
telephone number (including country calling code). NOTE: This Call for
Works is not anonymous.
8. There is no submission fee.
If you have any questions, please contact us via our e-mail address
office(at)oegzm.at
http://www.oegzm.athttp://www.facebook.com/oegzmhttp://www.youtube.com/user/oegzm
//////////
Regards
Daniel Mayer
-----------------------------
http://daniel-mayer.at
-----------------------------
_______________________________________________
Pd-announce mailing list
Pd-announce(a)lists.iem.at
https://lists.puredata.info/listinfo/pd-announce
Hah, zing!
> On Dec 2, 2018, at 2:30 PM, pd-list-request(a)lists.iem.at wrote:
>
> From: IOhannes m zmölnig <zmoelnig(a)iem.at <mailto:zmoelnig@iem.at>>
> To: pd-list(a)lists.iem.at <mailto:pd-list@lists.iem.at>
> Subject: Re: [PD] Disable JACK auto-connect from command line
> Message-ID: <6dcf68a6-cb01-a2f2-0e02-79e3b42489f7(a)iem.at <mailto:6dcf68a6-cb01-a2f2-0e02-79e3b42489f7@iem.at>>
> Content-Type: text/plain; charset="utf-8"
>
> On 12/2/18 1:13 PM, Dan Wilcox wrote:
>> -help was there 10 year ago :)
>
> actually, it was not.
> Pd just printed the usage info, whenever it encountered an unknown flag.
>
> however, since Pd-0.49 there finally *is* a "-help" flag (which does the
> same, minus trying to initialize the audio system), ut ironically it is
> not documented :-)
>
> gfmadsr
> IOhannes
--------
Dan Wilcox
@danomatika <http://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>
Dear list,
did anyone meet this OpenGL bug on ununtu 18.04?
When recreating gemwin (destroy, create) Pd crashes with this error:
i965: Failed to submit batchbuffer: Invalid argument
Best,
Popesz
Hi PD list!
I have an idea for a "keyboard patching" feature for PD that allows you to navigate connections with the keyboard.
It also allows for neatly placing objects when connecting new ones to any outlet!
I've made a little working prototype showing the idea. Basically you use Ctrl+arrows to nagivate inlets, outlets and connections.
Instead of always using the first one, when you place a new object (and auto-patch is enabled) the new object is connected to the selected outlet and placed exactly in the same exact X coordinates.
What do you think?
https://www.youtube.com/watch?v=Zyhm40tj7bU
Cheers,
Henri.
-help was there 10 year ago :)
> On Dec 2, 2018, at 12:00 PM, pd-list-request(a)lists.iem.at wrote:
>
> From: Lorenzo Sutton <lorenzofsutton(a)gmail.com <mailto:lorenzofsutton@gmail.com>>
> To: pd-list(a)lists.iem.at <mailto:pd-list@lists.iem.at>
> Subject: Re: [PD] Disable JACK auto-connect from command line
> Message-ID: <a1d8388f-feb3-9c6e-3763-19ad64fa0d1b(a)gmail.com <mailto:a1d8388f-feb3-9c6e-3763-19ad64fa0d1b@gmail.com>>
> Content-Type: text/plain; charset=utf-8; format=flowed
>
> On 01/12/2018 18:52, IOhannes m zmölnig wrote:
>> On 12/1/18 6:11 PM, Lorenzo Sutton wrote:
>>> Is there a way to disable autoconnecting hardware inputs to Pd's first
>>> two inputs when using jack?
>>>
>>> I need this for scripting the start of a patch which I do not want to
>>> connect to jack 'system' inputs.
>>
>> as reported by "pd -help":
>> $ pd -nojackconnect
>
> Ah thanks! I was probably remembering command line switches of 10 years
> ago :)
>
> Lorenzo.
--------
Dan Wilcox
@danomatika <http://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>
Is there a way to disable autoconnecting hardware inputs to Pd's first
two inputs when using jack?
I need this for scripting the start of a patch which I do not want to
connect to jack 'system' inputs.
Lorenzo.
You can use aconnectgui if you don't want to use qjackctl.
Also, you can use the device name with aconnect. Here's an excerpt of a script I rote to start Pd on my wearable 10 years ago. The trick is that you need to wait until Pd sets up its MIDI ports before trying to connect to them in a script.
-----
echo "rc_starts_pd: strating pd"
pd -rt -nogui -alsa -audiodev 4 -audiobuf 10 -alsamidi $PATCH &
# wait for pd to initialize
KA=$(aconnect -i -o | grep "Pure Data")
while [ "$KA" = "" ]
do
sleep 1
echo "rc_starts_pd: pd alsamidi not ready"
KA=$(aconnect -i -o | grep "Pure Data")
done
echo "rc_starts_pd: pd alsmidi is ready"
# connect the UA-25 midi to Pure Data
echo "rc_starts_pd: alsa midi connect 'UA-25' <-> 'Pure Data'"
aconnect 'UA-25' 'Pure Data'
aconnect 'Pure Data':1 'UA-25':0
-----
> On Nov 30, 2018, at 4:57 PM, pd-list-request(a)lists.iem.at wrote:
>
> Date: Fri, 30 Nov 2018 16:47:21 +0100
> From: "Ingo" <ingo(a)miamiwave.com <mailto:ingo@miamiwave.com>>
> To: "'Jaime Oliver'" <jaime.oliver2(a)gmail.com <mailto:jaime.oliver2@gmail.com>>
> Cc: "'Pd-List'" <pd-list(a)lists.iem.at <mailto:pd-list@lists.iem.at>>
> Subject: Re: [PD] Recognizing USB MIDI interfaces on Pd 0.48.1 (Debian
> 9.5)
> Message-ID: <002b01d488c3$fb7c13c0$f2743b40$(a)miamiwave.com <mailto:002b01d488c3$fb7c13c0$f2743b40$@miamiwave.com>>
>
> Thanks, Jamie!
>
> got it finally to connect or disconnect now.
>
> I didn't have the correct client and ID numbers.
> I'll have to find a way to retrieve the port number of an unknown USB
> interface first automatically before I can connect it to Pd automatically.
> I couldn't find any way to connect an existing new port without knowing its
> number.
>
> I tried aconnect *:0 128:0 instead of aconnect 24:0 128:0 but it didn't work.
> Obviously havin * become 128 would cause a feedback loop - so it makes sense
> not to work.
>
> I had also installed qjackctl as IOhannes suggested.
> This also works.
--------
Dan Wilcox
@danomatika <http://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>