-
myo
actually, Pd cost me a job one time! a couple years ago I was interviewing for a video game tester position that was one or two days a week and sounded like a great way to fill in my schedule with some extra cash. unfortunately, since I put all my Pd, programming, and new media work on my resume, they thought I was over qualified, and that I would get bored and quit!
-
myo
I would remove those bangs after the metros. there's no real reason why you need to see them flash every 80ms, is there?
-
myo
thinkpad x61 tablet that is running ubuntu hardy. intel core2 duo 1.8ghz, 4g ram. it does very well, but the multitouch screen is not as nice as it sounded, and not worth the loss in resolution I think.
was previously using apple 12" powerbook g4 1.25ghz, 1.25g ram running debian. that did pretty well, but started to choke a bit doing some heavy realtime stuff.
-
myo
hello again
I found another useful bit of info buried in my link collection
http://www.debian-administration.org/articles/531
happy patching
-
myo
hey guys,
compiling on amd64 is still quite the trick right now. I have managed an attempt using these infos:
http://puredata.info/docs/developer/Debian/?searchterm=debian
http://www.mail-archive.com/pd-list@iem.at/msg13552.htmlbut I have not been really succesful yet..
the trouble is that many of the externals are not very 64bit friendly yet. the core pd-vanilla runs just fine though. you can find that in the package repositories.
you can install the 32bit version, but it is somewhat cumbersome, and honestly, might break some things.
install the base 32 bit libraries with:
aptitude install ia32-libs
install the pd-extended package with:
sudo dpkg -i --force-architecture pd-extended-0.XX.deb
and watch the output for errors. you will have to manually download and install the 32bit version of every library that it complains about not having, using this command:
sudo dpkg -x libfoo.deb /emul/ia32-linux
the emul directory might be different in ubuntu I'm not sure.
when you start pd, you will likely see more errors. track down the packages it complains about and manually install them as well.
the "right" way to do this is to install all of the libraries in a chroot, but that is more work that alot of people will want to put in.
if you are interested please read this:
http://alioth.debian.org/docman/view.php/30192/21/debian-amd64-howto.html#id292205if you need help with this feel free to message or email me the info is in my profile here.
-
myo
I find abstractions to be the only way to go in some patches. most of mine have names like: simple.delay, pitch.node, s.ch.send, s.panner, etc etc. you can probably guess what they do
when working with very large projects, I'm not sure I would be too happy if couldn't use abstractions with creation arguments. my 12 channel mixer with 8 stereo sends on each channel is a good example.
for organizing, I like to use this scheme:
~/pd/
---/abstractions/
---/patches/
------/hello/
---------/abstractions/
---------/hello.pdwhere the "main" abstractions folder holds things like ch.send and simple.delay; things that are simple and will probably not change. also libraries of abstractions like the montreal users group go in here (which are very awesome btw thanks!)
abstractions that are likely to change, or really obscure ones that won't be used in other patches, go in their own folders in their respective patches directory.
-
myo
hi chris,
the only way I know, is to type in the relative path when you create them, or add an absolute path in your pdsettings/pdrc file
of course, if someone has another way, I too would like to hear it =)
-
myo
hey drumanart
try lauching pd from the terminal and see if it prints out any error messages.
-
myo
hey dieter laser
you can get a much better range out of those piezos if you run them through a direct box and a nice mic pre. I've noticed very very significant increase with mine this way.
there is also these to try:
http://www.windworld.com/products/msipu.htm
slightly noisey but they are very cool; they have a much better frequency response than the buzzer type piezos.
I have also noticed that the powerbooks and macbooks make a very special kind of distorion when you overload the ADC/DAC's. you might be able to reproduce that type of sound with something like a preamp circuit kit; the kind you can find at hobby stores / websites.
-
myo
may be a silly question, but do you have all those packages installed?
to be sure you could do:
sudo apt-get update && sudo apt-get install jackd qjackctl tcl8.4 tk8.4 libflac8 libpng3 libmpeg1 libmpeg2-4 libmpeg3-1 libquicktime1 libimlib2 libmagick++9c2a
I would also try the debian testing / ubuntu gutsy package, instead of the debian stable package. the deb for stable seems to be calling for different package versions than you have in gutsy.
dpkg is also not as smart as newer tools like aptitude and synaptic. if the above does not work, I believe there is a way to add a deb file to the repo list in synaptic; somewhere in the repositories tab if I remember right. if you install from there, maybe synaptic will sort out the library versions it needs.
hope this helps
-
myo
I second the 0.40.3-extended auto-build.
I've been using that for about a month with little trouble on leopard. -
myo
check:
/usr/local/lib/pd/default.pdsettings
hans' installs
/etc/pd-extended/default.pdsettings
and
~/.pdsettings or something tooalso I just posted to the list about the libavifile thing, and hans is fixing it now. until then install the 0.39.2-rc5 version
-
myo
I can vouch for Debian testing/Lenny on PPC, I switched from Ubuntu a while ago and everything is running pretty smooth on my 12" Powerbook G4. You will be losing some of your "sexy flavor", but most things will be very familiar. For instance you can still use Synaptic for package management/dependancies.
And if you're looking to strip things down, Debian is definitly the way to go. I did a net install and compiled a realtime kernel, and now it's running crazy fast.
As for Hans' Debian/Ubuntu build, as far as I know it should be compatable with other distro's, as long as it doesn't put something in a funky place that that distro is not familiar with.
-
myo
also, you can use this patch if you want to change to length of your loop without resizing the table. here I set the table to 10 seconds. the [threshold~] object bangs at the start of the [phasor~] cycle, and later on the phasor is being pushed forward 1 sample with [+~ 1], so you're always writing to the table right behind the reading. it's also sending the output back into the [tabwrite~] at 99% feedback, so you can layer things over time, or, turn the loop time down for psychotic delay! = D
-
myo
hey tcihan
RPM files are redhat linux packages, and most definitly will not work on OS X.
however, the library in question is included in (yes, you guessed it) Hans' pd-extended installer (http://at.or.at/hans/pd/installers.html).
-
myo
bumping this thread because I'm getting the same problem.
any solutions yet?