Re: [PD] [SOLVED] check mail with pd ?

2014-02-11 Thread Fero Kiraly
Hi all,

here i've found a great manual to build pyext:
http://puredata.hurleur.com/viewtopic.php?pid=37639#p37639

in attachement is example og my [pyext gmail.box] object, which can check
and count emails with given 'subject'

fero

try:
	import pyext
except:
	print ERROR: This script must be loaded by the PD pyext external
	sys.exit()

import imaplib
import email




mail = ''
user = 'user'
passw = 'pass'
subject = ''
uidsList = ''
data = ''

class box(pyext._class):


# number of inlets and outlets
	_inlets=1
	_outlets=2
  


# constructor
	def __init__(self,*args):
		if len(args) == 2: 
			global user, passw
			user = args[0]
			passw = %s % args[1]


 	def subject_1(self, *args):
		global subject
		subject =  .join(str(e) for e in args)
		print Subject changed to ',subject,'
		#print args

def login_1(self, *args):
		global mail, user, passw
		if len(args) == 2: 
			user = args[0]
			passw = %s % args[1]

		print Logging to gmail as, user
		mail = imaplib.IMAP4_SSL('imap.gmail.com')
		mail.login( user, passw)
		mail.list()
		mail.select(inbox) # connect to inbox.

	def logout_1(self):
		print Logging out from gmail...
		global mail
		mail.close()
		mail.logout() 
  
	def check_1(self):
		global mail, subject, uidsList, data
		print 
		print Checking mail for SUBJECT , subject
		tmp =  '(HEADER Subject %s)' % subject
		result, data = mail.uid('search', None, tmp) # search and return uids instead
		#print data
		str = ''.join(data)
if (len(str)0):
	uidsList = str.split(' ')
			#print mylist
			size = len(uidsList)
		else:
			size = 0
		
		if(size  0 ):
			latest_email_uid = data[0].split()[-1]
			result, data = mail.uid('fetch', latest_email_uid, '(RFC822)')
			raw_email = data[0][1] # here's the body, which is raw text of the whole email
		# including headers and alternate payloads
			email_message = email.message_from_string(raw_email)
			#print email.utils.parseaddr(email_message['From'])  
			self._outlet(2,email.utils.parseaddr(email_message['From']))
			self._outlet(2,uidsList)
		#else:
			#print No emails ;(

		print Found , size, emails.
		self._outlet(1,float(size))
		
		

	def delete_1(self,argv):
		global mail
		print Deleting mail , argv
		mail.uid('STORE', argv, '+FLAGS', '\\Deleted')
		mail.expunge()

	def deleteall_1(self):
		global mail, subject, uidsList
		print Deleting all mail with subject ',subject ,'
		for n in uidsList:
			mail.uid('STORE', n, '+FLAGS', '\\Deleted')
		mail.expunge()

	def list_1(self):
		global uidsList
		print uidsList
		
		

#N canvas 591 94 698 581 10;
#X declare -lib py;
#X symbolatom 91 204 40 0 0 0 - - -;
#X obj 91 183 zexy/list2symbol;
#X obj 533 -5 import py;
#X msg 139 69 check;
#X msg 30 12 logout;
#X msg 142 120 delete 16437;
#X symbolatom 204 183 40 0 0 0 - - -;
#X text 89 222 uuids of emails;
#X text 338 198 email adress of newest;
#X msg 150 89 list;
#X obj 24 152 pyext gmail.box;
#X obj 203 161 zexy/list2symbol;
#X msg 13 98 deleteall;
#X floatatom 33 223 5 0 0 0 - - -;
#X text 222 7 1.fill your login data;
#X text 266 37 2.fill with some subject string of your emails;
#X text 260 65 3.press;
#X text 29 243 num of emails with given subject;
#X msg 113 10 login user pass;
#X msg 126 38 subject some subject;
#X connect 1 0 0 0;
#X connect 3 0 10 1;
#X connect 4 0 10 1;
#X connect 5 0 10 1;
#X connect 9 0 10 1;
#X connect 10 0 13 0;
#X connect 10 1 1 0;
#X connect 10 2 11 0;
#X connect 11 0 6 0;
#X connect 12 0 10 1;
#X connect 18 0 10 1;
#X connect 19 0 10 1;
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [PD - 2] check mail with pd ?

2014-02-09 Thread Fero Kiraly
)
On Feb 10, 2014 12:34 AM, Fero Kiraly fero.kir...@gmail.com wrote:

 yes, i tried many combinations of sending / routing message.. everything
works besides getting bang from that..

 i also trided a simple counter which works but i cant get no bang trigger
from any boxes...

 i have only clue to recompile pyext... because i use the precompiled x64
version from g~ 's site.

 it is working for you?

 On Feb 10, 2014 12:09 AM, Martin Peach martin.pe...@sympatico.ca
wrote:

 Did you try

 [pyext gmail.box]
 |
 [t b f]
 | |
 [bng] [nbx\

 ?

 Martin


 On 2014-02-09 17:19, Fero Kiraly wrote:

 I think I have found an interesting theme about strings. ;)

 but the content of email dont really interest me. I actually need to get
 a bang when an mail with some subject is found,
 my pyext extension can find the emails BUt it wont send a bang
 (maybe bug?)

 look attached.
 thanks for any ideas

 fero


 ___
 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] check mail with pd ?

2014-02-08 Thread Fero Kiraly
thanks frieds for direction.

I did a patch . with pyext. and it works !

it does what i want:

- check mail box with given subject
- count mails with given subject

BUT

I cant have a trigger (bang) from that. it i strange. Even if my pyext
object fills nbx with numbers, it won't give a bang. I think it is a bug.

my situation is:

[nbx] - with changing number of mails from pyext object (works ok)
|
|
bang - BUT this bang never works. It is bug. or ?

[archinux, pdextended 43.5]




-- 
Fero Kiraly
pianist, musician, teacher
www.ferokiraly.com
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] check mail with pd ?

2014-02-05 Thread Fero Kiraly
is it possibile ?

thanks.

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


[PD] gridflow archlinux

2013-11-26 Thread Fero Kiraly
hallo,
cant compile. any suggestions ?
thanks

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


Re: [PD] gridflow archlinux

2013-11-26 Thread Fero Kiraly
[paum@bookes gridflow-9.13]$ ./configure
./configure:25:in `main': Use RbConfig instead of obsolete and deprecated
Config.
./configure:26:in `main': uninitialized constant CONFIG (NameError)


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


Re: [PD] [PD-announce] pd 0.45-0 released

2013-08-24 Thread Fero Kiraly
thank you Miller !

for archers updated PKGBUILD in AUR. simply run:
yaourt -S pd-vanilla

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


[PD] MIDI port

2013-08-16 Thread Fero Kiraly
hi guys,

how to distribute MIDI msgs to MIDI ports ?

I tried [midiout] but what are the raw data?

thanks

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


Re: [PD] MIDI port

2013-08-16 Thread Fero Kiraly
Yes,I use [noteout] but it accepts only MIDI channel # not MIDI port #. How
to achieve this?
On Aug 16, 2013 11:20 AM, Ed Kelly morph_2...@yahoo.co.uk wrote:

 Hi,

 You're probably better off using [ctlout], [noteout], [bendout] for
 specific types of MIDI data.

 Cheers,
 Ed

 Ninja Jamm - a revolutionary new music remix app from Ninja Tune and
 Seeper, for iPhone and iPad
 http://www.ninjajamm.com/


 Gemnotes-0.2: Live music notation for Pure Data, now with dynamics!
 http://sharktracks.co.uk/


 
  From: Fero Kiraly fero.kir...@gmail.com
 To: pdlist pd-list@iem.at
 Sent: Friday, 16 August 2013, 10:10
 Subject: [PD] MIDI port
 
 
 
 hi guys,
 
 
 how to distribute MIDI msgs to MIDI ports ?
 
 
 I tried [midiout] but what are the raw data?
 
 
 
 thanks
 
 
 fero
 ___
 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] GEM question

2013-07-21 Thread Fero Kiraly
hi friends,

can I effectize whole GEM output at once?

I mean like data flow in audio processing.

for example: make 3 squares and then use on whole GEM screen [pix_scanline]
box.
 I am not sure if I've explained it well..

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


[PD] weird USB device

2013-07-17 Thread Fero Kiraly
Hi friends,

today I get a USB ROLL-Up Drum Kit
http://the-gadgeteer.com/2007/08/08/dream_cheeky_usb_drum_kit/

I have an idea to use it as trigger with pd usig [hid] object.
It does not works.
any ideas ?
thanks

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


Re: [PD] pd color presets

2013-06-17 Thread Fero Kiraly
Jonathan, your preferencies dialog look nice !
Thanks for that.
When it will be ready for downlod  use ?

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


[PD] Xth sense on archlinux ?

2013-05-07 Thread Fero Kiraly
Hallo list,

Was anybody successful to run Xth sense software (based on pd) on archlinux
?

pdx 0.43.4

Where I see problems is th 64 bit incompatibility with the xth sense libs,
which are precompiled:

pd-externals/xth-sense-lib/line3.pd_linux:
/home/paum/pd-externals/xth-sense-lib/line3.pd_linux: wrong ELF class:
ELFCLASS32

and TCL errors like this:

(Tcl) INVALID COMMAND NAME: invalid command name .x7f4e941406b0.c
while executing
.x7f4e941406b0.c create image 901 776 -image 7f4e94924050PHOTOIMAGE -tags
7f4e94924050PHOTO
(uplevel body line 929)
invoked from within
uplevel #0 $cmds_from_pd

thanks for reply

-- 
Fero Kiraly
www.ferokiraly.com
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] BUG more than 2 output/input chanells - segfaults

2013-04-11 Thread Fero Kiraly
Hi friends,

Here pd-extended 0.43.4 in archlinux. When I try to set more channels than
2 it segfaults.

it is working to you ?
its problem on my side ?

thanks.

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


Re: [PD] BUG more than 2 output/input chanells - segfaults

2013-04-11 Thread Fero Kiraly
iohannes thanks for helping.
yes, I am running JACK.

when i ran:

pdextended -channels 4

everything is okay, but when I try to change num of channles from the pd
GUI, it segfault then.

debug:

[paum@bookes ~]$  gdb --args pdextended   -nrt -channels 4
GNU gdb (GDB) 7.5.1
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-unknown-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/pdextended...(no debugging symbols
found)...done.
(gdb) run
Starting program: /usr/bin/pdextended -nrt -channels 4
warning: no loadable sections found in added symbol-file system-supplied
DSO at 0x77ffa000
warning: Could not load shared library symbols for linux-vdso.so.1.
Do you need set solib-search-path or set sysroot?
[Thread debugging using libthread_db enabled]
Using host libthread_db library /usr/lib/libthread_db.so.1.
[New Thread 0x77fba700 (LWP 2249)]
[New Thread 0x77f39700 (LWP 2250)]
[New Thread 0x77eb8700 (LWP 2251)]
[New Thread 0x753d6700 (LWP 2252)]
[Thread 0x77eb8700 (LWP 2251) exited]
[Thread 0x77f39700 (LWP 2250) exited]
[Thread 0x77fba700 (LWP 2249) exited]
[New Thread 0x77fba700 (LWP 2253)]
[New Thread 0x77f39700 (LWP 2254)]
[New Thread 0x77eb8700 (LWP 2255)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x77eb8700 (LWP 2255)]
0x004685f5 in ?? ()
(gdb) bt
#0  0x004685f5 in ?? ()
#1  0x76f83cac in ?? () from /usr/lib/libjack.so.0
#2  0x76f83bb4 in ?? () from /usr/lib/libjack.so.0
#3  0x76f81aab in ?? () from /usr/lib/libjack.so.0
#4  0x76fa0ebc in ?? () from /usr/lib/libjack.so.0
#5  0x778c8dd2 in start_thread () from /usr/lib/libpthread.so.0
#6  0x76ca3ced in clone () from /usr/lib/libc.so.6
(gdb)

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


Re: [PD] make jack connections from pd ?

2013-03-27 Thread Fero Kiraly
now it works. I dont know about /usr/include/m_pd.h so I have copied this
header file from somewhere to the build dir - but when I delete it, then it
gets compile...
thank you,

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


[PD] make jack connections from pd ?

2013-03-26 Thread Fero Kiraly
It is possibile ?

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


Re: [PD] make jack connections from pd ?

2013-03-26 Thread Fero Kiraly
thanks, jackx seems good.

but problem to compile (archlinux):

make
cc -I/usr/include/pd -DPD -DVERSION='0.1' -fPIC -Wall -W -g -O6
-funroll-loops -fomit-frame-pointer -o jack-connect.o -c jack-connect.c
In file included from jack-connect.c:21:0:
m_pd.h:5:0: error: unterminated #ifndef
In file included from jack-connect.c:23:0:
/usr/include/unistd.h:255:1: error: expected ‘;’, ‘,’ or ‘)’ before
‘typedef’
make: *** [jack-connect.o] Error 1





2013/3/26 michael noble loop...@gmail.com

 On Tue, Mar 26, 2013 at 9:41 PM, Fero Kiraly fero.kir...@gmail.comwrote:

 It is possibile ?

 fk.


 This thread should be helpful:

 http://comments.gmane.org/gmane.comp.multimedia.puredata.general/87125

 I've used the jackx library suggested by Hans and it works well.




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] - get label from canvas ?

2013-03-22 Thread Fero Kiraly
Hallo list,

it is possibile to get label from canvas ?



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


Re: [PD] [GEM] pix_write numbering

2013-03-20 Thread Fero Kiraly
Thanks IOhannes, good to know.


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


[PD] [GEM] pix_write numbering

2013-03-19 Thread Fero Kiraly
Hi all,

why is pix_write numbering files like this ? :
0
1
2
...
00253
...


and pix_multiimage is supposed to read files with 'clear' numbering like
this:
0
1
2
..
256


in this situation is a little bit complicated to write and read the shots..
I solve situation with renaming file using [ggee/shell].

I think, it will be clearer to use one type of numbering.
Or I am am wrong ?

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


[PD] more output channels problem

2013-03-14 Thread Fero Kiraly
Hi friends,

I cant set up more than  2 audio channels outputs.
Inputs are working correctly (I use 4 with no problems)

When I'am trying it hangs with segfault.

pd-extended 0.43-4
archlinux
jack
presonus 1818VSL
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Archlinux packages (was: enhance...)

2013-02-09 Thread Fero Kiraly
honestly I dont know where could be problem with compiling disis wiimote,
on my system it builds. I just tried example disis_wiimote-help.pd
and the object is not available. In console are errors:


/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
cwiid_toggle_passthrough_mode
 disis_wiimote
... couldn't create
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
cwiid_toggle_passthrough_mode
 disis_wiimote 00:19:1D:BE:6A:66
... couldn't create
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
cwiid_toggle_passthrough_mode
 disis_wiimote
... couldn't create
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
/usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
cwiid_toggle_passthrough_mode
 disis_wiimote 00:19:1D:BE:6A:66
... couldn't create


???

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


[PD] gimbal lock solution?

2013-02-09 Thread Fero Kiraly
Iam trying to rotate GEM object with my android phone, sending from acc
sensor througth OSC

Gem object rotateXYZ is not the solution for that, maybe because of gimbal
lock effect...

Did anybody similar working patch in pd ? Or can somebody hel me ?
many thanks.

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


Re: [PD] Archlinux packages (was: enhance...)

2013-02-09 Thread Fero Kiraly
maybe should be packaged as cwid-pd-l2ork.
I have no time now.
fk.


2013/2/9 michael noble loop...@gmail.com

 On Sat, Feb 9, 2013 at 9:02 PM, Fero Kiraly fero.kir...@gmail.com wrote:


 honestly I dont know where could be problem with compiling disis wiimote,
 on my system it builds. I just tried example disis_wiimote-help.pd
 and the object is not available. In console are errors:


 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
 cwiid_toggle_passthrough_mode
  disis_wiimote
 ... couldn't create
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
 cwiid_toggle_passthrough_mode
  disis_wiimote 00:19:1D:BE:6A:66
 ... couldn't create
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
 cwiid_toggle_passthrough_mode
  disis_wiimote
 ... couldn't create
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux:
 /usr/lib/pd-l2ork/extra/disis_wiimote.pd_linux: undefined symbol:
 cwiid_toggle_passthrough_mode
  disis_wiimote 00:19:1D:BE:6A:66
 ... couldn't create


 ???

 fk.



 On the l2ork website it states that there is a specific build of cwiid
 needed that is downloadable from the site. Ivica mentioned something about
 this in an earlier email as well, so I suspect it is the cause of the
 issue.




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] gimbal lock solution?

2013-02-09 Thread Fero Kiraly
I have 3 axis accelerometer and 3 axis orientation sensor in my device.
So i can get 0 - 360 deg on X, Y and Z.


When I draw in GEM a rectangle, I am able to rotate it with each of 3 axes,
but only separately. When I try it  with all three axes together
it has strange movements, so I guess it has something with gimbal lock.
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] gimbal lock solution?

2013-02-09 Thread Fero Kiraly
Roman, thank you, that is exactly what I mean.

Google said to me that it has something with:

kalman or complementary filter,
gimbal lock,
quaternions
arithmetic with matrixes ( there I can use iemmatrix library)


my input data are:
accX, accY, accZ, pitch yaw, roll (from HTC desire)

how to get this together ?



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


Re: [PD] Archlinux packages (was: enhance...)

2013-02-08 Thread Fero Kiraly
nice ;)

we are on the way..
I think  am am able to do the rest..

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


Re: [PD] Archlinux packages (was: enhance...)

2013-02-08 Thread Fero Kiraly
ok. I am preparing the new packages for pd, pdx, pdl and I met some errors.
I have removed pdsend  pdreceive also with man pages from pdx.

When installing pd vanilla I ve encounter conflicting files:
puredata: /usr/bin/pd-gui.tcl exists in filesystem
puredata: /usr/include/m_pd.h exists in filesystem
puredata: /usr/include/pa_jack.h exists in filesystem
puredata: /usr/include/pa_linux_alsa.h exists in filesystem
puredata: /usr/include/portaudio.h exists in filesystem
puredata: /usr/lib/libportaudio.a exists in filesystem
puredata: /usr/lib/libportaudio.so exists in filesystem
puredata: /usr/lib/libportaudio.so.2 exists in filesystem
puredata: /usr/lib/libportaudio.so.2.0.0 exists in filesystem

what with them ?
thanks for help.


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


Re: [PD] Archlinux packages (was: enhance...)

2013-02-08 Thread Fero Kiraly
ok. I get working pd-vanilla, pdx, pd-l2ork on one archlinux system.

All in /usr/lib/

https://aur.archlinux.org/packages/pd-vanilla/   - vanilla version (cannot
rename to puredata, because on official repos is package with the same name)
https://aur.archlinux.org/packages/pd-extended/ - binary is named
'pdextended'  I think maybe it could be pdx ?
https://aur.archlinux.org/packages/pd-l2ork/
https://aur.archlinux.org/packages/puredata-utils/ - pdsend, pdreceive

what is missing is 'cyclone', it should be installed separately, but I dont
have energy for that.

install all with:

yaourt -S pd-vanilla pd-extended pd-l2ork puredata-utils

You can check for errors.

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


Re: [PD] enhance pd-extended with pd-l2ork featues ?

2013-02-06 Thread Fero Kiraly
I just now updated archlinux packages.
pd-l2ork now installs to /usr/local... so that prevent collision to pd-ext.

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


Re: [PD] directory hierarchy solution ?

2013-02-05 Thread Fero Kiraly
of course, I dont want to invent something new.

I am only trying to improve archlinux packages.

previously I successfully finished pd-extended and pd-l2ork build scripts
accessed via aur..

now my aim is to repair the situation that only one pd distro can
installed..
so I am learning from you and from debian...

Still I am not sure how to divide that packages into pd-utils (pdsend, pd
receive) and other stuff...

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


Re: [PD] enhance pd-extended with pd-l2ork featues ?

2013-02-05 Thread Fero Kiraly
if you are using arch linux, write to console

yaourt -S pd-l2ork

it will do all job for you ;)
fk.
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] directory hierarchy solution ?

2013-02-04 Thread Fero Kiraly
Dear friends,

imagine:

#1   I want to have installed pd-vannilla + gem extenstion to it.
#2   next I want to install pd-extended (and gem is included)
#3   and finally sometimes i want to use pd-l2ork ( gem is again
installed..)

so I have 3x gem... it is posibile to do something with folder hierarchy ?

my idea on linux:

/usr/lib/pd/vanilla
/usr/lib/pd/pd-extended
/usr/lib/pd/pd-l2ork

/usr/lib/pd/externals (all exterals goes here..)


. so if I install some external (i.e. Gem) it installs to the
/usr/lib/pd/externals folder and every of three 'distribution'
of pd can use it ...

or i am wrong ?

cheers.

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


Re: [PD] [PD-announce] Pd-extended 0.43.4 released!

2013-01-30 Thread Fero Kiraly
thank you very much !
good work.
fk
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] GEM magick error ?

2013-01-30 Thread Fero Kiraly
Sometimes pd-extended hangs, with message in console:

Magick: Memory allocation failed `Cannot allocate memory' @
fatal/cache.c/AcquirePixelCacheNexus/270.
Segmentation fault (core dumped)
?

archlinux 64, Tcl/tk 8.6



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


Re: [PD] GEM magick error ?

2013-01-30 Thread Fero Kiraly
... it is when opening [pix_image] help patch

and now it throws:

pdsend errorname: error writing sock1920790: broken pipe
pdsend errorname: error writing sock1920790: broken pipe

(yes, two times)

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-28 Thread Fero Kiraly
when I run this command:

git clone git://github.com/pd-l2ork/pd.git

it is clonning... but l2ork_addons/spectdelay/spectdelay~ is MISSING !
(I totally dont understand how it is possibile)

can anybody try ? I dont know much about git, maybe I am doing somthing
wrong.

PKGBUILD for pd-l2ork is compleded and working. Only spectdelay~ is missing.
thank for help.




2013/1/28 Ivica Bukvic i...@vt.edu

 Don't know what to tell you other than it works here and that is not much
 help. spectdelay~ folder is inside l2ork_addons/spectdelay/
 On Jan 27, 2013 7:20 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 ok. I am doing something wrong,
 i can see this folder here
 https://github.com/pd-l2ork/pd/tree/master/l2ork_addons/spectdelay

 but when downloadig using this commad:
 git clone git://github.com/pd-l2ork/pd.git

 i dont have folder spectdelay~..
 everything else seems be dowloaded, only this folder is missing...

 I dont know what is wrong.




 2013/1/28 Ivica Bukvic i...@vt.edu

 It is relative, when you look previous calls, you will notice you are
 already in the l2ork_addons/ folder at that point, so check inside that
 folder.
 On Jan 27, 2013 6:18 PM, Fero Kiraly fero.kir...@gmail.com wrote:



 in tar_em_up.sh you have:
 cd ../spectdelay/spectdelay~
 ./linux-install.sh


 but there is no spectdelay/spectdelay~ folder ???


 2013/1/27 Ivica Bukvic i...@vt.edu

 Are you sure? spectdelay builds here perfectly fine. Did you try/copy
 l2ork build script?
  On Jan 27, 2013 5:32 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 i added this:

 disis_netreceive-help.pd
 disis_netreceive.pd_linux
 disis_netsend-help.pd
 disis_netsend.pd_linux
 disis_phasor~-help.pd
 disis_phasor~.pd_linux
 disis_wiimote-help.pd
 disis_wiimote.pd_linux
 K12
 patch_name-help.pd
 patch_name.pd_linux

 spectdelay cant build. missing cd ../spectdelay/spectdelay~
  ./linux-install.sh


 2013/1/27 Ivica Bukvic i...@vt.edu

 Compare it to l2ork build script l2ork_addons/tar_em_up.sh. You are
 missing a number of externals, plus k12.
 On Jan 27, 2013 4:39 PM, Fero Kiraly fero.kir...@gmail.com
 wrote:

 ivica, thank for applying my patch.
 now everything works.

 I am not sure if ot is completed . this is my
 /usr/lib/pd-lork/extra/ :

 adaptive
 arraysize
 bassemu~
 boids
 bonk~
 bsaylor
 choice
 complex-mod~-help.pd
 complex-mod~.pd
 comport
 controctopus
 creb
 cxc
 cyclone
 earplug~
 ekext
 expr~
 expr~.pd_linux
 expr.pd_linux
 ext13
 fexpr~.pd_linux
 fiddle~
 flatgui
 freeverb~
 Gem
 gem2pdp-help.pd
 gem2pdp.pd_linux
 gem2pdp-README.txt
 ggee
 hcs
 hexloader
 hid
 hilbert~-help.pd
 hilbert~.pd
 iem16
 iem_adaptfilt
 iem_ambi
 iem_bin_ambi
 iem_delay
 iemgui
 iemguts
 iemlib
 iemmatrix
 iem_roomsim
 iem_spec2
 iem_tab
 iemxmlrpc
 jasch_lib
 jmmmp
 la-kitchen
 libdir
 list-abs
 loop~
 lrshift~
 Makefile.am
 makefile.subdir
 mapping
 markex
 maxlib
 memento
 memento-p
 mjlib
 moocow
 moonlib
 motex
 mrpeach
 nsend
 oscx
 output~-help.pd
 output~.pd
 pan
 parazit-help.pd
 parazit.pd
 pd~
 pdcontainer
 pddp
 pdogg
 pdp
 pdp2gem-help.pd
 pdp2gem.pd_linux
 pd-wavelet
 pique
 pix_2pdp-help.pd
 pix_2pdp.pd_linux
 pixeltango
 plugin~
 pmpd
 purepd
 README.txt
 rev1-final.pd
 rev1~-help.pd
 rev1~.pd
 rev1-stage.pd
 rev2~-help.pd
 rev2~.pd
 rev3~-help.pd
 rev3~.pd
 rradical
 rtc
 sfruit
 sigmund~
 sigpack
 smlib
 stdout
 timestretch
 tof
 unauthorized
 vanilla
 vbap
 windowing
 zexy
 zexy.pd


 is something missing there ? I think yes  K12 or ?

 fk.


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




 --
 Fero Kiraly
 www.cluster-ensemble.com




 --
 Fero Kiraly
 www.cluster-ensemble.com




 --
 Fero Kiraly
 www.cluster-ensemble.com




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-28 Thread Fero Kiraly
thats the thing !

I dont have folders with ~

What should I do ?

-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-28 Thread Fero Kiraly
oh. holy shit.
they are there ...how I could miss that..

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


[PD] PKGBUILD for pd-l2ork is out.

2013-01-28 Thread Fero Kiraly
With all your help it is done.
https://aur.archlinux.org/packages/pd-l2ork/

install on archlinux witch command:

yaourt -S pd-l2ork

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
This patch should be good for all versions of tk/tcl. But should be tested,
I have only 8.6.

yes, I have to run aclocal in gem2pdp, otherwise it wont build.

[paum@bookes externals]$ make gem2pdp
cd /home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/gem2pdp  autoconf
configure.ac:44: error: possibly undefined macro: AM_SANITY_CHECK
  If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.
configure.ac:46: error: possibly undefined macro: AM_MAINTAINER_MODE
configure.ac:47: error: possibly undefined macro: AM_WITH_DMALLOC
make: ***
[/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/gem2pdp/configure] Error
1

Do you see ? there is:
cd /gem2pdp  autoconf.
Shouldn't it  be:
cd gem2pdp  aclocal  autoconf ?

but running aclocal separately solves this problem as I have mentioned...

its pity that I cant have in system pd-l2ork and pd-extended together,
anyway I am trying to resolve putting puradata vanilla  pd-extended to
live together. I know that on debian it is posiibile, so maybe there is
some solution for pd-l2ork ?

fk.

 **

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
thanks Hans.

yes, I think it is possibile to do it in Arch, and I will try. I am not
programmer, so it takes me a long time, but i want to finish that..
My aim is to make available on Arch all 3 packages (vanilla, extended,
lork) and give them space to live together

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
ivica, thank for applying my patch.
now everything works.

I am not sure if ot is completed . this is my /usr/lib/pd-lork/extra/ :

adaptive
arraysize
bassemu~
boids
bonk~
bsaylor
choice
complex-mod~-help.pd
complex-mod~.pd
comport
controctopus
creb
cxc
cyclone
earplug~
ekext
expr~
expr~.pd_linux
expr.pd_linux
ext13
fexpr~.pd_linux
fiddle~
flatgui
freeverb~
Gem
gem2pdp-help.pd
gem2pdp.pd_linux
gem2pdp-README.txt
ggee
hcs
hexloader
hid
hilbert~-help.pd
hilbert~.pd
iem16
iem_adaptfilt
iem_ambi
iem_bin_ambi
iem_delay
iemgui
iemguts
iemlib
iemmatrix
iem_roomsim
iem_spec2
iem_tab
iemxmlrpc
jasch_lib
jmmmp
la-kitchen
libdir
list-abs
loop~
lrshift~
Makefile.am
makefile.subdir
mapping
markex
maxlib
memento
memento-p
mjlib
moocow
moonlib
motex
mrpeach
nsend
oscx
output~-help.pd
output~.pd
pan
parazit-help.pd
parazit.pd
pd~
pdcontainer
pddp
pdogg
pdp
pdp2gem-help.pd
pdp2gem.pd_linux
pd-wavelet
pique
pix_2pdp-help.pd
pix_2pdp.pd_linux
pixeltango
plugin~
pmpd
purepd
README.txt
rev1-final.pd
rev1~-help.pd
rev1~.pd
rev1-stage.pd
rev2~-help.pd
rev2~.pd
rev3~-help.pd
rev3~.pd
rradical
rtc
sfruit
sigmund~
sigpack
smlib
stdout
timestretch
tof
unauthorized
vanilla
vbap
windowing
zexy
zexy.pd


is something missing there ? I think yes  K12 or ?

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
i added this:

disis_netreceive-help.pd
disis_netreceive.pd_linux
disis_netsend-help.pd
disis_netsend.pd_linux
disis_phasor~-help.pd
disis_phasor~.pd_linux
disis_wiimote-help.pd
disis_wiimote.pd_linux
K12
patch_name-help.pd
patch_name.pd_linux

spectdelay cant build. missing cd ../spectdelay/spectdelay~
./linux-install.sh


2013/1/27 Ivica Bukvic i...@vt.edu

 Compare it to l2ork build script l2ork_addons/tar_em_up.sh. You are
 missing a number of externals, plus k12.
 On Jan 27, 2013 4:39 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 ivica, thank for applying my patch.
 now everything works.

 I am not sure if ot is completed . this is my /usr/lib/pd-lork/extra/ :

 adaptive
 arraysize
 bassemu~
 boids
 bonk~
 bsaylor
 choice
 complex-mod~-help.pd
 complex-mod~.pd
 comport
 controctopus
 creb
 cxc
 cyclone
 earplug~
 ekext
 expr~
 expr~.pd_linux
 expr.pd_linux
 ext13
 fexpr~.pd_linux
 fiddle~
 flatgui
 freeverb~
 Gem
 gem2pdp-help.pd
 gem2pdp.pd_linux
 gem2pdp-README.txt
 ggee
 hcs
 hexloader
 hid
 hilbert~-help.pd
 hilbert~.pd
 iem16
 iem_adaptfilt
 iem_ambi
 iem_bin_ambi
 iem_delay
 iemgui
 iemguts
 iemlib
 iemmatrix
 iem_roomsim
 iem_spec2
 iem_tab
 iemxmlrpc
 jasch_lib
 jmmmp
 la-kitchen
 libdir
 list-abs
 loop~
 lrshift~
 Makefile.am
 makefile.subdir
 mapping
 markex
 maxlib
 memento
 memento-p
 mjlib
 moocow
 moonlib
 motex
 mrpeach
 nsend
 oscx
 output~-help.pd
 output~.pd
 pan
 parazit-help.pd
 parazit.pd
 pd~
 pdcontainer
 pddp
 pdogg
 pdp
 pdp2gem-help.pd
 pdp2gem.pd_linux
 pd-wavelet
 pique
 pix_2pdp-help.pd
 pix_2pdp.pd_linux
 pixeltango
 plugin~
 pmpd
 purepd
 README.txt
 rev1-final.pd
 rev1~-help.pd
 rev1~.pd
 rev1-stage.pd
 rev2~-help.pd
 rev2~.pd
 rev3~-help.pd
 rev3~.pd
 rradical
 rtc
 sfruit
 sigmund~
 sigpack
 smlib
 stdout
 timestretch
 tof
 unauthorized
 vanilla
 vbap
 windowing
 zexy
 zexy.pd


 is something missing there ? I think yes  K12 or ?

 fk.


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




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
in tar_em_up.sh you have:
cd ../spectdelay/spectdelay~
./linux-install.sh


but there is no spectdelay/spectdelay~ folder ???


2013/1/27 Ivica Bukvic i...@vt.edu

 Are you sure? spectdelay builds here perfectly fine. Did you try/copy
 l2ork build script?
 On Jan 27, 2013 5:32 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 i added this:

 disis_netreceive-help.pd
 disis_netreceive.pd_linux
 disis_netsend-help.pd
 disis_netsend.pd_linux
 disis_phasor~-help.pd
 disis_phasor~.pd_linux
 disis_wiimote-help.pd
 disis_wiimote.pd_linux
 K12
 patch_name-help.pd
 patch_name.pd_linux

 spectdelay cant build. missing cd ../spectdelay/spectdelay~
  ./linux-install.sh


 2013/1/27 Ivica Bukvic i...@vt.edu

 Compare it to l2ork build script l2ork_addons/tar_em_up.sh. You are
 missing a number of externals, plus k12.
 On Jan 27, 2013 4:39 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 ivica, thank for applying my patch.
 now everything works.

 I am not sure if ot is completed . this is my /usr/lib/pd-lork/extra/ :

 adaptive
 arraysize
 bassemu~
 boids
 bonk~
 bsaylor
 choice
 complex-mod~-help.pd
 complex-mod~.pd
 comport
 controctopus
 creb
 cxc
 cyclone
 earplug~
 ekext
 expr~
 expr~.pd_linux
 expr.pd_linux
 ext13
 fexpr~.pd_linux
 fiddle~
 flatgui
 freeverb~
 Gem
 gem2pdp-help.pd
 gem2pdp.pd_linux
 gem2pdp-README.txt
 ggee
 hcs
 hexloader
 hid
 hilbert~-help.pd
 hilbert~.pd
 iem16
 iem_adaptfilt
 iem_ambi
 iem_bin_ambi
 iem_delay
 iemgui
 iemguts
 iemlib
 iemmatrix
 iem_roomsim
 iem_spec2
 iem_tab
 iemxmlrpc
 jasch_lib
 jmmmp
 la-kitchen
 libdir
 list-abs
 loop~
 lrshift~
 Makefile.am
 makefile.subdir
 mapping
 markex
 maxlib
 memento
 memento-p
 mjlib
 moocow
 moonlib
 motex
 mrpeach
 nsend
 oscx
 output~-help.pd
 output~.pd
 pan
 parazit-help.pd
 parazit.pd
 pd~
 pdcontainer
 pddp
 pdogg
 pdp
 pdp2gem-help.pd
 pdp2gem.pd_linux
 pd-wavelet
 pique
 pix_2pdp-help.pd
 pix_2pdp.pd_linux
 pixeltango
 plugin~
 pmpd
 purepd
 README.txt
 rev1-final.pd
 rev1~-help.pd
 rev1~.pd
 rev1-stage.pd
 rev2~-help.pd
 rev2~.pd
 rev3~-help.pd
 rev3~.pd
 rradical
 rtc
 sfruit
 sigmund~
 sigpack
 smlib
 stdout
 timestretch
 tof
 unauthorized
 vanilla
 vbap
 windowing
 zexy
 zexy.pd


 is something missing there ? I think yes  K12 or ?

 fk.


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




 --
 Fero Kiraly
 www.cluster-ensemble.com




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
yes, in one - two days.
I am finishing it now.

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-27 Thread Fero Kiraly
ok. I am doing something wrong,
i can see this folder here
https://github.com/pd-l2ork/pd/tree/master/l2ork_addons/spectdelay

but when downloadig using this commad:
git clone git://github.com/pd-l2ork/pd.git

i dont have folder spectdelay~..
everything else seems be dowloaded, only this folder is missing...

I dont know what is wrong.




2013/1/28 Ivica Bukvic i...@vt.edu

 It is relative, when you look previous calls, you will notice you are
 already in the l2ork_addons/ folder at that point, so check inside that
 folder.
 On Jan 27, 2013 6:18 PM, Fero Kiraly fero.kir...@gmail.com wrote:



 in tar_em_up.sh you have:
 cd ../spectdelay/spectdelay~
 ./linux-install.sh


 but there is no spectdelay/spectdelay~ folder ???


 2013/1/27 Ivica Bukvic i...@vt.edu

 Are you sure? spectdelay builds here perfectly fine. Did you try/copy
 l2ork build script?
  On Jan 27, 2013 5:32 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 i added this:

 disis_netreceive-help.pd
 disis_netreceive.pd_linux
 disis_netsend-help.pd
 disis_netsend.pd_linux
 disis_phasor~-help.pd
 disis_phasor~.pd_linux
 disis_wiimote-help.pd
 disis_wiimote.pd_linux
 K12
 patch_name-help.pd
 patch_name.pd_linux

 spectdelay cant build. missing cd ../spectdelay/spectdelay~
  ./linux-install.sh


 2013/1/27 Ivica Bukvic i...@vt.edu

 Compare it to l2ork build script l2ork_addons/tar_em_up.sh. You are
 missing a number of externals, plus k12.
 On Jan 27, 2013 4:39 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 ivica, thank for applying my patch.
 now everything works.

 I am not sure if ot is completed . this is my /usr/lib/pd-lork/extra/
 :

 adaptive
 arraysize
 bassemu~
 boids
 bonk~
 bsaylor
 choice
 complex-mod~-help.pd
 complex-mod~.pd
 comport
 controctopus
 creb
 cxc
 cyclone
 earplug~
 ekext
 expr~
 expr~.pd_linux
 expr.pd_linux
 ext13
 fexpr~.pd_linux
 fiddle~
 flatgui
 freeverb~
 Gem
 gem2pdp-help.pd
 gem2pdp.pd_linux
 gem2pdp-README.txt
 ggee
 hcs
 hexloader
 hid
 hilbert~-help.pd
 hilbert~.pd
 iem16
 iem_adaptfilt
 iem_ambi
 iem_bin_ambi
 iem_delay
 iemgui
 iemguts
 iemlib
 iemmatrix
 iem_roomsim
 iem_spec2
 iem_tab
 iemxmlrpc
 jasch_lib
 jmmmp
 la-kitchen
 libdir
 list-abs
 loop~
 lrshift~
 Makefile.am
 makefile.subdir
 mapping
 markex
 maxlib
 memento
 memento-p
 mjlib
 moocow
 moonlib
 motex
 mrpeach
 nsend
 oscx
 output~-help.pd
 output~.pd
 pan
 parazit-help.pd
 parazit.pd
 pd~
 pdcontainer
 pddp
 pdogg
 pdp
 pdp2gem-help.pd
 pdp2gem.pd_linux
 pd-wavelet
 pique
 pix_2pdp-help.pd
 pix_2pdp.pd_linux
 pixeltango
 plugin~
 pmpd
 purepd
 README.txt
 rev1-final.pd
 rev1~-help.pd
 rev1~.pd
 rev1-stage.pd
 rev2~-help.pd
 rev2~.pd
 rev3~-help.pd
 rev3~.pd
 rradical
 rtc
 sfruit
 sigmund~
 sigpack
 smlib
 stdout
 timestretch
 tof
 unauthorized
 vanilla
 vbap
 windowing
 zexy
 zexy.pd


 is something missing there ? I think yes  K12 or ?

 fk.


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




 --
 Fero Kiraly
 www.cluster-ensemble.com




 --
 Fero Kiraly
 www.cluster-ensemble.com




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Fero Kiraly
I cant make it. the same error about gem2pdp...

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Fero Kiraly
cd externals/gem2pdp
 aclocal
configure.ac:41: error: 'AM_PROG_CC_STDC': this macro is obsolete.
You should simply use the 'AC_PROG_CC' macro instead.
Also, your code should no longer depend upon 'am_cv_prog_cc_stdc',
but upon 'ac_cv_prog_cc_stdc'.
/usr/share/aclocal-1.13/obsolete-err.m4:17: AM_PROG_CC_STDC is expanded
from...
configure.ac:41: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1


BUT i noticed that this same command in pd-extended/extertals/gem2pdp has
tha same output  so I completely dont understand bacause pd-extended I
can build and [gem2pdp] is working as well...


2013/1/26 Ivica Bukvic i...@vt.edu

 Is this just on Pd-l2ork or on pd-extended as well? Did you try doing the
 following:

 cd externals/gem2pdp
 aclocal
 autoconf
 cd..
 make gem2pdp
  On Jan 26, 2013 12:57 PM, Fero Kiraly fero.kir...@gmail.com wrote:

 I cant make it. the same error about gem2pdp...

 fk.

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




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-26 Thread Fero Kiraly
thats the trick ! just remove the line ...
ok, so i now rerun build process  will inform you.


2013/1/26 Ivica Ico Bukvic i...@vt.edu

  This part should then fail on both pd-extended and pd-l2ork since their
 configure.ac are identical. Can you try to delete line 41 in configure.ac(the 
 one that has AM_PROG_CC_STDC in it) and re-run?


 On 01/26/2013 01:35 PM, Fero Kiraly wrote:



  cd externals/gem2pdp
   aclocal
 configure.ac:41: error: 'AM_PROG_CC_STDC': this macro is obsolete.
 You should simply use the 'AC_PROG_CC' macro instead.
 Also, your code should no longer depend upon 'am_cv_prog_cc_stdc',
 but upon 'ac_cv_prog_cc_stdc'.
  /usr/share/aclocal-1.13/obsolete-err.m4:17: AM_PROG_CC_STDC is expanded
 from...
 configure.ac:41: the top level
 autom4te: /usr/bin/m4 failed with exit status: 1
 aclocal: error: echo failed with exit status: 1


  BUT i noticed that this same command in pd-extended/extertals/gem2pdp
 has tha same output  so I completely dont understand bacause
 pd-extended I can build and [gem2pdp] is working as well...


 2013/1/26 Ivica Bukvic i...@vt.edu

 Is this just on Pd-l2ork or on pd-extended as well? Did you try doing the
 following:

 cd externals/gem2pdp
 aclocal
 autoconf
 cd..
 make gem2pdp
  On Jan 26, 2013 12:57 PM, Fero Kiraly fero.kir...@gmail.com wrote:

  I cant make it. the same error about gem2pdp...

  fk.

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




  --
 Fero Kiraly
 www.cluster-ensemble.com



 --
 Ivica Ico Bukvic, D.M.A
 Composition, Music Technology
 Director, DISIS Interactive Sound  Intermedia Studio
 Director, L2Ork Linux Laptop Orchestra
 Head, ICAT IMPACT Studio
 Virginia Tech
 Department of Music
 Blacksburg, VA 24061-0240
 (540) 231-6139
 (540) 231-5034 (fax)disis.music.vt.edul2ork.music.vt.eduico.bukvic.net




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] undefined symbol: lua_pcall

2013-01-26 Thread Fero Kiraly
I have this error message in the console window on startup:

/usr/lib/pd-extended/extra/pdlua/pdlua.pd_linux:
/usr/lib/pd-extended/extra/pdlua/pdlua.pd_linux: undefined symbol: lua_pcall
...

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


Re: [PD] undefined symbol: lua_pcall

2013-01-26 Thread Fero Kiraly
thaks for quick reply. I wiil try

-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] ARCH linux pd-extended vs. pd

2013-01-26 Thread Fero Kiraly
friends, thanks a lot, but I dont understand how to apply that...

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-25 Thread Fero Kiraly
Hi,
When doing PKGBUILD I have some troubles.

What I am doing:

#1 getting pd-lork from git git clone git://github.com/pd-l2ork/pd.git
#2 getting Gem from git (to empty 'Gem' folder) git clone git://
github.com/pd-l2ork/pd.git
#3 update docs (to 'doc' folder) svn checkout
https://pure-data.svn.sourceforge.net/svnroot/pure-data/trunk/doc

#4 Fixing pd/src/configure.in for tk/tcl 8.6

#5 running ' alocal autoconf configure ' script in l2ork_addons/cwiid/
#6 running 'aclocal  ./autogen.sh' in Gem folder

#7 optimizing Gem for 64bit architecture  FPIC_FLAG=-fPIC
#8 finally run the make install in 'packages/linux_make'

  make BUILDLAYOUT_DIR=$srcdir/$pkgname/packages \
GEM_EXTRA_CXXFLAGS=$FPIC_FLAG \
DESTDIR=$pkgdir \
prefix=/usr \
install || return 1


the process ends with error compiling gem2pdp:

make[3]: Leaving directory
`/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/pdp'
cd /home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/gem2pdp  aclocal 
autoconf
configure.ac:41: error: 'AM_PROG_CC_STDC': this macro is obsolete.
You should simply use the 'AC_PROG_CC' macro instead.
Also, your code should no longer depend upon 'am_cv_prog_cc_stdc',
but upon 'ac_cv_prog_cc_stdc'.
/usr/share/aclocal-1.13/obsolete-err.m4:17: AM_PROG_CC_STDC is expanded
from...
configure.ac:41: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1
make[2]: ***
[/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/gem2pdp/configure] Error
1
make[2]: Leaving directory
`/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals'
make[1]: *** [externals_install] Error 2
make[1]: Leaving directory
`/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/packages'
make: *** [install] Error 2



can anybody help ?

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-25 Thread Fero Kiraly
I will try  let you know.
 On Jan 25, 2013 6:27 PM, Ivica Ico Bukvic i...@vt.edu wrote:

 OK, I committed the diff between older version of gem2pdp in pd-l2ork and
 the latest found in pd-extended. Can you try it now? As a shortcut, you
 could just go inside the externals folder and type “make gem2pdp” to see if
 it compiles. Let me know.

 ** **

 *From:* Ivica Bukvic [mailto:i...@vt.edu]
 *Sent:* Friday, January 25, 2013 8:04 AM
 *To:* Fero Kiraly
 *Subject:* Re: [PD] Building pd-l2ork on arch linux 64

 ** **

 Did you try building with l2ork_addons/tar_em_up.sh script? Also what
 distro are your using? Finally, what happens if you replace l2ork gem2pdp
 external folder with that of pd-extended?

 On Jan 25, 2013 5:39 AM, Fero Kiraly fero.kir...@gmail.com wrote:

 Hi,

 When doing PKGBUILD I have some troubles.

 ** **

 What I am doing:

 ** **

 #1 getting pd-lork from git git clone git://github.com/pd-l2ork/pd.git***
 *

 #2 getting Gem from git (to empty 'Gem' folder) git clone git://
 github.com/pd-l2ork/pd.git

 #3 update docs (to 'doc' folder) svn checkout
 https://pure-data.svn.sourceforge.net/svnroot/pure-data/trunk/doc

 ** **

 #4 Fixing pd/src/configure.in for tk/tcl 8.6

 ** **

 #5 running ' alocal autoconf configure ' script in l2ork_addons/cwiid/

 #6 running 'aclocal  ./autogen.sh' in Gem folder

 ** **

 #7 optimizing Gem for 64bit architecture  FPIC_FLAG=-fPIC

 #8 finally run the make install in 'packages/linux_make'

 ** **

   make BUILDLAYOUT_DIR=$srcdir/$pkgname/packages \

 GEM_EXTRA_CXXFLAGS=$FPIC_FLAG \

 DESTDIR=$pkgdir \

 prefix=/usr \

 install || return 1

 ** **

 ** **

 the process ends with error compiling gem2pdp:

 ** **

 make[3]: Leaving directory
 `/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/pdp'

 cd /home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/gem2pdp  aclocal 
 autoconf

 configure.ac:41: error: 'AM_PROG_CC_STDC': this macro is obsolete.

 You should simply use the 'AC_PROG_CC' macro instead.

 Also, your code should no longer depend upon 'am_cv_prog_cc_stdc',

 but upon 'ac_cv_prog_cc_stdc'.

 /usr/share/aclocal-1.13/obsolete-err.m4:17: AM_PROG_CC_STDC is expanded
 from...

 configure.ac:41: the top level

 autom4te: /usr/bin/m4 failed with exit status: 1

 aclocal: error: echo failed with exit status: 1

 make[2]: ***
 [/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals/gem2pdp/configure] Error
 1

 make[2]: Leaving directory
 `/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/externals'

 make[1]: *** [externals_install] Error 2

 make[1]: Leaving directory
 `/home/paum/PK/AUR/pd-l2ork/src/pd-l2ork/packages'

 make: *** [install] Error 2

 ** **

 ** **

 ** **

 can anybody help ?

 ** **

 fk


 ___
 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] Building pd-l2ork on arch linux 64

2013-01-25 Thread Fero Kiraly
PKGBUILD script contains:
https://pure-data.svn.sourceforge.net/svnroot/pure-data/branches/pd-extended/0.43
and clone git://
pure-data.git.sourceforge.net/gitroot/pure-data/pd-extended.git

is this correct ?

-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PDDP revisions of 2.control.examples

2013-01-23 Thread Fero Kiraly
they are great ! thank you

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


Re: [PD] PDDP revisions of 2.control.examples

2013-01-23 Thread Fero Kiraly
there is one mistake. Very little and with no importance.
In the dollar sign example is in the abstraction written 'this is an
abstraction used in example 13'
but it should be 14.

I have found it in the Miller's oroginals, too.

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-23 Thread Fero Kiraly
yes, but it needs time. day - two ..
Right now i am repairing pd-extended PKGBUILD because of some changes from
devs...

-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] ARCH linux pd-extended vs. pd

2013-01-23 Thread Fero Kiraly
What should be changed (,maybe in  pd/src/Makefile.am ? ) to build a pd-ex
binary with different name ?

now it is called 'pd' and it's name conflict when vannila wants to come...

What shoul be the name ?

thanks

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


Re: [PD] 1-inlet [list] : bug? WAS: enhance pd-extended with pd-l2ork featues ?

2013-01-23 Thread Fero Kiraly
[list] bug seems to be repaired.
thanks.


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


Re: [PD] canvas properties dialog enhancement ?

2013-01-21 Thread Fero Kiraly
thanks.

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


[PD] Building pd-l2ork on arch linux 64

2013-01-19 Thread Fero Kiraly
Can somebody help ?

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


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-19 Thread Fero Kiraly
the problem is with he new version of Tcl/Tk 8.6.
When I made some little changes about version numbers in pd/Makefile, the
error is :

t_tkcmd.c:589:55: error: ‘Tcl_Interp’ has no member named ‘errorLine’


I tried to google, but with no effect. I am totally lost how to solve this
problem...

-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Building pd-l2ork on arch linux 64

2013-01-19 Thread Fero Kiraly
it works !
problem solved. I am going to make a PKGBUILD for this

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


[PD] enhance pd-extended with pd-l2ork featues ?

2013-01-19 Thread Fero Kiraly
Dear all,

I like features of pd-l2ork (cpoypaste raw code, resizeable GUis..)

iThink it will be nice to 'extend' pd-extended with them.
What do you think ? or is it problematic ?

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


[PD] canvas properties dialog enhancement ?

2013-01-15 Thread Fero Kiraly
hallo,

It is possibile for pd developers to make this thing ? :

When I have an abstraction object which uses arguments and when
the checkbox 'Hide object name  args' is checked I am unable to change
the arguments.

But, if the arguments could be displayed in the canvas properties dialog
(mouse right click on the abstraction) somewhere on a new line and
editable, it will be a nice feature, I think 


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


Re: [PD] [PD-announce] Pd-extended 0.43.4 release candidate 1: last chance to report your bugs

2013-01-09 Thread Fero Kiraly
I have some trouble with JACK
When I try to change JACK audio settings, pd freezes  message 'watchdog:
signaling pd...' is repeating in console..

I am using Arch Linux 64bit. Tcl/Tk, 8.6.0
Do you need some more infos / logs ?

thank you
-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [PD-announce] Pd-extended 0.43.4 release candidate 1: last chance to report your bugs

2013-01-09 Thread Fero Kiraly
... I try to investigate more, and I when I check the CHECKBOX 'use
callbacks' all of this wrong behaviour (freezing, signaling watchdog msg)
disapperas.
So I think I have solved my problem.

What exactly does 'use callbacks' ?


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


Re: [PD] Tcl/Tk 8.6.0

2013-01-05 Thread Fero Kiraly
Hallo,

I just did a PKGBUILD with paches for Tcl 8.60 yesterday --
https://aur.archlinux.org/packages/pd-extended/
Build process is correct, but I have some problems with JACK, BUT I have
changed my sound configuration, so maybe it is my fault...

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


Re: [PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-11-03 Thread Fero Kiraly
Thanks to Hans suggestions I made a research why I cant compile pd-ex from
branch.
It takes me some time but I found that was something wrong in GEM
configure.ac script. So I did it !

https://aur.archlinux.org/packages.php?ID=44798

--- should be the correct build package  script for the latest pd-extended
It is made from:

https://pure-data.svn.sourceforge.net/svnroot/pure-data/branches/pd-extended/0.43

+

git://pure-data.git.sourceforge.net/gitroot/pure-data/pd-extended.git


{I apologize all the guys who liked pd-extended with the latest GEM, but (I
understand this) it is 'official' package of pd-ex, now.}




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


Re: [PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-10-31 Thread Fero Kiraly
the reason why I not used GEM from branch is that it cant compile it I got
this error which I cant to manage:

/usr/share/automake-1.12/am/depend2.am: error: am__fastdepOBJCXX does not
appear in AM_CONDITIONAL

when I use GEM from git, everything is OK. SO I am sorry for this salad but
...

-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-10-30 Thread Fero Kiraly
Because of Hans (thanks Hans) suggestion I did a NO SVN pkgbild.
It should be the REAL latest version of pd-extended 0.43-x
here:
https://aur.archlinux.org/packages.php?ID=44798

it was born from:
https://pure-data.svn.sourceforge.net/svnroot/pure-data/branches/pd-extended/0.43
--- the latest pd-extended 0.43.x
git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem
   --- the latest GEM
git://pure-data.git.sourceforge.net/gitroot/pure-data/pd-extended.git
 --- the latest pd-extended core
+ mime types (it depends now on hicolor-icon-theme)

or am I wrong about the latest sources ??

I have a question again.  On aur.archlinux.org it is shown as Pure Data
Extended 0.43-1 version, BUT IT IS 0.43-4 NOW. Where I did mistake in
PKGBUILD ?
cheers

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


[PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-10-29 Thread Fero Kiraly
Dear friends,

I try to manage PKGBUILD of latest Pd-extended (svn  git) + latest
Gem (git) for arch.
For me it's running, what makes me happy because I am one of the new Archers.

It is here:
https://aur.archlinux.org/packages.php?ID=22509

I have some questions:
1.) I need to do some fixes...corrected name of pdlua library in:
externals/loaders/pdlua/src/Makefile  ...  not problem at all...

2.) I created an empty file in : externals/ekext/ninjacount-help.pd (0
bytes, it is needed for build, dont ask me why...) WHY IS THIS FILE
MISSING ?

3.) It is going well on x_64 ? (What I really do is copypaste some
code from older packege for x64 optimatization, not tested)

4.) How to create mime type for gnome in PKGBUILD (to have nice pd
icons on pd files) ?

5.) Maybe a made some mistakes in dependecies etc.  ???  so if is
here some Master to manage this better I wolud appreciate that..
cheers



-- 
Fero Kiraly
www.cluster-ensemble.com

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


[PD] where are sources for pd-extended 0.43.4 ??

2012-10-28 Thread Fero Kiraly
is it this ?

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

t

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


Re: [PD] Translating Puckette Lectures into Spanish (Fero Kiraly)

2012-10-24 Thread Fero Kiraly
here :
http://pd-la.info/pd-media/miller-puckette-mus171-videos/

also the transcripts.



2012/10/24 slew52 three...@ml1.net

 hi Fero and list

 i wonder where those lectures might be.

 kindest
 ./d


 --

 Message: 1
 Date: Tue, 23 Oct 2012 22:41:46 +0200
 From: Fero Kiraly fero.kir...@gmail.com
 Subject: Re: [PD] Translating Puckette Lectures into Spanish
 To: pd-list@iem.at
 Message-ID:
 CAM6dkpVa5JfyWF3mfr9-5Z_+0Ms=
 fmcqwblhldj3jq80zyv...@mail.gmail.com
 Content-Type: text/plain; charset=iso-8859-1

 I am not native english speaker so I make srt file of first course from
 transcripts file. It is now more understandable for me and maybe for
 another of you It takes me a long time. It is a good idea to do it
 in
 pd community... so if anybody can prepare srt from other courses will be
 great !

 --
 Fero Kiraly
 www.cluster-ensemble.com

 --
 http://www.fastmail.fm - Access your email from home and the web




-- 
Fero Kiraly
www.cluster-ensemble.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list