This is a newbie question so please be patient with me.
I have a Mac using OSX 10.3 and have a M-audio Ozone midi keyboard. I
installed Adam Lindsay's "package" pd 0.36 installation and am having some
problems. I searched the achive and noticed alot of people have similar
problems, but I still don't know whats wrong with my setup. When i launch
pd I get the following:
could not open midi input device number 1: Invalid device ID.
using default input device number: -1
using default output device number: -1
nchan 2, flags 3, bufs 8, framesperbuf 256
Error number -9997 occured opening portaudio stream
Error message: Invalid device ID.
When I open the "test audio and midi" patch from the help menu it seems
like no audio or midi messages are coming in or out. when I select the "test
tone" from this patch sometimes there is a white noise type sound, but most
of the time nothing at all.
so I typed in:
pd -midiindev 1 -midioutdev 2
still nothing. I also typed in:
-soundindev -soundoutdev
nothing. What can I do to get it to work. How will I know when it's all
connected correctly. I would greatly appreciate any help anyone could
offer. thanks
_________________________________________________________________
Take off on a romantic weekend or a family adventure to these great U.S.
locations. http://special.msn.com/local/hotdestinations.armx
Hi all,
I am performing tonight tomorrow and sunday in the Melkweg in Amsterdam.
A live dance/video/music/dj performance piece. I am using PD with joystick and
webcam controllers.
Show starts at 22:00, doors open at 21:30 in the melkweg-theatre.
It is called Unanimous Buck.
http://www.melkweg.nl
--
electronic & acoustic musics-- http://www.xs4all.nl/~gml
Apologies, I got the address wrong last time, so let's try this again!
The p-t-player~ is now online. This is a sample player that gives the user
independant control over pitch and time. You will need the zexy external to
run this!
It can be found at
http://www.pure-data.org/Members/loneshark/pitch-time-sample-player/file_vie
w
Enjoy!
Lone Shark
Lone Shark: Aviation.
Electronic music for your mind, body and soul! Released March/April 2004 on
Pyramid Transmissions.
http://www.pyramidtransmissions.com/
Hi,
this is a short reminder, that the team organizing the 2nd LAD
Conference is still accepting and looking for music created using
Linux:
From April 29th to May 2nd, 2004, the Institute for Music and
Acoustics of ZKM Karlsruhe, Germany, will host the 2nd conference of
the Linux Audio Developers (LAD). As a new feature there will be
presentations of music in addition to technical talks. For this, we
are looking for music that has been produced completely or mostly
under Linux.
We are looking for:
* Interesting demos of sound synthesis, sound processing, etc.
* "Classical" computer music compositions, to be played in a
concert setting Pieces from areas such as Electronica,
* Chill-Out, Ambient etc.
Deadline for submissions is February 29th, 2004. The jury will award
3 grants to participants to contribute to their travel expenses.
More details here:
http://on1.zkm.de/zkm/stories/storyReader$3685http://www.zkm.de/lad/
If you have further questions, Matthias Nagorni <mana ET suse.de> or
Goetz Dipper <goetz ET zkm.de> will surely be able to answer them.
See ya in Karlsruhe.
ciao
--
Frank Barknecht _ ______footils.org__
hello all,
first, sorry for cross-posting .....
second, sorry for the long posting ;-)
after a (way too) long time, i finally got the basic usb implementation of my
multi-iobox working. that box will be the follow-up of the 88-port ad-module
for the pc-perport i have done a long time ago.
wit the new usb version everybody should be able to use it, on any computer
providing usb and a usb-hid (Human Interface Device) driver. that means,
linux, os-x, windows .....
the box is not completely finished yet, but will be in about 1-2 months.
in fact, the usb implementation on the microcontoller took the most time ...
just put a look at the usb specs chapter9, plus the hid definition plus the
hut (Hid Usage Tables) stuff ..... and you will get a impression ....
what's needed now are testers, that will try out the current usb-firmware of
the microcontroller connected to different machines. to help me out with that
you will currently need :
0.) a cimputer with usb and hid drivers (that means: if your comp can use a
mouse/keyboard/joystick... on usb)
1.) a programmer that is cappable of burning the microchip pic 16c765
microcontroller
2.) of course one if that microcontrollers, hard to get in germany, sorry.
be sure to get the -jw version, which is uv-erasable. otp-chips are a waste at
the current state of my development.... remember, its just a test
firmware....
3.) the current test-firmware from http://mamalala.de/iobox-test.zip
4.) a small prototype board, a usb-b connector, a cable from usb-b to usb-a
(to you computer) and led's (with 1k resistors), buttons and faders as
needed. take look at the microcontrollers datasheet
(http://www.microchip.com/1010/pline/picmicro/category/perictrl/14kbytes/dev…)
we need a 6 mhz xtal, portb is used to display led's, portd is used for 8
buttons, an0-an7 as analogue inputs plus the two pwm outputs on rc1 and
rc2...
5.) pd or jmax with a event-device object (on jmax i made ev_dev, i think h.c.
steiner has made a similar object for pd on linux)
after burning and assembling, the thing does the following :
on connecting to the computer, it enumarates to the host as hid device.
it sets up 64 led outputs, 64 single key inputs, 88 adc inputs, 64 dac outputs
and a 3-byte in-/output. the adc out's are declared (by the device) as
absolute events, the buttons and led's as what they are, respectively.
the dac is accessed as led, just with a 16 bit value range instead of the
usual 1-bit on/off state .... the 3-byte in/out is done as one 3-byte wide
button and a 3-byte wide led.
currently used by the chip (as this are the built-in capabilities) are 8 adc,
2 dac (done by using the pwm outputs of the chip) , 8 buttons and 8 led's.
(see http://mamalala.de/iobox-test.jph how that looks in jmax)
that makes up the following events :
inputs: (from device to computer)
a: type 1 (key)
code 256 - 263 (would be 256 - 319 in full version)
range 0/1 (on/off)
b: type 3 (abs. movement)
code 6-13 (would be 6-92 in full version)
range 0-255 (would be 0-255|1023|4095 in full version, depending on used adc)
outputs (all are type 17:led)
a: 0-7 (would be 0-63 in full version)
range 0/1 (on/off)
b: 64-65 (would be 64-127 in full version)
range 0-256 (would be 0-255|1023|4095 in full version, depending on used dac)
the rawbyte in/out's do nothing yet, but will be used for thing like buffered
midi in/out, serial in/out, rotary encoders, small lcd displays, [put your
ideas here]....
now comes the point where i need your assistance :
please test if the device connects to your computer without error.
if you are on linux, test it's in/output. to send to the device in a propper
way, you need a recent linux-usb driver. older ones (for example 2.4.18) dont
include the report-id to the device, but we need that ;-) newer drivers do
(as in linux 2.4.24 and up....)
all the i/o should be do-able by the standard linux event input device
interface (evdev) and the linux usb-hid driver compiled to use that
interface....
more important to me is, if you are on mac/windows/.... :
i cant supply objects for pd/jmax/... on these platforms.
but, from what i expect they should be easy to write. just access the hid
interface of the host, it will give/take the reports as needed.....
for example, a usb-hid conform "driver" in source-form for a mouse, keyboard,
joystick, tablet.... should provide a good basis for that.....
if you plug it into window, it already announces itself as unknown hid device.
please help, provide some objects for that thing !
all the linux stuff i will do myself, ev_dev is already there. what i will do
next is a alsa-driver that wraps the device into a midi stream, for use wit
other sequencer/synth apps. such a thing would be nice on other platforms
too. imagine all midi-conform apps could use that thins faderbox, for
example...
ok, thats all for now. if you want to try that and help me out on that part,
drop me a note and "just do it". report back your experience....
thnaks a lot,
chris
Hi! we're RBF-soft. [producing] maybe you haven't hear about as because
we're from Barberà, and we haven't had the pleasure, and the community its
so big, that its logic that you don't know who we're.
Then, we're a designers, artists, dj's, vj's, animators and developers
programmers,... we have made an instalations with pd,in bcn and mallorca,and
we have made music with pd too, and streaming with pd, workshops of pd and
reason (in Sabadell), aplication online with pd, ... (its now developing) do
you need more information about as and more people that you maybe dont know.
riereta may be is not only the pd community, because maybe we're doing
more for pd, and other people that we know and not know. If you have more
visibility than these person this not mean that you 're the one, and only
the pd community existing in bcn, you know?¿.
PD is for community not for few people living in raval (bcn), there're more
people, well?¿.
This -http://130.208.220.190/: website is not developed by Yves Degoyon
with
Pure-Data, :: Pall Thayer :: is the author of this project, you can't say
this, this is false.
And Riereta is not the only one in bcn, that made things with pd, do you
understand?¿ maybe if we would have more vissibility (like riereta), you
(Yves) will can know who 're RBF-soft.
Pd: see u and saludations for the authentik people of pd community around
the world!!!! around the things real!!!!
RBF-soft. [information]
_________________________________________________________________
Descubre el mayor catálogo de coches de la Red en MSN Motor.
http://motor.msn.es/researchcentre/
announcing:
pd based spatialization of inside-piano sounds from historic electric
grand-piano, the Neo-Bechstein.
Reinhold Friedl: inside-piano
Sukandar Kartadinata: spatialization
David Balzer: Neo-Bechstein restoration
9.Feb - ZKM, Karlsruhe
http://on1.zkm.de/zkm/stories/storyReader$3692
26.Mar - Maerzmusik, Berlin
http://www.maerzmusik.de/
k_jack~ is an external to get sound in and out
from jack clients.
Example:
[k_jack~ freqtweak]
...will give you an object with two signal inlets and two signal outlets,
if a jack-client containing the name freqtweak is running.
It requires at least PD 0.37.
http://www.notam02.no/arkiv/src/pd/
--
k_guile is a guile PD external.
Download from http://www.notam02.no/arkiv/src/pd/
k_guile PD external
--------------------------------------------
V0.0.1
-This external makes you able to use guile as an extension language for
PD. Guile is a scheme interpreter. The API is inspired by
the python pyext external made by Thomas Grill, and a small part of
the code is made by looking at the flext source.
-To be able to use it, you should first know the lisp programming language,
then check out the help-k_guile.pd example patch and read the small
example-scripts that the patch loads.
--
Howdy All,
My abstractions collection has been updated, with all sorts of useful
goodies.
Among these include things like NRPN in and out, tracker-style keyboard
mapping, the d-angriff and pitched_angriff makeovers of Frank
Barknecht's Angriff drums, a nice little GoP shoutcast radio tuner, a
GoP MIDI monitor, a GoP modular mixer setup (windows only for now) that
does diskwrite and shoutcast streaming right from the final mix, help
files for most of the abstractions, and much much more.
But the newest thing is a settings-saving system for GUI objects within
abstractions. Features include:
- automatic OSC control of each controller
- MIDI learn (and 14-bit NRPN learn) for each controller
- automatic mapping of 7-bit (or 14-bit) input to whatever range you
want, including radio buttons
- saving of settings in a settings file in the path of the parent patch,
and *not* your abstractions dir
This is similar to Frank Barknecht's memento system, but a little more
specialised, and may one day be adapted as a wrapper for his system.
But it's its own system for now.
So hop on down to Crazy Dave's Downloadextravatorium at:
http://mentalfloss.ca/sintheta/html/downloads.html and grab yourself
some treats.
David
--
.
. David McCallum
. Music wants to be free
. http://mentalfloss.ca/sintheta
.
hi all,
pdp-0.12.3 is downloadable at http://zwizwa.fartit.com/pd/pdp
compatible with latest pidip.
this is a bugfix release. check the change log for details.
unfortunately, it seems i fixed 3dp too much. it no longer works.
3dp will be back in 0.13.
enjoy
tom
thanks.. now compiles cleanly on this debian gcc-3.2.3 box with all jack
support intact.
de/
On Sunday 11 January 2004 17:37, mik said:
> On Sat, 10 Jan 2004 18:53:30 -0800
>
> Miller Puckette <mpuckett(a)man104-1.ucsd.edu> wrote:
> > Hi all,
> >
> > test 3 of pd-0.37-1 is out on the usual:
> >
> > http://crca.ucsd.edu/~msp/software.html
> >
> > many bug fixes for audio and MIDI I/O on various platforms.
> >
> > cheers
> > Miller
> >
> > _______________________________________________
> > PD-announce mailing list
> > PD-announce(a)iem.at
> > http://iem.at/cgi-bin/mailman/listinfo/pd-announce
>
> Hi
>
> The jack problem has gone. Thx.
> The "bad screen distance" error is still there though.
>
> Greetings
>
> m
Hi all,
test 3 of pd-0.37-1 is out on the usual:
http://crca.ucsd.edu/~msp/software.html
many bug fixes for audio and MIDI I/O on various platforms.
cheers
Miller
hi,
pre-requisites :
this release will only work with the new release of pdp :
http://zwizwa.fartit.com/pd/pdp/test/pdp-0.12.3-test-14.tar.gz
from the CHANGES.LOG :
0.12.12
added pdp_mp4live~ : mpeg4ip streaming object to stream to a darwin server
note : now, building of streaming objects is optional
( with --enable-ffmpeg OR --enable-mpeg4ip : warning, you can't
enable both, they are conflicting )
fixed some crashes when objects like pdp_ctrack, pdp_cmap, pdp_compose
where in a sub-patch
( problem reported by Mark Widmer )
added offsets messages in pdp_pen
url :
http://ydegoyon.free.fr/pidip-0.12.12.tar.gz
enjoy!
sevy
Hi all,
here's a work in progress collection of the state of affairs in
RRADical Pd as I propose it.
http://footils.org/pkg/rradical-wip-040109.tgz
This includes a new and improved version of the pattern sequencer
rrad.pattseq and memento and lots of more abstractions for
reuseability enhancements in Pd.
Impressive Screenshot of a use case is here:
http://footils.org/images/rradical-wip.png
Extensive documentation is missing. :(
I'll regularily announce updates to my wip-collection here:
http://footils.org/cms/pydiddy/wiki/RradicalPd
Linux-audio-user is CC'd because maybe this is interesting to, well,
Linux audio users, too, I guess.
== What is RRADical Pd? ==
One goal of RRADicalPd? is to create a collection of patches, that
make Pd easier and faster to use for people who are more comfortable
with software like Reason or Reaktor. RRADical ships with patches,
that solve real-world problems on a higher level of abstraction than
the standard Pd objects do. All these high level abstractions
(should) come with (detachable and changable) GUIs built in and use a
common way of saving states. They also include a net remote control
using OSC.
RRAD as an acronym stands for "Reusable and Rapid Application/Audio
Development" with Pd.
The official home of RRADical Pd is:
http://pure-data.org/community/projects/rradical/
Have fun,
--
Frank Barknecht _ ______footils.org__
moin all,
Anyone in Berlin for this year's Transmediale might be interested
in the following invitation to jam:
[CTM announcement]
> Share Mobile Berlin 1 & 2
>
> 3. and 4. February 2004, Club Transmediale, MAO > Lounge
>
> Open jam for audio / video artists with portable gear.
> Plug in and play.
>
> A multi-channel system for audio and video allows many artists to play
> together. A wireless network and free internet access encourage
> communication and collaboration. Remote participants could join in over
> the net. A low pressure, accessible, hands-on opportunity to present
> your artistic work alongside others - open for all comers.
>
> Details and Workshop
> [CTM EXTENDED] Share Mobile Berlin
> 2. February 2004, Haus der Kulturen
> http://www.clubtransmediale.de/archive/2004/2004_ext_share_cont.html
>
> Free entrance for active participants, if registered in advance:
> share(a)clubtransmediale.de
>
> Livestream on: http://share.dj/clubtransmediale/
[...]
> We do this
> every week at a bar here in New York and have done a massive version of
> this at the kitchen performance space here in New York. see
> http://share.dj/mobile.html for documentation.
>
> The infrastructure for jamming that we are creating at club
> transmediale will include wireless network with audio and video
> streaming, four channel sound system with twelve to sixteen inputs,
> four video projectors with eight inputs. Participation is free and
> anyone is welcome to jam on whatever portable electronics they bring.
[...]
> anyone capable of collaborating in a mix is
> fine, so long as they can plug into the system somehow. Gang Klang
> sounds like a similar thing - a jam. It would definitely be nice to
> have veteran jammers participate and to meet them, so yes invite them.
> Workshop is scheduled for the 2. February @ Transmediale, Haus der
> Kulturen, k3 and performances/jam on 3. & 4. February @ Club
> Transmediale.
>
> re: collaborating over the network, it will be set up, so it's open for
> use. dunno how far I'll get with my patch. I am sending control data
> for video, we'll see. ;)
>
> cheers,
>
> jeremy
so... consider yourselves invited ;-)
marmosets,
Bryan
hola,
the next sessions of optiq syndicate
will be taking place in riereta hacklab :
c/ riereta, 5 ( next to rambla del raval ), barcelona.
program ::
08.01.2004 :
21h>>> NICE-NOISE //live audio performance with sensospheres...
(muestra de proyectos y performance con sensores)
www.nice-noise.org
( performances using max and self-made sensores )
15.01.2004 :
>>> Skeezo/d.r.e.g.s./Rama
21h : short presentation of video packages for Pd ( well, pidip, of
course )
22h : visual & sound de/reconstruction con Skeezo/d.r.e.g.s(sonido)/Rama
hasta la proxima,
sevy
hi,
from the CHANGES.LOG ::
0.8
added colors and font properties
added a "font" message
added a "sort" message ( using alphabetical or creation order )
hasta la proxima,
sevy
Hi all,
I've put out more bugfixes... source only so far.
The most recent change is to fix for the (again) incompatible
change in the Alsa API...
cheers
Miller