Re: [Faudiostream-users] Faust 2: Compiling error

2016-01-10 Thread Stéphane Letz
LLVM 3.8 (not officially released…) is not yet supported. Please use LLVM 3.6 or 3.7 instead. Stéphane Le 10 janv. 2016 à 23:14, Nycholas Maia a écrit : > Hi everybody, > > I'm trying to compile Faust 2 to get the support to AU plug-in plugin > architecture. > I

Re: [Faudiostream-users] faust compilation problem

2016-01-09 Thread Stéphane Letz
Added a possible fix on GIT. Can you try again? Stéphane Le 9 janv. 2016 à 16:33, Pierre Lecomte a écrit : > Hello, > I've a little trouble to (re)install faust on my system (Linux/Ubuntu): > > What I've done: > > $ git clone git://git.code.sf.net/p/faudiostream/code

Re: [Faudiostream-users] FaustLive segfault

2015-09-11 Thread Stéphane Letz
Program received signal SIGSEGV, Segmentation fault. 0x00418daa in JA_audioManager::connect_Audio(std::string) () So crash in JA_audioManager::connect_Audio(std::string) 1) Possibly try to remote FL resources (folder named ".FaustLive-CurrentSession-2.0" on user

Re: [Faudiostream-users] sample bank program

2015-09-07 Thread Stéphane Letz
I would go for 2), but maybe you could describer first a bit more what you are trying to develop : - on which platform? - what would be the role of Faust processing into your application? - would you application need a complete UI or would it be only remotely controlled? (like with OSC..)

Re: [Faudiostream-users] OSC interface becomes unresponsive

2015-09-06 Thread Stéphane Letz
You may try to hack the "OSCSetup::start" method in "faust/src/osc/OSCSetup.cpp" and add a "SetPriority" call like: fOSCThread = new OscThread (mp, port, fErrCallback, fArg); fOSCThread ->SetPriority(80); fOSCThread->start(); recompile/restart and see if it helps. Stéphane Le 6 sept. 2015 à

[Faudiostream-users] WAC 2016 : call for submissions

2015-09-05 Thread Stéphane Letz
Here: http://webaudio.gatech.edu/node/22 Stéphane -- ___ Faudiostream-users mailing list Faudiostream-users@lists.sourceforge.net

Re: [Faudiostream-users] syntax highlighting

2015-09-01 Thread Stéphane Letz
Thanks; committed on GIT master branch. Stéphane Le 1 sept. 2015 à 13:10, Oliver Larkin a écrit : > here is a modified version that works with .lib files > > > > oli > > On 1 Sep 2015, at 09:25, Iain Gray wrote: > >> Hello, >> >> As a new

Re: [Faudiostream-users] reuse a single slider value

2015-08-26 Thread Stéphane Letz
Moving the multiplier outside of the par : gain=*(vslider([1]Gain, 0, 0, 1, 0.01)); multiplier=vslider([0]Mult, 0, 0, 1, 0.01); process=tgroup(tabs,par(i, 4,hgroup(%i,gain)*multiplier)); Stéphane Le 25 août 2015 à 19:37, Ryan Meisters r...@soniccloud.com a écrit : Hey guys, thanks for the

Re: [Faudiostream-users] How to interact with the the controls of a Faust processor compiled to Javascript ?

2015-04-08 Thread Stéphane Letz
You can use : - getPathTableXXX or getJSONXXX (like getPathTablekarplus or getJSONkarplus) methods to see the names of the path to values - then use setValue/getValue to set/get values, so something like : setValue(dsp, /0x00/Volume, 0.5) in the case of noise.dsp Stéphane Le 8 avr. 2015 à

Re: [Faudiostream-users] Faust and WebAudio API : recent impovements

2015-04-04 Thread Stéphane Letz
are missing. Here's the error: $ faust2webaudioasm noise.dsp Compiled with 'asm.js' backend cat: /usr/local/lib/faust/js/stylesheet.js: No such file or directory cat: /usr/local/lib/faust/js/jsscripts.js: No such file or directory -- Marc On Thu, 29 Jan 2015 12:14:34 +0100, Stéphane

Re: [Faudiostream-users] Faust and WebAudio API : recent impovements

2015-04-04 Thread Stéphane Letz
Le 4 avr. 2015 à 14:34, Marc Lavallée m...@hacklava.net a écrit : Bonjour Stéphane. The missing files are now installed. There's a new error, only when I use the -emcc option: $ faust2webaudioasm -emcc noise.dsp Compiled with 'emcc' aborting from js compiler due to exception:

Re: [Faudiostream-users] faustgen~ as a vst/au plugin?

2014-11-07 Thread Stéphane Letz
No plan yet… but would be a good idea for sure… Contribution welcome... Stéphane Le 7 nov. 2014 à 13:18, Oliver Larkin olilar...@googlemail.com a écrit : are there any plans to make an equivalent of faustgen~ that works as a plugin? a code editor could be achieved relatively easily by

Re: [Faudiostream-users] Trouble's compiling .dsp's

2014-09-19 Thread Stéphane Letz
GIT version ? (master branch), so that we can fix them it they still exist ? Stéphane Le 19 sept. 2014 à 18:04, Bart Brouns b...@magnetophon.nl a écrit : Hi Stéphane, I fixed the name collision. Please try again. Thanks, Bart. On Fri, 2014-09-19 at 17:37 +0300, Stéphane Letz wrote

Re: [Faudiostream-users] Broken Serial Composition Operator?

2014-08-26 Thread Stéphane LETZ
From Faust quick reference p19 Sequential Composition The sequential composition A:B (figure 3.3) expects: outputs(A) = inputs(B) (3.1) It connects each output of A to the corresponding input of B : A[i ] → [i ]B Stéphane Le 26 août 2014 à 04:48, Dolittle seedpr...@gmail.com a écrit :

Re: [Faudiostream-users] Broken Serial Composition Operator?

2014-08-26 Thread Stéphane LETZ
, Stéphane LETZ l...@grame.fr wrote: From Faust quick reference p19 Sequential Composition The sequential composition A:B (figure 3.3) expects: outputs(A) = inputs(B) (3.1) It connects each output of A to the corresponding input of B : A[i ] → [i ]B Stéphane Le 26 août 2014 à 04:48

Re: [Faudiostream-users] OS X and bug Foreign functions cannot be used

2014-07-14 Thread Stéphane Letz
Jack from macport is an old version that we do not recommend. Stéphane Le 14 juil. 2014 à 08:40, Jerry lancebo...@qwest.net a écrit : That's great to hear, and thanks, Yann. I'm eager to try Faust but it won't be for at least a few days. BTW, if I write a foreign function it will be in

Re: [Faudiostream-users] createDSPFactoryFromString()

2014-06-18 Thread Stéphane Letz
Can you report precise crash logs of the problem you've seen? Thanks. Stéphane Le 18 juin 2014 à 15:27, Victor Lazzarini victor.lazzar...@nuim.ie a écrit : Just a note to say that createDSPFactoryFromString() does not appear to be thread-safe. It might be worthing saying this in the

Re: [Faudiostream-users] createDSPFactoryFromString()

2014-06-18 Thread Stéphane Letz
Maynooth, Ireland victor dot lazzarini at nuim dot ie On 18 Jun 2014, at 15:48, Stéphane Letz l...@grame.fr wrote: Can you report precise crash logs of the problem you've seen? Thanks. Stéphane Le 18 juin 2014 à 15:27, Victor Lazzarini victor.lazzar...@nuim.ie a écrit : Just

Re: [Faudiostream-users] [Faudiostream-devel] FaustLive is released !

2014-06-03 Thread Stéphane Letz
Le 3 juin 2014 à 12:04, Albert Graef aggr...@gmail.com a écrit : Trying to build the Faust-related libraries needed for FaustLive from the current Faust2 git sources on Arch, I'm getting a few compile errors in the faustremote stuff, mostly due to missing -I's and -L's, and a missing

[Faudiostream-users] Situation for Faust DSP external MIDI control

2014-06-03 Thread Stéphane Letz
Hi all, We are now in the situation where Faust DSP can be controlled by regular User Interfaces, MIDI, OSC, accelerometers when used on phones or tablets… Concerning MIDI, the thing is that no real specification have been established, and we think time is now to collect what has already been

[Faudiostream-users] Two new items to read on Faust site

2014-05-26 Thread Stéphane Letz
Home FAUST 0.9.67 released : http://faust.grame.fr/index.php/component/content/article/7-news/80-faust0967 and Faust and the Web Audio API revisited : http://faust.grame.fr/index.php/component/content/article/7-news/79-faust-web-audio Stéphane

Re: [Faudiostream-users] faustlive binaries?

2014-05-02 Thread Stéphane Letz
For which OS? Stéphane Le 2 mai 2014 à 17:19, Victor Lazzarini victor.lazzar...@nuim.ie a écrit : From the description, it sounds similar to the Faust opcodes in Csound, a good idea. Dr Victor Lazzarini Senior Lecturer NUI Maynooth, Ireland victor dot lazzarini

Re: [Faudiostream-users] Errors executing faust2.... commands

2014-04-23 Thread Stéphane Letz
Are you on OSX? Linux ? Depending on that, you possibly need to add those lines in your .profile file (OSX) or bashXXX (don't remember the name…) on Linux C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/usr/local/include Stéphane Le 22 avr. 2014 à

Re: [Faudiostream-users] Soundfile processing

2014-04-09 Thread Stéphane Letz
Le 9 avr. 2014 à 15:36, Daniele Ghisi danielegh...@gmail.com a écrit : Hi Stéphane, sorry to bother: I have both JACK and gtk2 installed (via macports). (I didn't understand if I have to do something with homebrew). 1) Do not install JACK with macports, it is an old version. Better use

Re: [Faudiostream-users] Soundfile processing

2014-04-09 Thread Stéphane Letz
We are working on a new application called FaustLive, woking on Linux, OSX, Windows that will embed the Faust compiler and simplify all this stuff... Stay tuned! Stéphane Le 9 avr. 2014 à 16:42, Daniele Ghisi danielegh...@gmail.com a écrit : Hi Harry, I've tried with both gtk2 and gtk1.

Re: [Faudiostream-users] Soundfile processing

2014-04-09 Thread Stéphane Letz
Nope… Stéphane Le 9 avr. 2014 à 16:48, Daniele Ghisi danielegh...@gmail.com a écrit : Great news, thanks!! Do you already have a release date? d 2014-04-09 16:52 GMT+02:00 Stéphane Letz l...@grame.fr: We are working on a new application called FaustLive, woking on Linux, OSX

Re: [Faudiostream-users] linear horizontal bargraphs are broken in the Qt architecture

2013-10-11 Thread Stéphane Letz
Can you send us a screenshot of the problem? Thanks. Stéphane Le 11 oct. 2013 à 09:27, Marc Joliet mar...@gmx.de a écrit : Hi all, I recently wanted to add a (linear) hbargraph to a UI, and it looks like the result is incorrect when using a Qt based architecture: the resulting widget

Re: [Faudiostream-users] linear horizontal bargraphs are broken in the Qt architecture

2013-10-11 Thread Stéphane Letz
Problem should be solved on both master and faust2 branch (thanks Sarah !) Stéphane Le 11 oct. 2013 à 09:27, Marc Joliet mar...@gmx.de a écrit : Hi all, I recently wanted to add a (linear) hbargraph to a UI, and it looks like the result is incorrect when using a Qt based architecture: the

Re: [Faudiostream-users] compiling faust externals for libPd

2013-05-29 Thread Stéphane Letz
Hello Yann, Thanks a lot for the reply. I did go through the faust2android script, but as per my understanding it compiles the Faust objects to be used in the Android NDK natively. My existing sound engine is designed completely in libPd for Android, and hence I was looking for a

Re: [Faudiostream-users] Feedback request: FAUSTPy, a Python FAUST wrapper

2013-05-27 Thread Stéphane Letz
Le 27 mai 2013 à 00:19, Marc Joliet mar...@gmx.de a écrit : Am Sun, 26 May 2013 21:39:55 +0200 schrieb Stéphane Letz l...@grame.fr: dsp code - libfaust - LLVM IR - CFFI (??) - Python object [...] Hmmm... I'll have to research how best to do that, especially since I have no clue

Re: [Faudiostream-users] Feedback request: FAUSTPy, a Python FAUST wrapper

2013-05-27 Thread Stéphane Letz
: Am Mon, 27 May 2013 10:26:11 +0200 schrieb Stéphane Letz l...@grame.fr: Le 27 mai 2013 à 00:19, Marc Joliet mar...@gmx.de a écrit : Am Sun, 26 May 2013 21:39:55 +0200 schrieb Stéphane Letz l...@grame.fr: dsp code - libfaust - LLVM IR - CFFI (??) - Python object [...] Hmmm

Re: [Faudiostream-users] Feedback request: FAUSTPy, a Python FAUST wrapper

2013-05-27 Thread Stéphane Letz
Le 27 mai 2013 à 18:35, Marc Joliet mar...@gmx.de a écrit : Am Mon, 27 May 2013 13:00:10 +0200 schrieb Stéphane Letz l...@grame.fr: Too fast…. The code is not finished… Hold on… Right, I see you added the implementation, too :) . So far I had to add a few patches (see attachments

Re: [Faudiostream-users] Feedback request: FAUSTPy, a Python FAUST wrapper

2013-05-23 Thread Stéphane Letz
Marc Joliet Please send me the DSP source file : dattorro_notch_cut_regalia.dsp (and possibly others which crash also if this is the case) Stéphane Sure, you can download it here: https://raw.github.com/marcecj/faust_python/master/dattorro_notch_cut_regalia.dsp Thanks for your

Re: [Faudiostream-users] Regalia-Mitra filter bank in FAUST

2013-05-11 Thread Stéphane Letz
Then we know that the resulting C/C++ code can be quite large and sometimes push the C compilers to their limits… It some sense the Faust compiler does produce completely inlined code that can be quite huge. There is still a lot of work to do in the quality of this code, so that for

Re: [Faudiostream-users] Regalia-Mitra filter bank in FAUST

2013-05-10 Thread Stéphane Letz
Merged on faust2 and pushed. Stéphane Le 9 mai 2013 à 22:47, Orlarey Yann orla...@grame.fr a écrit : Hi, I pushed some modifications (master branch only for the moment) that speeds up the propagation phase. Now it is negligible, For example for rmfbd_syn.dsp we now have :

Re: [Faudiostream-users] faustgen~in Max6.1.2 on Mac Os Lion

2013-04-23 Thread Stéphane Letz
Le 23 avr. 2013 à 16:57, Olivier Baudry olivierbaudry@hotmail.fr a écrit : import(math.lib); import(maxmsp.lib); import(music.lib); import(oscillator.lib); import(reduce.lib); import(filter.lib); import(effect.lib); myFreq = vslider(freq, 440., -2000., 2000., 1.);

<    1   2   3   4   5   6