Re: [PD] Pure data controling Videolan

2009-01-14 Thread Max

hi list,

it is possible to control vlc from pd using the py external with the  
rc interface of vlc.

thomas grill made an example in two minutes which i am happy to share.

due to limitations of vlc it seems to be impossible to display video  
under os x because vlc can't open a window if it's in rc mode, but it  
works with linux.



import pyext
import sys
from socket import *

class vlc(pyext._class):
	def __init__(self,host,port):
		self.s = socket(AF_INET, SOCK_STREAM)# create a TCP socket
		self.s.connect((str(host), port)) # connect to server on the port
		
	def list_1(self,*atoms):
		self.s.send(' '.join(map(str,atoms))+\r)
		d = self.s.recv(1024)
		self._outlet(1,d.split())


vlc.pd
Description: Binary data




Am 13.01.2009 um 22:03 schrieb Hans-Christoph Steiner:



People have talked about it in the past, but I haven't seen it
working.  It should be possible using the RC (aka Remote Control)
interface in VLC.  It would be awesome to have a working example of
that.

Or you could do it in Gem or PDP...

.hc

On Jan 13, 2009, at 2:39 PM, Arnaud Tanguy wrote:


Hello,

Do you know a way to control VLC with Pure data?

It seem to work by telnet but I'm a complete newbie for that.
Somebody can help me?

Best regards.


PGP.sig
Description: Signierter Teil der Nachricht
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] new bomb ( nickname DIME )

2009-01-14 Thread ydego...@gmail.com
ola,

the time is here and the time is now!,
as someone said :
http://ningunlugar.org/they_got_a_bomb

the new bomb is called DIME :
http://www.thetruthseeker.co.uk/article.asp?ID=5648

you can join the GISS irc
to see what's happening :
http://giss.tv/chat/irc.cgi

saludos,
sevy

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] speech recognition for pd

2009-01-14 Thread Vincent Rioux
hello
it sounds really nice!
please keep inform
i might be able to help you with osc/python/pd if you need

you could also add speech synthesis... (mbrola works pretty nicely)

some remarks below

patrick a écrit :
 hi all,

 last night, i did a bridge between sphinx3 and pd. sphinx3 is an open 
 source speech recognition software.

 have a look at the demo
 http://www.vimeo.com/2814913

 i am looking for help for optimizing or even better making an external 
 for it.

 1) working on linux only for now.

 2) using shell to call a python script (py/ext is crashing when import 
 _sphinx3)
   
or make a python script which calls pd...
 3) communication between the python script and pd via open sound control 
 (mrpeach) - i like this solution, cause i can use the same script to 
 have speech recognition in blender or other osc compatible software
   
great
 4) using shell again to call sox (for converting the soundfile to raw). 
 is it possible to write a raw soundfile in pd (1 channel, signed, 16000 
 (samplerate))?
   
is it absolutely necessary for sphinx to use raw file format?
 5) dynamic patching with send pd-$0.sphinx (obj 20 20 $voicerecognition) 
 - would like to be able to connect objects together, need to learn more 
 about dynamic patching

 6) it's possible to make a custom dictionary, for now i will create one 
 for basic stuff (http://wiki.puredata.info/en/Category:vanilla)

 7) tested with two big accents : french (me) and japanese (my girlfriend)
   
did you manage to recognize french words (with a french accent ;-) ?

best
v

 pat

 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list

   


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] GEM lens camera

2009-01-14 Thread Jack
Dany was looking for a way to change the lens of the camera, it is  
done with the [perspec( message.
But he also would like to know how to change the angle of view of the  
camera, it is done with the [view( message.
++

Jack


Le 14 janv. 09 à 02:41, d...@riereta.net a écrit :

 8/
 ??

 And the message [view(
 ++







 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management - http://lists.puredata.info/ 
 listinfo/pd-list


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] developer needed for puredata on Gumstix project

2009-01-14 Thread duncan
- apologies for cross posting -

Hi,

My name is Duncan Speakman and I'm an artist based in Bristol (UK). I'm
currently working on a funded project to develop a small portable device
capable of realtime audio processing from a live input, possibly responding
to additional data such as GPS, bluetooth etc.  At present I'm thinking that
running pd on gumstix is going to be the best solution (but I'm open to
suggestions), and I'm looking for a developer to help make this happen.
Ideally you'd have experience of pd and of running linux on small/embedded
platforms. I have lots of experience of working with locative technology and
developing MAX/MSP, so you could say I can talk the talk but not really walk
the walk for this project.
This is a paid commission but I am looking for someone who can collaborate
creatively and effectively, timescale is basically now until April,
worktimes subject to  your availability. Please get in touch if you can help
(or can recommend someone), ideally based in the south west of England but
I'm open to longer distance working relationships!
If you want to see the kind of work I make please visit
http://duncanspeakman.net

thanks for reading.

regards

duncan

-- 
http://duncanspeakman.net
http://29fragiledays.blogspot.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Drawing arrays in PD

2009-01-14 Thread João Pais

Is this utility I've made some weeks ago useful for you? (needs pd-ext)


Hi everyone. I need to draw arrays with different levels of complexity  
and

precision rapidly in PD mainly for control purposes. I imagine something
like Adobe Illustrator's vector functions with capabilities of exporting  
the
result as an array of numbers which could be easily imported in PD. It's  
too

much, isn't it? Any ideas?

For the moment I'm working with a sort of polynomial interpolating
algorithm. It works, but it's not good for smooth curves and the text  
based

input is neither rapid to create the array nor to modify some part of it.

Since it would be quite useful for me, I am willing to make by myself if  
it

doesn't exists (and to share it if someone is interested, of course), but
I'll need advices of what programming language fits best for that. Keep  
in

mind that I work under OS X 10.5.5. Any clue?

Thank you
Cheers

Ignacio




--
Friedenstr. 58
10249 Berlin (Deutschland)
Tel +49 30 42020091 | Mob +49 162 6843570
jmmmp...@googlemail.com | skype: jmmmpjmmmp

array-edit.pd
Description: Binary data
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Pure data controling Videolan

2009-01-14 Thread Max

forgot to say that you have to start vlc like this:
vlc -I rc --rc-host=localhost:1234

here is a thread on the videolan forum regarding the video issue under  
os x

http://forum.videolan.org/viewtopic.php?f=2t=53876sid=f353cbd298aad77fd4a1b3407586e0f1

if anyone finds a fix post here please.

also the python code is just a working proof-of-concept and proper  
error handling should be added (if the connection drops for example).


Am 14.01.2009 um 14:49 schrieb Max:


hi list,

it is possible to control vlc from pd using the py external with the  
rc interface of vlc.

thomas grill made an example in two minutes which i am happy to share.

due to limitations of vlc it seems to be impossible to display video  
under os x because vlc can't open a window if it's in rc mode, but  
it works with linux.



vlc.pyvlc.pd


Am 13.01.2009 um 22:03 schrieb Hans-Christoph Steiner:



People have talked about it in the past, but I haven't seen it
working.  It should be possible using the RC (aka Remote Control)
interface in VLC.  It would be awesome to have a working example of
that.

Or you could do it in Gem or PDP...

.hc

On Jan 13, 2009, at 2:39 PM, Arnaud Tanguy wrote:


Hello,

Do you know a way to control VLC with Pure data?

It seem to work by telnet but I'm a complete newbie for that.
Somebody can help me?

Best regards.

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list




PGP.sig
Description: Signierter Teil der Nachricht
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] still flicker with pix_video/pix_movement

2009-01-14 Thread IOhannes m zmoelnig

marius schebella wrote:

Hi,
I am using GEM version 0.92 from dec 2008 with osx 10.5. The combination 
of pix_video and pix_movement gives me black frames every few seconds, 
sometimes several times per second.


well, maybe the image did not change, so pix_movement masks everything out?

this might happen, if Gem reads the camera faster than this provides 
images, resulting in duplicate reads of the same frame; identical images 
don't have any movement.


fmgadsr
IOhannes


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Drawing arrays in PD

2009-01-14 Thread Ignacio Viano
Thank you João. This utility is quite useful for editing arrays appearance,
but your drawing segments function is similar to mine, and I'm looking for
some hybrid text-GUI editor. Am I clear or just crazy?

Thanks anyway
Ignacio
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Drawing arrays in PD

2009-01-14 Thread João Pais
I just didn't understand what you mean exactly with the gui/text editor,  
or how it's going to be used. is it going to be controlled by gui, by  
text, or both? can you give examples?

one inconvenient of the draw function is that it only works if the whole  
array is drawn. partial editing isn't yet there.


 Thank you João. This utility is quite useful for editing arrays  
 appearance,
 but your drawing segments function is similar to mine, and I'm looking  
 for
 some hybrid text-GUI editor. Am I clear or just crazy?

 Thanks anyway
 Ignacio



-- 
Friedenstr. 58
10249 Berlin (Deutschland)
Tel +49 30 42020091 | Mob +49 162 6843570
jmmmp...@googlemail.com | skype: jmmmpjmmmp

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] [PD-announce] LAC2009: Paper deadline extended!

2009-01-14 Thread Frank Barknecht
You know the deal.

- Forwarded message from Frank Neumann beachn...@web.de -

Date: Wed, 14 Jan 2009 20:50:13 +0100
From: Frank Neumann beachn...@web.de
To: linux-audio-u...@lists.linuxaudio.org,
linux-audio-...@lists.linuxaudio.org,
linux-audio-annou...@lists.linuxaudio.org
X-Mailer: Sylpheed 2.5.0 (GTK+ 2.14.4; x86_64-pc-linux-gnu)
Subject: [LAU] LAC2009: Paper deadline extended!


This mail is to inform you that the paper submit deadline for the LAC2009
(Linux Audio Conference)(1) has been extended to January 29th, 2009.

So, if you have been shocked by the fact that the initial planned deadline
would be tomorrow, HERE is your chance to get your half-cooked paper/idea
into a good shape and submit(2) it now! :-).

(1) The LAC (Linux Audio Conference) is an annual event where developers,
users and composers from all around the world come together for 4 days
to present current developments, new compositions and other news to the
public, listen to concerts, and generally have a good time together.
The LAC2009 is taking place at the Casa della Musica in Parma, Italy,
from April 16th to 19th, 2009. The conference homepage is at
http://lac.linuxaudio.org/2009/.

(2) Paper submission information:
http://lac.linuxaudio.org/2009/call-for-papers/

Paper submission upload form:
http://lac.linuxaudio.org/2009/openconf/openconf.php

Keep 'em coming,
Frank, on behalf of the LAC2009 organization team
___
Linux-audio-user mailing list
linux-audio-u...@lists.linuxaudio.org
http://lists.linuxaudio.org/mailman/listinfo/linux-audio-user


- End forwarded message -

___
Pd-announce mailing list
pd-annou...@iem.at
http://lists.puredata.info/listinfo/pd-announce

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Openlab] London Patching Circles - 25/01/09

2009-01-14 Thread Rob Canning
Ed Kelly wrote:
 25th is good for me.
   
i am going to confirm the 25th as fixed if we are using deckspace
ie. i will be there on the 25th and can buzz people in

 I#ve been out of the loop for a bit - where are we meeting?
   
http://dek.spc.org
http://dek.spc.org/views.html

if its =12 people - otherwise we will find somewhere else
its important that people sign up on the wiki as its not a officially a 
public space and we know what to plan

http://puredata.info/community/DeckSpace

so far we only have 2 people signed up i think there is more interest 
than that...

if you dont know how to use a wiki just email me and i'll stick your 
name down

but really... ;)

rob c
 ciao,
 ed

 Lone Shark: Synchromatic: Out December 1st 2008
 http://www.pyramidtransmissions.com/store
 Also available through the iTunes store


 --- On Thu, 8/1/09, Claude Heiland-Allen claudiusmaxi...@goto10.org wrote:

   
 From: Claude Heiland-Allen claudiusmaxi...@goto10.org
 Subject: Re: [Openlab] London Patching Circles - 25/01/09
 To: openlab open...@lists.pawfal.org
 Date: Thursday, 8 January, 2009, 1:23 PM
 Chris McCormick wrote:
 
 On Sun, Jan 4, 2009 at 9:14 PM,
 
 errordevelo...@gmail.com wrote:
 
 Let's do it on Sun 25th, mayb?
 generally that weekend 23,24,25 is good,
   
 isn't it?
 
 On Mon, Jan 05, 2009 at 05:27:47PM +, Robert Munro
   
 wrote:
 
 i could make it then. bring it on!!
 
 ditto!
   
 me too -- Claude
 


   


   


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] dyn~

2009-01-14 Thread patrick
hi,

anyone having dyn~.pd_linux (32 bits)? would it be possible to send it 
to me (off list). the thing is, it compiled, but the cpu goes crazy when 
creating [dyn~].

pat

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] [PD-announce] Pd 0.42-3 released - fixed setuid and find bugs

2009-01-14 Thread Miller Puckette
Two more bug fixes...

http://crca.ucsd.edu/~msp/software.htm

or to check out source from Subversion:

svn checkout https://pure-data.svn.sourceforge.net/svnroot/pure-data/trunk/pd/

cheers
Miller


___
Pd-announce mailing list
pd-annou...@iem.at
http://lists.puredata.info/listinfo/pd-announce

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] PDa on palmTX

2009-01-14 Thread a. tonal

i installed reware on my palmTX and it runs nicely.
i have an external microphone-port on the TX which allowes me to record into 
PalmOS application.
but when i run PDa under reware i cannot use adc~.
i just get direct input to output, even without PDa running.
the Audio Mixer app doesn't seem to support a mic-input.

has anybody a solution for this?

another question: how can i emulate a right mouse click to reach the 
contextmenu for PDa object-properties on the TX? the same for shift-click to 
enter float values in a numberbox.

olli

_
http://redirect.gimas.net/?n=M0901xMMe_DE
Minimize-Me: Gestalte dein eigenes Messenger Anzeigenbild!___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] speech recognition for pd

2009-01-14 Thread Enrique Erne
hi patrick

have u seen :
Help/manuals/pd-msg/1.msg_and_patch/1.2.create_patch.pd
?

this is from pd-extended help browser. i'm not sure where you can find 
it in svn.





patrick wrote:
 hi,
 
 yes very interesting. also, i was looking at pdmtl abstractions 
 dyn.poly, but for now all i want is to be able to connect objects 
 together, for example:
 
 speaking
 number box
 connect
 oscillator
 connect
 output
 ==
 [number2]
 |
 [osc~]
 |
 [dac~]
 
 
 how to connect multiple outlet?
 
 speaking
 trig bang float anything
 connect 3
 print bang
 print float
 print anything
 ==
 [t b f a]
 |   |   |
 [print bang]
...
...
 
 
 not sure, looking foward for suggestions!
 pat
 


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] Pd, Arduino, and Multiple LED's == Installation?

2009-01-14 Thread Kyle Klipowicz
Hello Listers~

I'm working on an art gallery installation and I want to use Pd to control
some high-powered LED's via an Arduino unit.

The breakdown is this: I need to create a series of RGB LED's that will
provide accent illumination to the gallery space, and shifts from red to
blue over a course of 6 weeks. The program isn't very difficult to write.
I've already decided to link it to the system date/time so that the
installation can be powered down easily at night. What's tricky is knowing
what hardware to use and how to get it together. I am going to want between
25-100 lights at minimum, possibly more.

I've looked at a few sites and links already, especially the Arduino site.
They have some things related to DMX lights, and this is something I've seen
a bit on the list as well. I don't know if this is a good solution or if it
is overkill for what I want to do.

One piece of hardware that seems promising is the ShiftBrite (
http://www.macetech.com/blog/node/54). Does anyone know about this?

I know this might  be considered off-topic, but I'd really appreciate it if
any seasoned veterans could throw me some tips. I'll be exploring other
areas, but I know there are some honed brains skimming these emails so maybe
they can drop some science on me.

Thanks in advance,

~Kyle

-- 
-

    -
  - --
http://perhapsidid.wordpress.com
http://myspace.com/kyleklipowicz
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] dyn~

2009-01-14 Thread Enrique Erne
did you try pd-extended?

i'm planing to use dyn~ a bit more myself and hope it is working in 
pd-extended. could you confirm that?



patrick wrote:
 hi,
 
 anyone having dyn~.pd_linux (32 bits)? would it be possible to send it 
 to me (off list). the thing is, it compiled, but the cpu goes crazy when 
 creating [dyn~].
 
 pat
 
 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list
 


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] speech recognition for pd

2009-01-14 Thread patrick
thanks it's helpful!

i've updated the video on vimeo:
http://www.vimeo.com/2814913

pat




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] dyn~

2009-01-14 Thread patrick
i didn't find dyn~ in pd-extended for linux.
it's included in pd-extended for windows.


anyone have dyn~.pd_linux?
pat


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list