ipyclam + pyqt + qtbinders !
http://vokicodder.blogspot.com/2011/09/clam-binders-ipyclam-and-pyqt.html
Some notes on today achievements with Xavi Serra (the student, no the MTG director)
for the demo of his Final Career Project, featuring combining ipyclam, pyqt,
clam qt widgets and the new QtBinder interface which extends to any CLAM
application Prototyper's facility to bind unknown interfaces and networks.
The presentation of his PFC is on Friday wish him the best luck.
I recommend compile and install ipyclam and give the example below a try.
David.
------------------
$ ipython
import ipyclam
n=ipyclam.Network(ipyclam.Clam_NetworkProxy())
n.file = n.types.MonoAudioFileReader
n.out = n.types.AudioSink
n.file.Loop = 1
n.file.SourceFile = "../NetworkEditor/example-data/jaume-voice.mp3" # or any file
n.file > n.out
n # see, the connection is between ports although we conected processings
n.backend="PortAudio" # bug: 'backend' does not work with completition
n.play()
n.pause()
n.stop()
(Continue reading)