Best place is to use the OpenFrameworks forum.
ofxPd provides a wrapper for libpd, but does not provide the audio interface, that is handled by OF.
OF uses RtAudio in the backend I believe so, if RtAudio is compiled with Jack support, it *should* work in theory. One issue with OF is that, as it’s a more visually focused framework, the built in sound options are relatively limited, ie. device control etc.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On Jun 1, 2016, at 1:28 PM, pd-list-request@lists.iem.at wrote:
From: Alexandros Drymonitis <adrcki@gmail.com mailto:adrcki@gmail.com> Subject: [PD] ofxPd on Linux with Jack Date: June 1, 2016 at 9:55:12 AM MDT To: "pd-list@lists.iem.at mailto:pd-list@lists.iem.at" <pd-list@lists.iem.at mailto:pd-list@lists.iem.at>
I'm trying to use the ofxPd addon and even though the examples provided compile fine on my computer exchanging data between OF and Pd (I did some tests with some modified examples too), I can't find a way to use the addon with Jack. Any ideas? A search I did didn't seem to give any insight (of course someone might show up with a link with very specific instruction, but haven't found something myself). I'm on Debian Jessis XFCE with openFrameworks-0.8.4 and the respective ofxPd addon.
I also tried to find libpd's mailing list (or is it a forum?), but it seems to be down, hence I'm sending the mail here.
Thanks
On Wed, Jun 1, 2016 at 9:45 PM, Dan Wilcox danomatika@gmail.com wrote:
Best place is to use the OpenFrameworks forum.
Will do that.
ofxPd provides a wrapper for libpd, but does not provide the audio interface, that is handled by OF.
OF uses RtAudio in the backend I believe so, if RtAudio is compiled with Jack support, it *should* work in theory. One issue with OF is that, as it’s a more visually focused framework, the built in sound options are relatively limited, ie. device control etc.
Ok, I'll look into those files. Thanks for the tips..
Looks like RtAudio is not compiled with Jack support by default: https://forum.openframeworks.cc/t/openframeworks-with-linux-jack/4242/2 https://forum.openframeworks.cc/t/openframeworks-with-linux-jack/4242/2
Try adding UNIX_JACK to your project config.make PROJECT_DEFINES.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On Jun 1, 2016, at 1:48 PM, Alexandros Drymonitis adrcki@gmail.com wrote:
On Wed, Jun 1, 2016 at 9:45 PM, Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com> wrote: Best place is to use the OpenFrameworks forum. Will do that.
ofxPd provides a wrapper for libpd, but does not provide the audio interface, that is handled by OF.
OF uses RtAudio in the backend I believe so, if RtAudio is compiled with Jack support, it *should* work in theory. One issue with OF is that, as it’s a more visually focused framework, the built in sound options are relatively limited, ie. device control etc. Ok, I'll look into those files. Thanks for the tips..