Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread Jose Ramia
thanks a lot for helping.
it works with ctlin.
but is any efficent way to avoid clicks when i move the faders of the controler?
thanks again





From: Jose Luis Santorcuato santorcuat...@gmail.com
To: pd-list@iem.at
Sent: Mon, 16 November, 2009 17:43:48
Subject: Re: [PD] korg nano kontrol vs pure data

Yes works... see my blog in the signature i make a video

Best regards

José


2009/11/16 Frank Barknecht f...@footils.org

Hallo,

Jose Ramia hat gesagt: // Jose Ramia wrote:

 i´ve bought a korg nano koltrol device.
 i´d like to use it with pd.
 hid seems to don´t wok.
 any ideas ?

I think, it's a midi device, so you should use the midi objects like [ctlin].

Ciao
--
Frank


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



-- 
http://www.chilemigra.cl
http://arselectronicachile.blogspot.com
http://www.myspace.com/santorcuato


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


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread Andrew Faraday

Hey Jose

Yes, there is, 

[Ctlin]
|
[pack f 10] (you might want to experiment with this)
|
[line~]

Then your arithmetic etc. 

This basically provides ten milliseconds of interpolation whenever the 
controller is changed. Too short to noticably change the speed of a fade but it 
gets rid of the clicks.



Date: Tue, 17 Nov 2009 13:08:04 +
From: josemariara...@yahoo.co.uk
To: pd-list@iem.at
Subject: Re: [PD] korg nano kontrol vs pure data



thanks a lot for helping.it works with ctlin.but is any efficent way to avoid 
clicks when i move the faders of the controler?thanks again

From: Jose Luis Santorcuato santorcuat...@gmail.com
To: pd-list@iem.at
Sent: Mon, 16 November, 2009 17:43:48
Subject: Re: [PD] korg nano kontrol vs pure data

Yes works... see my
 blog in the signature i make a video
Best regards
José

2009/11/16 Frank Barknecht f...@footils.org

Hallo,

Jose Ramia hat gesagt: // Jose Ramia wrote:



 i´ve bought a korg nano koltrol device.

 i´d like to use it with pd.

 hid seems to don´t wok.

 any ideas ?



I think, it's a midi device, so you should use the midi objects like [ctlin].



Ciao

--

Frank



___

Pd-list@iem.at mailing list

UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list



-- 
http://www.chilemigra.cl
http://arselectronicachile.blogspot.com

http://www.myspace.com/santorcuato









  
_
Have more than one Hotmail account? Link them together to easily access both
 http://clk.atdmt.com/UKM/go/186394591/direct/01/___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread Justin Glenn Smith
Jose Ramia wrote:
 thanks a lot for helping.
 it works with ctlin.
 but is any efficent way to avoid clicks when i move the faders of the 
 controler?
 thanks again
 
 

Are the clicks happening because of a parameter change? If so, a [line] object 
can
be used to smooth out transitions between values. IE

[ctlin 1]
 |
[$1 50
 |
[line]
 |
[mtof]
 |
[osc~]

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


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread zmoelnig

Quoting Justin Glenn Smith noisesm...@gmail.com:



[ctlin 1]
 |
[$1 50
 |
[line]
 |
[mtof]
 |
[osc~]


it's interesting how people stick to this approach!
what it will actually produce is a series of inconsistencies (aka  
clicks; in our case: steps|

) every 64 samples.
if you are lucky, the inconssistenies will be small enough to notice.
however chances are quite big that you _will_ notice.

if you want to avoid audio clicks, you should create your lines in  
audio domain and not in message domain


[ctlin 1]
|
[pack 0 50]
|
[line~]
|
[mtof~]
|
[osc~]

or, if there was no signal version of [mtof], something like:

[ctlin 1]
|
[pack 0 50]
|
[line]
|
[mtof]
|
[pack 0 10]
|
[line~]
|
[osc~]



mfgadr
IOhannes


This message was sent using IMP, the Internet Messaging Program.



bintezy40jiB5.bin
Description: Öffentlicher 	PGP-Schlüssel
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread Frank Barknecht
Hallo,
zmoel...@iem.at hat gesagt: // zmoel...@iem.at wrote:

 Quoting Justin Glenn Smith noisesm...@gmail.com:

 [ctlin 1]
  |
 [$1 50
  |
 [line]
  |
 [mtof]
  |
 [osc~]

 it's interesting how people stick to this approach!
 what it will actually produce is a series of inconsistencies (aka  
 clicks; in our case: steps|
 ) every 64 samples.

Acutally the steps happen every 20 milliseconds, which is the default update
rate of [line] (undocumented in line's help file, I checked with [timer]).

Ciao
-- 
Frank

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


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread zmoelnig

Quoting Frank Barknecht f...@footils.org:



it's interesting how people stick to this approach!
what it will actually produce is a series of inconsistencies (aka
clicks; in our case: steps|
) every 64 samples.


Acutally the steps happen every 20 milliseconds, which is the default update
rate of [line] (undocumented in line's help file, I checked with [timer]).



right.
but even if you specify a grainsize of 0.1ms, feeding the output of  
[line] will take effect only at block-boundaries (unless you use the  
v family of objects), which is usually 64 samples.


fgmasdr
IOhannes


This message was sent using IMP, the Internet Messaging Program.



binG1V1SW3IbA.bin
Description: Öffentlicher 	PGP-Schlüssel
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread cyrille henry



zmoel...@iem.at a écrit :

Quoting Justin Glenn Smith noisesm...@gmail.com:



[ctlin 1]
 |
[$1 50
 |
[line]
 |
[mtof]
 |
[osc~]


it's interesting how people stick to this approach!
what it will actually produce is a series of inconsistencies (aka 
clicks; in our case: steps|

) every 64 samples.

it's worst than that : it should create clicks every 20ms, since that's the 
default line output rate!

c


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


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread Mathieu Bouchard

On Tue, 17 Nov 2009, zmoel...@iem.at wrote:


or, if there was no signal version of [mtof]


Then you could make one:

[inlet~]
 |
[*~ 0.0577623]
 |
[exp~]
 |
[*~ 8.1758]
 |
[outlet~]

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


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread zmoelnig

Quoting Mathieu Bouchard ma...@artengine.ca:


On Tue, 17 Nov 2009, zmoel...@iem.at wrote:


or, if there was no signal version of [mtof]


Then you could make one:


i was trying to give advice how to handle a msg-only blackbox.

mfg.asdr
IOhannes


This message was sent using IMP, the Internet Messaging Program.



binmdo1Yf5InU.bin
Description: Öffentlicher 	PGP-Schlüssel
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] korg nano kontrol vs pure data

2009-11-17 Thread Mathieu Bouchard

On Tue, 17 Nov 2009, zmoel...@iem.at wrote:

Quoting Mathieu Bouchard ma...@artengine.ca:

On Tue, 17 Nov 2009, zmoel...@iem.at wrote:

or, if there was no signal version of [mtof]

Then you could make one:

i was trying to give advice how to handle a msg-only blackbox.


I was trying to say something else.

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


Re: [PD] korg nano kontrol vs pure data

2009-11-16 Thread jurgen
it doesn't work? perhaps it is broken then.

Jurgen

On Nov 16, 2009, at 11:18 PM, Jose Ramia wrote:

 hi all.
 i´ve bought a korg nano koltrol device.
 i´d like to use it with pd.
 hid seems to don´t wok.
 any ideas ?
 thanks
 jm
 
 
 ___
 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] korg nano kontrol vs pure data

2009-11-16 Thread Frank Barknecht
Hallo,
Jose Ramia hat gesagt: // Jose Ramia wrote:

 i´ve bought a korg nano koltrol device.
 i´d like to use it with pd.
 hid seems to don´t wok.
 any ideas ?

I think, it's a midi device, so you should use the midi objects like [ctlin].

Ciao
-- 
Frank

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


Re: [PD] korg nano kontrol vs pure data

2009-11-16 Thread Jose Luis Santorcuato
Yes works... see my blog in the signature i make a video

Best regards

José

2009/11/16 Frank Barknecht f...@footils.org

 Hallo,
 Jose Ramia hat gesagt: // Jose Ramia wrote:

  i´ve bought a korg nano koltrol device.
  i´d like to use it with pd.
  hid seems to don´t wok.
  any ideas ?

 I think, it's a midi device, so you should use the midi objects like
 [ctlin].

 Ciao
 --
 Frank

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




-- 
http://www.chilemigra.cl
http://arselectronicachile.blogspot.com
http://www.myspace.com/santorcuato
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] korg nano kontrol vs pure data

2009-11-16 Thread Mikael Fernstrom
All the Korg Nanos work fine with PD. Select your MIDI devices in the  
Preferences, open testtone.pd and you can see the MIDI messages.

/Mikael


On 16 Nov 2009, at 16:43, Jose Luis Santorcuato wrote:


Yes works... see my blog in the signature i make a video

Best regards

José

2009/11/16 Frank Barknecht f...@footils.org
Hallo,
Jose Ramia hat gesagt: // Jose Ramia wrote:

 i´ve bought a korg nano koltrol device.
 i´d like to use it with pd.
 hid seems to don´t wok.
 any ideas ?

I think, it's a midi device, so you should use the midi objects like  
[ctlin].


Ciao
--
Frank

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



--
http://www.chilemigra.cl
http://arselectronicachile.blogspot.com
http://www.myspace.com/santorcuato


___
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