[PD] PdDefinitions

2007-09-29 Thread Mathieu Bouchard


some help for writing your http://puredata.org/dev/PdDefinitions ... those 
are surely not the best wordings, but it adds detail.


comma (atom type): a comma character that is not backslashed, and thus is 
effective as a message separator in a messagebox.


semicolon (atom type): a semicolon character that is not backslashed, and 
thus is effective as a message separator in any context. if there was any 
implicit context (as in a messagebox), semicolon forgets it, and thus you 
get to write an explicit receiver after every semicolon.


dollar (in general): a nonbackslashed dollar sign followed by one or more 
digits. in an evaluation, this can be worth a float, symbol or pointer, 
whatever the corresponding argument in the argument list is.


dollar (atom type): a dollar that is parsed individually; is replaced by 
the corresponding atom upon evaluation.


dollsym (atom type) (missing): in pd 0.39 and earlier: a dollar 
(subtitutor) that is at the beginning of an atom, followed by symbol 
characters. Upon substitution it becomes a symbol, as the corresponding 
atom gets cast to characters and the symbols are merged to make one 
resulting symbol.


dollsym (atom type) (missing): in pd 0.40 and earlier: any alternation of 
dollar (subtitutor) and normal symbol characters. All those dollar 
substitutors get replaced by corresponding atoms cast to characters and 
all the parts are merged to make one resulting symbol.


(The backslashing stuff may be important to understand if you expect to 
modify or generate patches using [textfile] like some people do; in 
general it's good for understanding the fileformat)


Personally, I called float symbol pointer the stable atoms, whereas 
I call comma semi dollar dollsym the radioactive atoms, because 
they decay upon being used by messageboxes. the radioactive atoms also 
only really stay alive inside of messageboxes, so in general in pd you 
will only see functions/methods for handling stable atoms, not radioactive 
ones.


I could've put this in the wiki directly, but wanted to make sure it gets 
noticed (and also I'd like some feedback and to know what you'd change in 
this). Are there any automatic notifications of changes of wiki pages on 
puredata.info (as a configurable option, per user) ? I mean by email, just 
like for sf's bug tracker. It would be good to have this so that all 
parties involved in modifying pages really know about what's going on. It 
gives the advantages of mailing-lists to wikis.


 _ _ __ ___ _  _ _ ...
| Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] : PD sync with JACK (linux)

2007-09-29 Thread Mysth-R
Hi,
I am new on this list. I tried to find some informations about syncing PD
and Jack transport/BPM in the archive list but I am not satisfied :D
I am making an Audio sequencer with PD, and I would like to use it with
other linux softwares (seq24, hydrogens, freewheeling,...).
So I need to synchronise PD and Jack with MIDI or OSC;
I saw on the archive list some module like midirealtimein but it doesn't
seems to work for me. Only receive zeros.
Today I am trying to use jack.tools, to synchronise with OSC (jack.osc). I
can send /start /stop messages, but I don't understand how I can send
transport informations, bpm ...

Can you help me / give me some informations ?
Thank you for your help
cheers,

Erwan

-- 
{^_^} Mysth-R {^_^}

http://myspace.com/mysthr
http://myspace.com/aideauditive
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] Audio drops when use MIDI controller, but OK when use pd-GUI

2007-09-29 Thread Kuba Szczypek
Hi
Can somebody suggest me something for improve my situation?
I use scrolllist extension for show an list.
When I use fader on pd-GUI for /seek/ scroll list then everything is OK 
with audio, but doing the same with MIDI controller give me drops, pops, 
clisk, and delays in refresh pd-GUI.
What is wrong?


W środę (3.10.2007) o godz. 21.30 - Zamiana Żon - odcinek specjalny!
Bohaterami programu będą: znana aktorska para Olga Borys i Wojciech
Majchrzak oraz rodzina państwa Foksinskich. Oglądaj TV 4 - Kliknij:
http://klik.wp.pl/?adr=www.zamianazon.wp.plsid=41



___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [ANN] new external: tracker

2007-09-29 Thread federico
I made a new release of tracker

changelog:
0.2.3 
  numbers are now aligned to right
  notification messages are sent from user interaction
  mouse behavior improved. now dragging faster changes more.
  added nice makefile for target:
Linux
MacOS (thanks Steffen)
Win32 (thanks tof)

(plus some bugfixes)

you can find as usual in /externals/ffext/tracker or here:
http://www.puredata.org/Members/federico/externals

thanks to everyone that gave (and will give) feedback!
-- 
Federico Ferri

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PdDefinitions

2007-09-29 Thread Thomas O Fredericks
Has the backlash been integrated as an escape character in the pd's editing
environment? Or is it still only useful in the file description format?

Tom

On 9/29/07, Mathieu Bouchard [EMAIL PROTECTED] wrote:


 some help for writing your http://puredata.org/dev/PdDefinitions ... those
 are surely not the best wordings, but it adds detail.

 comma (atom type): a comma character that is not backslashed, and thus is
 effective as a message separator in a messagebox.

 semicolon (atom type): a semicolon character that is not backslashed, and
 thus is effective as a message separator in any context. if there was any
 implicit context (as in a messagebox), semicolon forgets it, and thus you
 get to write an explicit receiver after every semicolon.

 dollar (in general): a nonbackslashed dollar sign followed by one or more
 digits. in an evaluation, this can be worth a float, symbol or pointer,
 whatever the corresponding argument in the argument list is.

 dollar (atom type): a dollar that is parsed individually; is replaced by
 the corresponding atom upon evaluation.

 dollsym (atom type) (missing): in pd 0.39 and earlier: a dollar
 (subtitutor) that is at the beginning of an atom, followed by symbol
 characters. Upon substitution it becomes a symbol, as the corresponding
 atom gets cast to characters and the symbols are merged to make one
 resulting symbol.

 dollsym (atom type) (missing): in pd 0.40 and earlier: any alternation of
 dollar (subtitutor) and normal symbol characters. All those dollar
 substitutors get replaced by corresponding atoms cast to characters and
 all the parts are merged to make one resulting symbol.

 (The backslashing stuff may be important to understand if you expect to
 modify or generate patches using [textfile] like some people do; in
 general it's good for understanding the fileformat)

 Personally, I called float symbol pointer the stable atoms, whereas
 I call comma semi dollar dollsym the radioactive atoms, because
 they decay upon being used by messageboxes. the radioactive atoms also
 only really stay alive inside of messageboxes, so in general in pd you
 will only see functions/methods for handling stable atoms, not radioactive
 ones.

 I could've put this in the wiki directly, but wanted to make sure it gets
 noticed (and also I'd like some feedback and to know what you'd change in
 this). Are there any automatic notifications of changes of wiki pages on
 puredata.info (as a configurable option, per user) ? I mean by email, just
 like for sf's bug tracker. It would be good to have this so that all
 parties involved in modifying pages really know about what's going on. It
 gives the advantages of mailing-lists to wikis.

   _ _ __ ___ _  _ _ ...
 | Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada
 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list


___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] : PD sync with JACK (linux)

2007-09-29 Thread Tim Blechmann
i once write a small external to query jacktransport ... maybe it is
useful for your purposes?

it is in the pd cvs under externals/tb/jacktransport 

best, tim

On Sat, 2007-09-29 at 13:20 +0200, Mysth-R wrote:
 Hi,
 I am new on this list. I tried to find some informations about syncing
 PD and Jack transport/BPM in the archive list but I am not
 satisfied :D
 I am making an Audio sequencer with PD, and I would like to use it
 with other linux softwares (seq24, hydrogens, freewheeling,...). 
 So I need to synchronise PD and Jack with MIDI or OSC;
 I saw on the archive list some module like midirealtimein but it
 doesn't seems to work for me. Only receive zeros.
 Today I am trying to use jack.tools, to synchronise with OSC
 ( jack.osc). I can send /start /stop messages, but I don't understand
 how I can send transport informations, bpm ...
 
 Can you help me / give me some informations ?
 Thank you for your help
 cheers,
 
 Erwan 
 
 -- 
 {^_^} Mysth-R {^_^}
 
 http://myspace.com/mysthr
 http://myspace.com/aideauditive 
 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list
--
[EMAIL PROTECTED]ICQ: 96771783
http://tim.klingt.org

The aim of education is the knowledge, not of facts, but of values
  William S. Burroughs


signature.asc
Description: This is a digitally signed message part
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] : PD sync with JACK (linux)

2007-09-29 Thread Mysth-R
Thank you for this external. It works and it is very usefull, but I would
like something more : control the BPM value.
In your programs, what is the effect of sending a bang to jack_transport ?
(I saw this in the help dialog)

Any more suggestions ? :)


2007/9/29, Tim Blechmann [EMAIL PROTECTED]:

 i once write a small external to query jacktransport ... maybe it is
 useful for your purposes?

 it is in the pd cvs under externals/tb/jacktransport

 best, tim

 On Sat, 2007-09-29 at 13:20 +0200, Mysth-R wrote:
  Hi,
  I am new on this list. I tried to find some informations about syncing
  PD and Jack transport/BPM in the archive list but I am not
  satisfied :D
  I am making an Audio sequencer with PD, and I would like to use it
  with other linux softwares (seq24, hydrogens, freewheeling,...).
  So I need to synchronise PD and Jack with MIDI or OSC;
  I saw on the archive list some module like midirealtimein but it
  doesn't seems to work for me. Only receive zeros.
  Today I am trying to use jack.tools, to synchronise with OSC
  ( jack.osc). I can send /start /stop messages, but I don't understand
  how I can send transport informations, bpm ...
 
  Can you help me / give me some informations ?
  Thank you for your help
  cheers,
 
  Erwan
 
  --
  {^_^} Mysth-R {^_^}
 
  http://myspace.com/mysthr
  http://myspace.com/aideauditive
  ___
  PD-list@iem.at mailing list
  UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list
 --
 [EMAIL PROTECTED]ICQ: 96771783
 http://tim.klingt.org

 The aim of education is the knowledge, not of facts, but of values
   William S. Burroughs




-- 
{^_^} Mysth-R {^_^}

http://myspace.com/mysthr
http://myspace.com/aideauditive
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [ANN] new external: tracker

2007-09-29 Thread Roman Haefeli
On Sat, 2007-09-29 at 13:21 +0200, federico wrote:
 I made a new release of tracker
 
 changelog:
 0.2.3 
   numbers are now aligned to right
   notification messages are sent from user interaction
   mouse behavior improved. now dragging faster changes more.
   added nice makefile for target:

cool!  it works and looks nice here.

roman




___ 
Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de


___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] : PD sync with JACK (linux)

2007-09-29 Thread Tim Blechmann
 I would like something more : control the BPM value.
 In your programs, what is the effect of sending a bang to
 jack_transport ? (I saw this in the help dialog) 

iirc, bang returns the jack transport frame number ...

i just wrote it for a composition, where i had to synchronize pd and
ardour via jack transport, so it just contains the features, that i
needed, which are very basic :)

cheers, tim

--
[EMAIL PROTECTED]ICQ: 96771783
http://tim.klingt.org

The aim of education is the knowledge, not of facts, but of values
  William S. Burroughs


signature.asc
Description: This is a digitally signed message part
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] fundamental hot/cold midi question

2007-09-29 Thread Yves Degoyon
ola,


anyway, there's not only programming in life, hopefully,
  

 a programmer is someone who has the illusion of making the machine behave
as a human brain one day, all he is achieving for now is
to make the human brains behave like machines.

this to tell programmers not to feel so superior..
i program but that's not the only thing i do.

sevy

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PdDefinitions

2007-09-29 Thread Mathieu Bouchard

On Sat, 29 Sep 2007, Thomas O Fredericks wrote:


Has the backlash


The backlash is only implemented on pd-list ;)

The backslash is something else...


been integrated as an escape character in the pd's editing environment?
Or is it still only useful in the file description format?


you may find a use for it from using pd, but you will have to either 
generate it with 92 - [makesymbol %c] or edit .pd files manually, but in 
the latter case, pd doesn't resave it properly, so you are better off with 
[makesymbol]. You will also have to generate dollar (36), comma (44), 
semicolon (59).


 _ _ __ ___ _  _ _ ...
| Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PdDefinitions

2007-09-29 Thread Frank Barknecht
Hallo,
Thomas O Fredericks hat gesagt: // Thomas O Fredericks wrote:

 Has the backlash been integrated as an escape character in the pd's editing
 environment? 

Not that I know of.

 Or is it still only useful in the file description format?

It's also used for example in symbols generated by [openpanel] and can
be made with [makefilename]

Ciao
-- 
 Frank Barknecht _ __footils.org_ __goto10.org__

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] : PD sync with JACK (linux)

2007-09-29 Thread Frank Barknecht
Hallo,
Mysth-R hat gesagt: // Mysth-R wrote:

 Thank you for this external. It works and it is very usefull, but I
 would like something more : control the BPM value.

What is the BPM value? I know what it is musically, but in Pd, there
is no such thing as a predefined BPM value. I never used
jack_transport besides starting stuff from Qjackctl, and there is no
BPM value either, as far as I saw.

Ciao
-- 
 Frank Barknecht _ __footils.org_ __goto10.org__

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PdDefinitions

2007-09-29 Thread Mathieu Bouchard

On Sat, 29 Sep 2007, Frank Barknecht wrote:


It's also used for example in symbols generated by [openpanel] and can
be made with [makefilename]


Every parsing interprets dollars and removes a layer of backslashes. 
Therefore when [openpanel] sends backslashes they are immediately removed 
and they are not actually part of the symbol. If they were, they would've 
to be sent as double-backslashes.


Btw, the .pd file format could've been made so that it does not evaluate $ 
at every possible occasion, and if it had been so, dollars wouldn't need 
to be backslashed by the fileformat. As it is, messageboxes and 
objectboxes are parsed once but evaluated twice, even though $-args are 
meaningless in the context of loading a patch: putting a nonbackslashed 
dollar in a .pd file will just make it disappear or be replaced by a zero. 
So, if you want to have an actual backslash in a messagebox or objectbox, 
you'd need to put a triple backslash in the file.


 _ _ __ ___ _  _ _ ...
| Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] [PD-announce] polywavesynth v 2.2

2007-09-29 Thread Phil Stone
A minor bug fix is available for polywavesynth.  During overlapping 
notes, new parameters meant only for subsequently-attacked notes were 
leaking into the releases of former notes, leading to undesirable 
artifacts.  This becomes particularly noticeable with a lot of dynamic 
parameter changing, as is now possible with OSC.  The fix makes it so 
parameters are changed only for new attacks.

If you're using a former version, please update to this version to avoid 
the artifacts.  Please let me know if there are any difficulties.

see:

http://www.pkstonemusic.com/polyWaveSynth.html

or directly download the archive:

http://www.pkstonemusic.com/code/polywavesynth.tgz

Change history:
v 2.2 - fixed bug causing voice parameters to change on release during 
polyphony.


Phil Stone
pkstonemusic.com

___
PD-announce mailing list
[EMAIL PROTECTED]
http://lists.puredata.info/listinfo/pd-announce

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] : PD sync with JACK (linux)

2007-09-29 Thread Mysth-R
2007/9/29, Frank Barknecht [EMAIL PROTECTED]:

 Hallo,
 Mysth-R hat gesagt: // Mysth-R wrote:

  Thank you for this external. It works and it is very usefull, but I
  would like something more : control the BPM value.

 What is the BPM value? I know what it is musically, but in Pd, there
 is no such thing as a predefined BPM value. I never used
 jack_transport besides starting stuff from Qjackctl, and there is no
 BPM value either, as far as I saw.


Yes it's right ... but if you want to synchronize several software you need
a bpm don't you ?
In pd I just use a counter to generate a regular signal (bang)
Is there a way to send or receive a signal that I could transform in bpm in
pd ?



Ciao
 --
 Frank Barknecht _ __footils.org_ __goto10.org__

 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list




-- 
{^_^} Mysth-R {^_^}

http://myspace.com/mysthr
http://myspace.com/aideauditive
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [declare] won't load standard pathes on osx

2007-09-29 Thread Roman Haefeli
On Tue, 2007-09-18 at 01:08 +0200, Roman Haefeli wrote:
 On Mon, 2007-09-17 at 22:35 +0200, Enrique Erne wrote:
  hi 
  
  i try to load hp1~.pd from iemabs with Pd version 0.40-2 compiled for 
  Macintosh
  OSX 10.3
  
  here it is:
  /Applications/Pd-0.40-2.app/Contents/Resources/extra/iemabs
  
  that's the test-patch:
  [declare -stdpath ../extra/iemabs]
 
 it's probably necessary to add, that this same [declare] works on
 windows and linux (tested was alsways with 0.40.2, iemabs was always in
 pdpath/extra).
 
 though, the flags -stdlib and -path seem to work as well on osx, but not
 -stdpath for some reason.
 
 can anyone on osx please test/confirm that?

would be cool to hear anything about it. is [declare] supposed to work
the same on osx as on linux and windows? (i guess so.. )

roman




___ 
Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de


___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PdDefinitions

2007-09-29 Thread Hans-Christoph Steiner

Go ahead a make a page in the PdDefinitions section and add this  
stuff.  That's what it's there for.

.hc

On Sep 29, 2007, at 2:54 AM, Mathieu Bouchard wrote:


 some help for writing your http://puredata.org/dev/ 
 PdDefinitions ... those are surely not the best wordings, but it  
 adds detail.

 comma (atom type): a comma character that is not backslashed, and  
 thus is effective as a message separator in a messagebox.

 semicolon (atom type): a semicolon character that is not  
 backslashed, and thus is effective as a message separator in any  
 context. if there was any implicit context (as in a messagebox),  
 semicolon forgets it, and thus you get to write an explicit  
 receiver after every semicolon.

 dollar (in general): a nonbackslashed dollar sign followed by one  
 or more digits. in an evaluation, this can be worth a float, symbol  
 or pointer, whatever the corresponding argument in the argument  
 list is.

 dollar (atom type): a dollar that is parsed individually; is  
 replaced by the corresponding atom upon evaluation.

 dollsym (atom type) (missing): in pd 0.39 and earlier: a dollar  
 (subtitutor) that is at the beginning of an atom, followed by  
 symbol characters. Upon substitution it becomes a symbol, as the  
 corresponding atom gets cast to characters and the symbols are  
 merged to make one resulting symbol.

 dollsym (atom type) (missing): in pd 0.40 and earlier: any  
 alternation of dollar (subtitutor) and normal symbol characters.  
 All those dollar substitutors get replaced by corresponding atoms  
 cast to characters and all the parts are merged to make one  
 resulting symbol.

 (The backslashing stuff may be important to understand if you  
 expect to modify or generate patches using [textfile] like some  
 people do; in general it's good for understanding the fileformat)

 Personally, I called float symbol pointer the stable atoms,  
 whereas I call comma semi dollar dollsym the radioactive  
 atoms, because they decay upon being used by messageboxes. the  
 radioactive atoms also only really stay alive inside of  
 messageboxes, so in general in pd you will only see functions/ 
 methods for handling stable atoms, not radioactive ones.

 I could've put this in the wiki directly, but wanted to make sure  
 it gets noticed (and also I'd like some feedback and to know what  
 you'd change in this). Are there any automatic notifications of  
 changes of wiki pages on puredata.info (as a configurable option,  
 per user) ? I mean by email, just like for sf's bug tracker. It  
 would be good to have this so that all parties involved in  
 modifying pages really know about what's going on. It gives the  
 advantages of mailing-lists to wikis.

  _ _ __ ___ _  _ _ ...
 | Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada



 


All information should be free.  - the hacker ethic





___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Obtaining the sample rate

2007-09-29 Thread Hans-Christoph Steiner

It's called samplerate~

.hc


On Sep 29, 2007, at 10:47 PM, Ken Restivo wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 In my PD documentation-reading and websurfing travels, I happened  
 upon an external or some other way to obtain the sample rate from  
 PD programmatically, instead of hardcoding it (bad! bad! bad!) in  
 PD patches.

 But I didn't write it down, and my bookmark list is so stuffed with  
 crap that there's no way I'd ever return if I went in there to look.

 So I'll ask here: how does one obtain the current sample rate of  
 the audio engine, from within a PD patch?

 Thanks.

 (By the way, I'm writing a jack_metro abstraction, which is  
 basically a metro that is sync'ed to JACK's sample-accurate clock,  
 unless of course someone has already done it, so please let me know  
 if they have).

 - -ken
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)

 iD8DBQFG/w4we8HF+6xeOIcRAudeAJ0TpeuSKtdQAqbQHW7F8p8GAfCWBQCgwvim
 H6Et3VRqkHBdOjeYxhL3O80=
 =1puv
 -END PGP SIGNATURE-

 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management - http://lists.puredata.info/ 
 listinfo/pd-list



 


All information should be free.  - the hacker ethic





___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] nightly builts library path

2007-09-29 Thread Hans-Christoph Steiner

That's as good as it gets currently.  It's pretty rough, but that  
means it loaded basically every lib except pdp and pidip.

.hc

On Sep 29, 2007, at 4:45 AM, Achim Bornhoeft wrote:

 I killed all older .plist files before starting Pd-0.40.3- 
 extended-20070927. Now I get the attached output from the pd window.

 Achim

 Hans-Christoph Steiner schrieb:
 I tried todays and it worked for me.  Post the contents of the Pd  
 Window and/or more info.
 .hc
 On Sep 28, 2007, at 12:07 PM, Achim Bornhoeft wrote:
 When I start a Nightly Auto-build (PPC, OS 10.4.8) from
 http://autobuild.puredata.info/auto-build/ the program cannot  
 load the
 included libraries.
 How can I set up the path(s) since there is no .plist file anymore?

 Thanks for any help,
 Achim


 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management - http://lists.puredata.info/ 
 listinfo/pd-list
 - 
 --- Terrorism is not an enemy.  It cannot be defeated.  It's a  
 tactic.  It's about as sensible to say we declare war on night  
 attacks and expect we're going to win that war.  We're not going  
 to win the war on terrorism.- retired U.S. Army general,  
 William Odom

 -- 
Achim Bornhoeft
 .- Neckarhalde 38, D-72070 Tuebingen
 -.-.   tel/fax +49 (0)7071 942745
 -...   mobil +49 (0)179 6936930
skype:achim.bornhoeft?call
 --


 libdir loader $Revision: 1.6 $
   written by Hans-Christoph Steiner [EMAIL PROTECTED]
   compiled on Sep 27 2007 at 04:02:16
   compiled against Pd version 0.40.3.extended-20070927
 class_addmethod: 0x1203cc0
 consistency check failed: class_addmethod: text2d_string: bad  
 argument types

 class_addmethod: 0x1203cc0
 consistency check failed: class_addmethod: text3d_string: bad  
 argument types

 class_addmethod: 0x1203cc0
 consistency check failed: class_addmethod: textextruded_string: bad  
 argument types

 class_addmethod: 0x1203cc0
 consistency check failed: class_addmethod: textoutline_string: bad  
 argument types

 class_addmethod: 0x1323180
 consistency check failed: class_addmethod:  
 GEMglProgramStringARB_string: bad argument types

 GEM: Graphics Environment for Multimedia
 GEM: ver: 0.91-cvs
 GEM: compiled: Sep 27 2007
 GEM: maintained by IOhannes m zmoelnig
 GEM: Authors :Mark Danks (original version)
 GEM:  Chris Clepper
 GEM:  James Tittle
 GEM:  IOhannes m zmoelnig
 GEM: with help by Guenter Geiger, Daniel Heckenberg, Cyrille Henry,  
 et al.
 GEM: using AltiVec optimization
 libdir_loader: added cyclone to the global classpath
   This is deprecated behavior.
 libdir_loader: added zexy to the global classpath
   This is deprecated behavior.
 libdir_loader: added creb to the global classpath
   This is deprecated behavior.
 libdir_loader: added cxc to the global classpath
   This is deprecated behavior.
 libdir_loader: added ggee to the global classpath
   This is deprecated behavior.
 libdir_loader: added iemlib to the global classpath
   This is deprecated behavior.
 libdir_loader: added list-abs to the global classpath
   This is deprecated behavior.
 libdir_loader: added mapping to the global classpath
   This is deprecated behavior.
 libdir_loader: added markex to the global classpath
   This is deprecated behavior.
 libdir_loader: added maxlib to the global classpath
   This is deprecated behavior.
 libdir_loader: added memento to the global classpath
   This is deprecated behavior.
 libdir_loader: added mjlib to the global classpath
   This is deprecated behavior.
 libdir_loader: added motex to the global classpath
   This is deprecated behavior.
 libdir_loader: added oscx to the global classpath
   This is deprecated behavior.
 libdir_loader: added pddp to the global classpath
   This is deprecated behavior.
 libdir_loader: added pdogg to the global classpath
   This is deprecated behavior.
 libdir_loader: added pixeltango to the global classpath
   This is deprecated behavior.
 libdir_loader: added pmpd to the global classpath
   This is deprecated behavior.
 libdir_loader: added rradical to the global classpath
   This is deprecated behavior.
 libdir_loader: added sigpack to the global classpath
   This is deprecated behavior.
 libdir_loader: added smlib to the global classpath
   This is deprecated behavior.
 libdir_loader: added toxy to the global classpath
   This is deprecated behavior.
 libdir_loader: added unauthorized to the global classpath
   This is deprecated behavior.
 libdir_loader: added pan to the global classpath
   This is deprecated behavior.
 libdir_loader: added freeverb to the global classpath
   This is deprecated behavior.
 libdir_loader: added hcs to the global classpath
   This is deprecated behavior.
 libdir_loader: added jmmmp to the global classpath
   This 

[PD] Obtaining the sample rate

2007-09-29 Thread Ken Restivo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

In my PD documentation-reading and websurfing travels, I happened upon an 
external or some other way to obtain the sample rate from PD programmatically, 
instead of hardcoding it (bad! bad! bad!) in PD patches.

But I didn't write it down, and my bookmark list is so stuffed with crap that 
there's no way I'd ever return if I went in there to look.

So I'll ask here: how does one obtain the current sample rate of the audio 
engine, from within a PD patch?

Thanks.

(By the way, I'm writing a jack_metro abstraction, which is basically a metro 
that is sync'ed to JACK's sample-accurate clock, unless of course someone has 
already done it, so please let me know if they have).

- -ken
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFG/w4we8HF+6xeOIcRAudeAJ0TpeuSKtdQAqbQHW7F8p8GAfCWBQCgwvim
H6Et3VRqkHBdOjeYxhL3O80=
=1puv
-END PGP SIGNATURE-

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] OSCx fails to build on intel core 2 duo

2007-09-29 Thread Ken Restivo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

make[1]: Leaving directory 
`/usr/scratch/backports/pd/externals-expanded-extra-whatever/cvs-externals/OSCx/libOSC'
cd src  make
make[1]: Entering directory 
`/usr/scratch/backports/pd/externals-expanded-extra-whatever/cvs-externals/OSCx/src'
cc -Wl,-export_dynamic -shared -o sendOSC.pd_linux sendOSC.o htmsocket.o 
OSC-system-dependent.o -L../../../pd/bin -lpd -lc -lm ../libOSC/libOSC.a
/usr/bin/ld: sendOSC.o: relocation R_X86_64_32 against `a local symbol' can not 
be used when making a shared object; recompile with -fPIC
sendOSC.o: could not read symbols: Bad value
collect2: ld returned 1 exit status


Linux asus 2.6.21-rt1-1 #1 SMP PREEMPT Thu May 3 00:41:41 PDT 2007 x86_64 
GNU/Linux

- -ken
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFG/xB6e8HF+6xeOIcRAvYYAJ9MRVI0GyIRwaP255JPDLaQ8+NIjACg99/K
VQED0metvHpTV5b6y/GJWTw=
=3nJZ
-END PGP SIGNATURE-

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list