Re: [Faudiostream-users] simple sequencer logic

2017-07-06 Thread Beach Dispatcher
Hi Stéphane! I have tested lf_pulsetrainpos in the same way - it is rather more stable "clock", but sometimes values are missed anyway, but rather seldom and the whole work much more stable. import ("stdfaust.lib"); t = hslider("tempo",1,0,8,0.01); process = os.lf_pulsetrainpos(t,0.5) :

Re: [Faudiostream-users] simple sequencer logic

2017-07-06 Thread Julius Smith
Since the lf_pulsetrainpos() method should also worked, I tried to make a failing test case, but instead it just worked: import("stdfaust.lib"); f = hslider("freq",440,0,1000,1); // play = button ("play"); tempo = hslider("tempo",0,0,4,0.01); play = os.lf_pulsetrainpos(tempo,0.5); dje = pm.djembe

Re: [Faudiostream-users] simple sequencer logic

2017-07-06 Thread Stéphane Letz
Probably due to too slow (or missing some values...) Web output display refreshing code. Stéphane > Le 6 juil. 2017 à 19:08, Beach Dispatcher a écrit : > > One more question, here is the simple code to check the pulsen style > mechanism in work > > import

Re: [Faudiostream-users] simple sequencer logic

2017-07-06 Thread Beach Dispatcher
One more question, here is the simple code to check the pulsen style mechanism in work import ("stdfaust.lib"); n = hslider("period",3000,0,1,1):int; incr = +(1)~_; process = (incr%n),n/2 : > :vbargraph ("check",0,5); if to run it on online compiler to web/audio- the 0/1 clock is unstable,

Re: [Faudiostream-users] control window

2017-07-06 Thread Beach Dispatcher
thank you Oliver, I will try to check all this. For Pure Data there is the same object faustgen~? 2017-07-06 18:45 GMT+03:00 Oliver Larkin : > i’m not sure about viewing the signal on the online compiler without > coding it yourself. just tried the playground

Re: [Faudiostream-users] Ann: Develop Faust programs inside the Radium music editor

2017-07-06 Thread Kjetil Matheussen
Hi all, Recently, I've fixed a few annoying things in the The FaustDev instrument in Radium. Various issues regarding widget positioning and resizing should be fixed, and the program also doesn't delete any automation anymore when recompiling. In addition to the initial announcement a year ago,

Re: [Faudiostream-users] control window

2017-07-06 Thread Oliver Larkin via Faudiostream-users
i’m not sure about viewing the signal on the online compiler without coding it yourself. just tried the playground http://faust.grame.fr/faustplayground/ and couldn’t find a scope there is a max object called faustgen~

Re: [Faudiostream-users] control window

2017-07-06 Thread Beach Dispatcher
Hi Oliver! Thank you for the answer! So if I use online compiler for now - no way to get realtime oscilloscope view of a signal or digit capturing? about Max - you mean that I should compile faust program to maxmsp external and use it in Max with needed analyzing instruments? so it will be the

Re: [Faudiostream-users] control window

2017-07-06 Thread Oliver Larkin via Faudiostream-users
For a non-Realtime solution check out the plot architecture which spits out a commandline app that print the sample values to the Console. You can then plot using matlab or octave Otherwise if you have Max you could try faust gen~ With scope~ or capture~ On Thu, 6 Jul 2017 at 17:18, Beach

[Faudiostream-users] control window

2017-07-06 Thread Beach Dispatcher
Dear all, Could you inform me about how can it be possible to get oscilloscope view of the resulting signal of compiled code? Maybe there is some library or vidget architecture file like as for faders etc? and beside oscilloscope view, I want to see the digits flow of the resulting signal (like

Re: [Faudiostream-users] simple sequencer logic

2017-07-06 Thread Beach Dispatcher
Hi Yann! Thank you very much for the advice - it works! By the way, I try to compile the following code in online compiler - all is good, but there is some crack and clicks. Is it because of the online compiler, or should I think about some signal shaping and smoothing? import