hi, i'm new using pd, and i haven't found the way to use microphone, maybe is a configuration issue. but if you also can tell me what kind of objet i have to use, i'll thank.
-
Microphone audio signal
-
[adc~] is your friend for input and [dac~] for output. Latency/buffer settings/number of channels can be set in the Audio Settings main menu.
|] [] |.| ][|-| -- http://soundcloud.com/domxh
-
thanks a lot domein.
I´m really new on this, I try to make a [delay~], and [rev1~], but I can't get nothing.
I connect the cable from [adc~] to [delay~], or [rev1~], but I can't heard the delay and reverb effect; only the [adc~].
in [rev1~], I can't heard nothing.again thanks
-
I don't know the [rev1~] object so nothing on that. To create a delay i normally use
[adc~]
|
[delwrite~ myDel 20000]together with :
[number\
|
[sig~]
|
[vd~ myDel]
|
[dac~]Note that the number in the [delwrite~] is the number of milliseconds you want the delaybuffer to be. The numberbox is the delaytime. This way it's also easy to setup delay feedback. Just reroute the [vd~] output back to the [delwrite~], like this:
[vd~ myDel]
|
| attach a feedback amount slider here going from 0 to 1
| |
[*~]
|
[delwrite~ myDel 20000]Of course this [delwrite~] object is the very same as the one on top, so your cable will flow back up again in your patch.
|] [] |.| ][|-| -- http://soundcloud.com/domxh
-
thank, but [delwrite~ myDel ...] doesn't have an output, maybe i didn't understand you
this is what i do[adc~]
|
[delwrite~ myDel 2000]and after i send the same [adc~] output to [vd~ myDel]
[number]
|
[sig~]
|
[vd~ myDel 2000]
|
[dac~]when you say together with, how do you do it?
because i've trying a lot of combinations but doesn't work anyonegreetings
-
I imagine you're just hearing the delayed version and thinking it's not working. Try mixing in some of the direct signal too in order to hear the effect.
[adc~] [number]
|\_______________________ |
| \ [sig~]
[delwrite~ mydelay 2000] | |
| [vd~ mydelay]
\ /
[+~ ]
|
[dac~]Use the Source.
-
thanks a lot, i imagine that has to be other effects like this, maybe a flanger, an ecoes, chorus, etc.
but all have to be like this:
[adc~] [number]
|\__________________________ |
| \ [sig~]
[delwrite~ myeffect .... ] | | |
| [vd~ myeffect]
\ /
[+~ ]
|
[dac~]thanks again
-
i love the use of underscores for ascii pd diagrams!