Re: [PD] +=~ object for pd

2012-07-17 Thread Pierre Massat
Hi,

I'm interested in everything related to guitar sound processing, and I
write a blog to share guitar effect patches. Would you be willing to share
some of your work with us?

Cheers,

Pierre.

2012/7/17 Simon Iten itensi...@gmail.com

 PERFECT!!

 that did the trick! now i'm one step closer to my gr-300 simulation :-)
 thanks!


 On Jul 17, 2012, at 12:59 AM, Claude Heiland-Allen wrote:

  On 16/07/12 22:26, Simon Iten wrote:
   [+=~] the object adds all the values it receives and can be reset with
 a signal (in my case a pulse)
  is there an equivalent in pd? i can't seem to find one.
 
  [rpole~]
 
  right inlet 0 to reset
  right inlet 1 to accumulate
 
  ___
  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

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


Re: [PD] +=~ object for pd

2012-07-17 Thread Dan Wilcox
Yeah, let us know when you got it working ... I'd like to see and perhaps try 
with my midi guitar.

On Jul 17, 2012, at 2:58 AM, Pierre Massat wrote:

 Hi,
 
 I'm interested in everything related to guitar sound processing, and I write 
 a blog to share guitar effect patches. Would you be willing to share some of 
 your work with us? 
 
 Cheers,
 
 Pierre.
 
 2012/7/17 Simon Iten itensi...@gmail.com
 PERFECT!!
 
 that did the trick! now i'm one step closer to my gr-300 simulation :-) 
 thanks!
 
 
 On Jul 17, 2012, at 12:59 AM, Claude Heiland-Allen wrote:
 
  On 16/07/12 22:26, Simon Iten wrote:
   [+=~] the object adds all the values it receives and can be reset with a 
  signal (in my case a pulse)
  is there an equivalent in pd? i can't seem to find one.
 
  [rpole~]
 
  right inlet 0 to reset
  right inlet 1 to accumulate
 
  ___
  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
 


Dan Wilcox
danomatika.com
robotcowboy.com




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


Re: [PD] +=~ object for pd

2012-07-17 Thread Simon Iten
Sure! The thing is though that i'm going for the real thing here. :-) so in 
order to use my patch you have to have audio output from each string of your 
guitar. no midi. i do this by using an active breakout box from bill baxendale. 
check: http://billbax.110mb.com/

cheers,

simon

On Jul 17, 2012, at 9:19 AM, Dan Wilcox wrote:

 Yeah, let us know when you got it working ... I'd like to see and perhaps try 
 with my midi guitar.
 
 On Jul 17, 2012, at 2:58 AM, Pierre Massat wrote:
 
 Hi,
 
 I'm interested in everything related to guitar sound processing, and I write 
 a blog to share guitar effect patches. Would you be willing to share some of 
 your work with us? 
 
 Cheers,
 
 Pierre.
 
 2012/7/17 Simon Iten itensi...@gmail.com
 PERFECT!!
 
 that did the trick! now i'm one step closer to my gr-300 simulation :-) 
 thanks!
 
 
 On Jul 17, 2012, at 12:59 AM, Claude Heiland-Allen wrote:
 
  On 16/07/12 22:26, Simon Iten wrote:
   [+=~] the object adds all the values it receives and can be reset with a 
  signal (in my case a pulse)
  is there an equivalent in pd? i can't seem to find one.
 
  [rpole~]
 
  right inlet 0 to reset
  right inlet 1 to accumulate
 
  ___
  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
 
 
 
 Dan Wilcox
 danomatika.com
 robotcowboy.com
 
 
 
 

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


[PD] +=~ object for pd

2012-07-16 Thread Simon Iten
hi list,

i have a hard time getting a max patch ported to pd.
the one  object in max that bugs me is a signal accumulator. [+=~] the object 
adds all the values it receives and can be reset with a signal (in my case a 
pulse)
is there an equivalent in pd? i can't seem to find one.

i try to create some kind of ramped up signal that gets reset everytime a pulse 
arrives. this gives me a sawtooth-like wave, the amplitude is determined by the 
frequency of the pulse. 
lower frequency of the pulse gives higher amplitude and vice versa. the 
important part is, that everything has to be done at signal rate, no messages 
:-)

here is how it looks and works in max/msp:

[sig~ 1] pulsesignal
   \/
   [+=~]
|
[/~ 44100] (divided by current samplerate)
|
sawtooth with amplitude depending on frequency of the pulse



is there a way to achieve this without the signal accumulator object? i feel 
like there should be an easy solution but i can't seem to find it. any hints?

thanks, simon___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] +=~ object for pd

2012-07-16 Thread Funs Seelen
Hi Simon,

On Mon, Jul 16, 2012 at 11:26 PM, Simon Iten itensi...@gmail.com wrote:

 is there a way to achieve this without the signal accumulator object? i feel
 like there should be an easy solution but i can't seem to find it. any
 hints?


If you mean the following, where x is the input and y the output..

y += x;

and that for each sample..

then [biquad~] might be a solution:

[sig~ 1]
|
|  [clear(
| /
[biquad~ 1 0 1 0 0]
|

This adds the last output to the current input. The [clear( message
resets biquad~ to 0. Now you just have to find a method to translate
your pulse to a bang.

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


Re: [PD] +=~ object for pd

2012-07-16 Thread Simon Iten
this seems like a great approach. thanks!
my only concern is, that there will be nothing fast enough to detect my 30-1200 
pulses per second... and i also don't think bangs can be sent that precisely, 
or can they?
On Jul 17, 2012, at 12:13 AM, Funs Seelen wrote:

 Hi Simon,
 
 On Mon, Jul 16, 2012 at 11:26 PM, Simon Iten itensi...@gmail.com wrote:
 
 is there a way to achieve this without the signal accumulator object? i feel
 like there should be an easy solution but i can't seem to find it. any
 hints?
 
 
 If you mean the following, where x is the input and y the output..
 
 y += x;
 
 and that for each sample..
 
 then [biquad~] might be a solution:
 
 [sig~ 1]
 |
 |  [clear(
 | /
 [biquad~ 1 0 1 0 0]
 |
 
 This adds the last output to the current input. The [clear( message
 resets biquad~ to 0. Now you just have to find a method to translate
 your pulse to a bang.


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


Re: [PD] +=~ object for pd

2012-07-16 Thread Claude Heiland-Allen

On 16/07/12 22:26, Simon Iten wrote:

  [+=~] the object adds all the values it receives and can be reset with a 
signal (in my case a pulse)
is there an equivalent in pd? i can't seem to find one.


[rpole~]

right inlet 0 to reset
right inlet 1 to accumulate

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


Re: [PD] +=~ object for pd

2012-07-16 Thread Simon Iten
PERFECT!!

that did the trick! now i'm one step closer to my gr-300 simulation :-) thanks!


On Jul 17, 2012, at 12:59 AM, Claude Heiland-Allen wrote:

 On 16/07/12 22:26, Simon Iten wrote:
  [+=~] the object adds all the values it receives and can be reset with a 
 signal (in my case a pulse)
 is there an equivalent in pd? i can't seem to find one.
 
 [rpole~]
 
 right inlet 0 to reset
 right inlet 1 to accumulate
 
 ___
 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] Object size Pd Extended

2008-05-11 Thread Hans-Christoph Steiner


From the screenshot it looks like the right font is loaded, but it  
is messed up, since the p and g are higher than the other letters,  
for example.   Looks like you are running Ubuntu/Hardy.  Which  
language are you using?  It works fine on both of my Ubuntu/Hardy  
machines, and it worked before on Feisty and Gutsy.  My guess is  
still that something is wrong with your machines font handling.   
Which version of Tcl/Tk do you have installed?


.hc

On May 9, 2008, at 10:34 PM, Alex Lucas wrote:


Hello everyone,

Hans thank you for your reply. I did what you suggested but  
unfortunately the problem is still there. I also reinstalled Pd- 
extended. The output from the terminal is provided below. It seems  
the Bitstream fonts were already installed.


Regards
Alex

sudo aptitude install ttf-bitstream-vera
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not  
upgraded.

Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
[EMAIL PROTECTED]:~$

sudo aptitude install ttf-bitstream-vera
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not  
upgraded.

Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
[EMAIL PROTECTED]:~$
[EMAIL PROTECTED]:~$ apt-get install --reinstall x-ttcidfont-conf
E: Could not open lock file /var/lib/dpkg/lock - open (13  
Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/),  
are you root?

[EMAIL PROTECTED]:~$ sudo apt-get install --reinstall x-ttcidfont-conf
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not  
upgraded.

Need to get 0B/20.1kB of archives.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
Preconfiguring packages ...
(Reading database ... ^T124971 files and directories currently  
installed.)
Preparing to replace x-ttcidfont-conf 27 (using .../x-ttcidfont- 
conf_27_all.deb) ...

Cleaning up font configuration of x-ttcidfont-conf...
Cleaning up category cmap..
Cleaning up category cid..
Cleaning up category truetype..
Unpacking replacement x-ttcidfont-conf ...
Setting up x-ttcidfont-conf (27) ...
Updating font configuration of x-ttcidfont-conf...
Cleaning up category cmap..
Cleaning up category cid..
Cleaning up category truetype..
Updating category truetype..
Updating category cid..
Updating category cmap..

2008/5/4 Hans-Christoph Steiner [EMAIL PROTECTED]:

I'll bet it is having trouble finding the Bitstream Vera fonts.   
Start out by making sure they are installed:


sudo aptitude install ttf-bitstream-vera

Then try this:

http://lists.puredata.info/pipermail/pd-list/2007-10/055576.html

.hc

On May 4, 2008, at 10:06 PM, Alex Lucas wrote:


Hello,

I've recently installed Pd Extended 0.40.3 on Ubuntu Hardy Heron  
8.04. I seem to be having problems with the size of object boxes  
whereby the text doesn't seem to fit inside the bounds of the  
object. I'm using a screen resolution of 1440 x 900, when this is  
reduced to 1024 x 786 there is no problem. I've also installed Pd  
Vanilla 0.40-2 which seems to be fine regardless of the screen  
resolution. Please click on the link below for a screen shot.


http://farm3.static.flickr.com/2097/2464690219_11bd0677f5_o.jpg

Any help would be greatly appreciated
Many thanks
Alex
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - http://lists.puredata.info/ 
listinfo/pd-list








-- 
--


It is convenient to imagine a power beyond us because that means  
we don't have to examine our own lives., from The Idols of  
Environmentalism, by Curtis White










 



As we enjoy great advantages from inventions of others, we should be  
glad of an opportunity to serve others by any invention of ours; and  
this we should do freely and generously. - 

Re: [PD] Object size Pd Extended

2008-05-09 Thread Alex Lucas
Hello everyone,

Hans thank you for your reply. I did what you suggested but unfortunately
the problem is still there. I also reinstalled Pd-extended. The output from
the terminal is provided below. It seems the Bitstream fonts were already
installed.

Regards
Alex

sudo aptitude install ttf-bitstream-vera
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
[EMAIL PROTECTED]:~$

sudo aptitude install ttf-bitstream-vera
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initialising package states... Done
Building tag database... Done
[EMAIL PROTECTED]:~$
[EMAIL PROTECTED]:~$ apt-get install --reinstall x-ttcidfont-conf
E: Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you
root?
[EMAIL PROTECTED]:~$ sudo apt-get install --reinstall x-ttcidfont-conf
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not
upgraded.
Need to get 0B/20.1kB of archives.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
Preconfiguring packages ...
(Reading database ... ^T124971 files and directories currently installed.)
Preparing to replace x-ttcidfont-conf 27 (using
.../x-ttcidfont-conf_27_all.deb) ...
Cleaning up font configuration of x-ttcidfont-conf...
Cleaning up category cmap..
Cleaning up category cid..
Cleaning up category truetype..
Unpacking replacement x-ttcidfont-conf ...
Setting up x-ttcidfont-conf (27) ...
Updating font configuration of x-ttcidfont-conf...
Cleaning up category cmap..
Cleaning up category cid..
Cleaning up category truetype..
Updating category truetype..
Updating category cid..
Updating category cmap..

2008/5/4 Hans-Christoph Steiner [EMAIL PROTECTED]:


 I'll bet it is having trouble finding the Bitstream Vera fonts.  Start out
 by making sure they are installed:

 sudo aptitude install ttf-bitstream-vera

 Then try this:

 http://lists.puredata.info/pipermail/pd-list/2007-10/055576.html

 .hc

 On May 4, 2008, at 10:06 PM, Alex Lucas wrote:

 Hello,

 I've recently installed Pd Extended 0.40.3 on Ubuntu Hardy Heron 8.04. I
 seem to be having problems with the size of object boxes whereby the text
 doesn't seem to fit inside the bounds of the object. I'm using a screen
 resolution of 1440 x 900, when this is reduced to 1024 x 786 there is no
 problem. I've also installed Pd Vanilla 0.40-2 which seems to be fine
 regardless of the screen resolution. Please click on the link below for a
 screen shot.

 http://farm3.static.flickr.com/2097/2464690219_11bd0677f5_o.jpg

 Any help would be greatly appreciated
 Many thanks
 Alex
 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list









 

 It is convenient to imagine a power beyond us because that means we don't
 have to examine our own lives., from The Idols of Environmentalism, by
 Curtis White





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


[PD] Object size Pd Extended

2008-05-04 Thread Alex Lucas
Hello,

I've recently installed Pd Extended 0.40.3 on Ubuntu Hardy Heron 8.04. I
seem to be having problems with the size of object boxes whereby the text
doesn't seem to fit inside the bounds of the object. I'm using a screen
resolution of 1440 x 900, when this is reduced to 1024 x 786 there is no
problem. I've also installed Pd Vanilla 0.40-2 which seems to be fine
regardless of the screen resolution. Please click on the link below for a
screen shot.

http://farm3.static.flickr.com/2097/2464690219_11bd0677f5_o.jpg

Any help would be greatly appreciated
Many thanks
Alex
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Object size Pd Extended

2008-05-04 Thread Hans-Christoph Steiner


I'll bet it is having trouble finding the Bitstream Vera fonts.   
Start out by making sure they are installed:


sudo aptitude install ttf-bitstream-vera

Then try this:

http://lists.puredata.info/pipermail/pd-list/2007-10/055576.html

.hc

On May 4, 2008, at 10:06 PM, Alex Lucas wrote:


Hello,

I've recently installed Pd Extended 0.40.3 on Ubuntu Hardy Heron  
8.04. I seem to be having problems with the size of object boxes  
whereby the text doesn't seem to fit inside the bounds of the  
object. I'm using a screen resolution of 1440 x 900, when this is  
reduced to 1024 x 786 there is no problem. I've also installed Pd  
Vanilla 0.40-2 which seems to be fine regardless of the screen  
resolution. Please click on the link below for a screen shot.


http://farm3.static.flickr.com/2097/2464690219_11bd0677f5_o.jpg

Any help would be greatly appreciated
Many thanks
Alex
___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - http://lists.puredata.info/ 
listinfo/pd-list








 



It is convenient to imagine a power beyond us because that means we  
don't have to examine our own lives., from The Idols of  
Environmentalism, by Curtis White





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