Re: [PD] $0 and Data Structure Templates

2008-11-30 Thread Mike McGonagle
Luke,

I think this should be allowed, hell, even the use of other $
arguments. It would be nice to be able to allow abstractions to create
their own private data structures, or at least ones that could be
named based on a creation argument.

If nothing else, it would prevent any kind of structure naming clashes
between objects that define structure with the same name.

I had, like you, tried this same thing only to find that the saves
files were then having those structures renamed.

It would also be nice if you could store a reference to any type of
data structure within one of these "private" data structures... of
course, the abstraction being passed this arbitrary pointer to a data
structure wouldn't know what to do with it, but it could be sent out
an outlet to some outside processing code. Could this be done by
adding a 'pointer' type to the structure definition? Something like:

[struct my-struct float value pointer object]

Mike

On Sun, Nov 30, 2008 at 9:32 PM, Luke Iannini <[EMAIL PROTECTED]> wrote:
> Hallo all,
>
> I'm working on my complex DS sequencer, and the time has come that I'd
> like to read and write sequences from it.
>
> The problem is this: all of my templates are written like [pd
> $0.note-template] to allow multiple instances of the sequencer, but
> this seems to be incompatible with reading and writing data from a
> subpatch ( like [write my-data.structure( - [pd $0.data] ), because
> the $0 is expanded in the written file (so it's full of "template
> 90953loopMarkerTemplate;" etc. rather than "template
> \$0loopMarkerTemplate;").
>
> The immediate thought was to split the templates into a separate patch
> altogether, and spawn it before creating the sequencer or use a
> singleton approach.  But, this ruins using [change( messages from
> [struct]s as well as selectively turning on and off [draw*]n elements
> on a per-sequencer basis.
>
> The only other option AFAICT is to forget DS reading and writing and
> just mirror the data in lists with SSSAD, but that would be a shame
> considering the capability exists already.
>
> It seems to me that the written datastructure definition should
> preserve $0, no?  Anyone have any other ideas?
>
> (apologies if this is unclear, I'm very tired at the moment)
> Best
> Luke
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> 
> http://lists.puredata.info/listinfo/pd-list
>



-- 
Peace may sound simple—one beautiful word— but it requires everything
we have, every quality, every strength, every dream, every high ideal.
—Yehudi Menuhin (1916–1999), musician

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


Re: [PD] Multi-slider attempt

2008-11-30 Thread hard off
i understand your question, and unfortunately don't have the answer because
datastructs are a bit foreign to me.

however...if you are going to use this structure for controlling audio or
visual processes, then won't you need to constantly poll the y-values of the
handles anyway?
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Peak envelope follower?

2008-11-30 Thread Michal Seta
[peakamp~]?
in cylone.

./MiS

On Sun, Nov 30, 2008 at 8:25 PM, Bill Gribble <[EMAIL PROTECTED]> wrote:
> Is there a way within pd-extended to do the equivalent of [env~], but
> following peak value rather than RMS?
>
> I have pulled my hair out trying to implement this with patching but I
> have had no luck.
>
> Thanks,
> Bill Gribble
>
>
>
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> 
> http://lists.puredata.info/listinfo/pd-list
>



-- 
./MiS
514-344-0726
http://www.creazone.ca

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


[PD] $0 and Data Structure Templates

2008-11-30 Thread Luke Iannini
Hallo all,

I'm working on my complex DS sequencer, and the time has come that I'd
like to read and write sequences from it.

The problem is this: all of my templates are written like [pd
$0.note-template] to allow multiple instances of the sequencer, but
this seems to be incompatible with reading and writing data from a
subpatch ( like [write my-data.structure( - [pd $0.data] ), because
the $0 is expanded in the written file (so it's full of "template
90953loopMarkerTemplate;" etc. rather than "template
\$0loopMarkerTemplate;").

The immediate thought was to split the templates into a separate patch
altogether, and spawn it before creating the sequencer or use a
singleton approach.  But, this ruins using [change( messages from
[struct]s as well as selectively turning on and off [draw*]n elements
on a per-sequencer basis.

The only other option AFAICT is to forget DS reading and writing and
just mirror the data in lists with SSSAD, but that would be a shame
considering the capability exists already.

It seems to me that the written datastructure definition should
preserve $0, no?  Anyone have any other ideas?

(apologies if this is unclear, I'm very tired at the moment)
Best
Luke

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


Re: [PD] Pd as a 24/7 Icecast/Shoutcast source client (alternative)

2008-11-30 Thread John Harrison


Ilias Anagnostopoulos wrote:
> John,
>
> I had a look at the radio pages. Looks good. Is there any particular 
> reason you chose Shoutcast over Icecast?
We wanted to do mp3 streaming vs. ogg/vorbis to keep this as mainstream 
as possible. Shoutcast was the one we knew must work so we started with 
that and never left. It would be nice to switch to Icecast due to FLOSS 
if it works as well, but we are pretty committed to mp3 as it is so 
universally accepted.
> Are you using PD solely for the mp3cast~? Or is it doing more than 
> that? Are you using the GUI's for all of these (jack, PD, jack-rack, 
> xmms)?
We use the GUIs for everything. Pd is only doing mp3cast. But it is all 
automated. We have a remote broadcast machine too whose interface and 
operation is all Pd/GRiPD and also it uses mp3cast~ to stream to the 
main console.
>
>
> From what I understand, ffserver is used for the flash version, right? 
yep. It's not that we are a fan of flash but we want to be as inclusive 
as possible, not just a station for geeks. We found that flash was the 
lowest common denominator for a web player. Even Java, which we started 
with, wasn't on as many machines as flash.  We do a lot of broadcasts 
which students' grandparents etc. tune into and they could deal with the 
flash player better even than iTunes or winamp.

If there is interest in continuing specifically about radio and 
streaming, we might need to move off the Pd list? Email me directly.

-John

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


Re: [PD] Peak envelope follower?

2008-11-30 Thread Andy Farnell


[snapshot~]

IIRC gives you the value of the first sample in the last block when banged.
It's more useful than [env~] for 'instantaneous' measurement but sorely
lacking for practical use - for instance the first sample may be atypical
and the remaining 63 (by default) completely different. Obvious, and probably
trivial, improvements to [snapshot~] would be an index argument a la [dirac~]
that lets you set the sample to read, an option to return a list, or the
largest value. 



On Sun, 30 Nov 2008 20:25:15 -0500
Bill Gribble <[EMAIL PROTECTED]> wrote:

> Is there a way within pd-extended to do the equivalent of [env~], but
> following peak value rather than RMS? 
> 
> I have pulled my hair out trying to implement this with patching but I
> have had no luck. 
> 
> Thanks,
> Bill Gribble
> 
> 
> 
> 
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> 
> http://lists.puredata.info/listinfo/pd-list


-- 
Use the source

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


[PD] Peak envelope follower?

2008-11-30 Thread Bill Gribble
Is there a way within pd-extended to do the equivalent of [env~], but
following peak value rather than RMS? 

I have pulled my hair out trying to implement this with patching but I
have had no luck. 

Thanks,
Bill Gribble




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


Re: [PD] Multi-slider attempt

2008-11-30 Thread Hans-Christoph Steiner

Funky stuff, looks nice.

.hc

On Nov 26, 2008, at 7:10 PM, Mike McGonagle wrote:

> Wow, didn't really look at the programming, but the sliders look  
> great...
>
>
> Mike
>
>
> On Wed, Nov 26, 2008 at 3:06 PM, Jonathan Wilkes  
> <[EMAIL PROTECTED]> wrote:
>> After checking out Frank Barknecht's ds slider example, I'm trying  
>> to build a ds bar-graph that behaves like the max multi-slider,  
>> where you can click-drag to change multiple values in one mouse- 
>> swoop.
>> In the attached patch, you can click on the red "handle" and  
>> drag across the bars to change the elements of the arrays.  But I  
>> can't figure out how to resize the "bars" without using a metro to  
>> get the y-value of the handles.
>> Is there a simpler way to do this?  I tried using only one  
>> struct for both "bar" and "handle" but couldn't figure out how to  
>> get the bottom of the bars to stay constant.
>>
>> Thanks,
>> Jonathan
>>
>>
>>
>>
>> ___
>> Pd-list@iem.at mailing list
>> UNSUBSCRIBE and account-management -> http://lists.puredata.info/ 
>> listinfo/pd-list
>>
>>
>
>
>
> -- 
> Peace may sound simple—one beautiful word— but it requires everything
> we have, every quality, every strength, every dream, every high ideal.
> —Yehudi Menuhin (1916–1999), musician
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> http://lists.puredata.info/ 
> listinfo/pd-list





 


'You people have such restrictive dress for women,’ she said,  
hobbling away in three inch heels and panty hose to finish out  
another pink-collar temp pool day.  - “Hijab Scene #2", by Mohja Kahf



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


Re: [PD] rc-sssad

2008-11-30 Thread Hans-Christoph Steiner


You can using IOhannes' iemguts library, currently in SVN in  
externals/iem/iemguts.


.hc

On Nov 30, 2008, at 6:17 PM, Dan Wilcox wrote:

Is it possible to retrieve the name of the parent patch?  If so,  
then mabey I can rework
rc-sssad to use the parent patchname and prepend that to the keys  
automatically so that
it will yield the same results, but without having to manually add  
a prefix everytime I create

and name a sssad-enabled object.

---
Dan Wilcox
danomatika.com
robotcowboy.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> http://lists.puredata.info/ 
listinfo/pd-list




 



If nature has made any one thing less susceptible than all others of  
exclusive property, it is the action of the thinking power called an  
idea, which an individual may exclusively possess as long as he keeps  
it to himself; but the moment it is divulged, it forces itself into  
the possession of everyone, and the receiver cannot dispossess  
himself of it.- Thomas Jefferson



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


Re: [PD] [PD-announce] The OtherSide Server is DEAD!

2008-11-30 Thread Hans-Christoph Steiner

That's a bummer...

If you want, I could host your Intrepid package in the repository  
that is setup on the autobuild farm.

.hc


On Nov 28, 2008, at 10:13 PM, Ilias Anagnostopoulos wrote:

> The OtherSide server died a couple of hours ago... Hardware  
> failure! It
> refuses to boot. It was experiencing some RAM problems and I tried to
> fix it by replacing the RAM with a stick of the exact same specs. This
> somehow managed to fry the motherboard. It does not do anything  
> anymore.
>
> This means that you will no longer be able to get anything from the  
> APT
> repository (PD-extended and more) and you will not be able to  
> access the
> SVN Repository, until this is fixed.
>
> I hope we will have no data loss, since the hard disk should not have
> been affected by this. I will try to find a replacement server as soon
> as possible. If I don't find one by tomorrow, I will try and host  
> things
> temporarily here and there until a permanent solution can be found.
>
> Anyone willing to offer server-space (temporarily) or an actual server
> machine, please let me know..
>
> -Ilias
>
> ___
> Pd-announce mailing list
> [EMAIL PROTECTED]
> http://lists.puredata.info/listinfo/pd-announce
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> http://lists.puredata.info/ 
> listinfo/pd-list



 


   ¡El pueblo unido jamás será vencido!



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


Re: [PD] [GEM] error in creating gemwin in fc8

2008-11-30 Thread Jaime Oliver
For some reason my computer stopped using the nvidia driver and that was
causing the problem, so I used that driver again and it all seems to work
now.
although in theory it should still run without the nvidia card right?
In any case, I needed to solve this problem fast to work on some video
stuff.
thanks for the response, I was looking forward to the voodoo...

J

On Sun, Nov 30, 2008 at 4:24 AM, IOhannes m zmoelnig <[EMAIL PROTECTED]>wrote:

> Jaime Oliver wrote:
>
>> Hello all,
>>
>> After installing recordmydesktop and Mplayer, and adding support for
>> mpeg3,
>> Quicktime and ffmpeg, then recompiling gem, i get the following error
>> everytime I try to create a Gemwin:
>>
>> on the terminal:
>>
>> Xlib:  extension "GLX" missing on display ":0.0".
>> Xlib:  extension "GLX" missing on display ":0.0".
>>
>
> well, it seems like your Xserver is missing the GLX (openGL for X)
> extensions. since Gem highly depends on openGL, it refuses to continue...
>
> which driver are you using? probably your Xorg.conf needs tweaking.
>
> do other openGL apps work? a good start is glxgears (if this doesn't work,
> chances are minimal to non-existant that Gem will...)
>
>
>> Any help will be appreciated.
>>
>
> if glxgears do work, try setting the environmental variable
> GEM_SINGLE_CONTEXT to 1. (setting this variable can be considered the first
> voodoo to do when problems occur)
>
> mgdsft
> IOhannes
>



-- 
Jaime E Oliver LR

[EMAIL PROTECTED]
www.realidadvisual.org/jaimeoliver
www-crca.ucsd.edu/
www.realidadvisual.org

858 202 1522
9168 Regents Rd. Apt. G
La Jolla, CA 92037
USA
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] problems with Delta 1010LT?

2008-11-30 Thread info

> My problem has been solved by running alsamixer with flags to
Delta-1010LT, and raising input levels there. So, if indeed you (tim)
have exactly the same problem, then this should solve it.

Hi Jaime,

when running alsamixer like this:
alsamixer -D hw:1
I can set the adc sliders for the Delta-1010LT from there.
problem solved, thanks!

Tim

>
>
> J
>
>
>
>
> On Sun, Nov 9, 2008 at 10:30 AM, Miller Puckette
<[EMAIL PROTECTED]> wrote:
> Wierd.  I have out-of-the-box Fedora 9 running (it's a terrible Fedora
> release, by hte way, I'm going to switch to 10 when it comes out
later
> this month) and my delta1010LT runs fine.  So if it's an ALSA
bug it
> must have been fixed meanwhile.
>
> BTW, there are 4 jumpers on the 1010LT card; if they are missing
the first
> two inputs might not work (but the other 6 should anyway.)
>
> cheers
> Miller
>
>
> On Sun, Nov 09, 2008 at 04:56:48PM +0100, tim wrote:
> > hello Jamie and list,
> >
> > exact same problem here.
> > Delta1010LT outputs work, inputs don't.
> > I tried on ubuntu hardy and pure:dyne.
> > I checked all there is to check in envy24 control.
> > btw, There are also other problems showing up with alsa lately.
> > For example, the Echo Layla 3G stopped working altogether.
> > I'll try Bryan's suggestions later...
> >
> > Tim
> >
> > On Sun, 2008-11-09 at 12:36 +0100, Bryan Jurish wrote:
> > > morning Jaime,
> > >
> > > I have the same card in my desktop here under debian
testing/unstable,
> > > and have also successfully used all the analog in- and
outputs with pd.
> > >
> > > The only potential causes for your problem that occur to me
are "stupid"
> > > ones that you've probably already checked, e.g. routing
problems on the
> > > card [have you run "envy24control" and checked that the
input levels
> > > (tab page "analog volume") are all up where they should be?]
 Did you
> > > start pd with "-channels 8"?
> > >
> > > I also vaguely remember hearing of problems with the alsa
mixer API
> > > (alsamixer, amixer, etc.) for envy24 cards -- the
conventional wisdom
> > > seems to be: "avoid ALSA's mixer and use only envy24control
for this
> > > card".  You might also check whether your distro is doing
something
> > > sneaky like calling "amixer" behind your back when the
driver module
> > > (snd_ice1712) is loaded (e.g. as a post-install operation
declared in
> > > /etc/modules.conf)... other than that, I'm pretty much out
of ideas...
>
>
> I haven't found any file /etc/modules.conf, but I did find /etc/asound.conf
>
>
> #SWCONF
> #DEV 0
> defaults.pcm.card 0
> defaults.pcm.device 0
> defaults.ctl.card 0
>
>
>
>
> > >
> > > marmosets,
> > > Bryan
> > >
> > > On 2008-11-09 09:06:25, "Jaime Oliver"
<[EMAIL PROTECTED]> appears
> > > to have written:
> > > > Hello all,
> > > >
> > > > I have an M-Audio Delta 1010LT in Fedora 8. I never
installed any
> > > > drivers since it seemed to work right out of the box. I
have managed to
> > > > use the 8 channels OUT, but can't get a signal into pd in
any of the 8
> > > > channels IN. Has anyone else seen something like this?
> > > >
> > > > best,
> > > >
> > > > J
> > > >
> > > > --
> > > > Jaime E Oliver LR
> > > >
> > > > [EMAIL PROTECTED] 
> > > > www.realidadvisual.org/jaimeoliver
> > > > 
> > > > www-crca.ucsd.edu/ 
> > > > www.realidadvisual.org 
> > > >
> > > > 858 202 1522
> > > > 9168 Regents Rd. Apt. G
> > > > La Jolla, CA 92037
> > > > USA
> > >
> > --
> > ...
> > www.timvets.net
> > [EMAIL PROTECTED], [EMAIL PROTECTED]
> > 0032 474 89 66 86
> > skype: tim167_
> > ...
> >
> >
>
> > ___
> > 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
>
>
>
> --
> Jaime E Oliver LR
>
> [EMAIL PROTECTED]
> www.realidadvisual.org/jaimeoliver
> www-crca.ucsd.edu/
> www.realidadvisual.org
>
> 858 202 1522
> 9168 Regents Rd. Apt. G
> La Jolla, CA 92037
> USA
>
> --
...
ww

[PD] Chicago Patching Circle (Sunday, December 14th)

2008-11-30 Thread Mike McGonagle
Hello all,

Just a reminder about the patching session. Basically, we are on for
Sunday, December 14th, at 5pm. The location is:

Red Line Tap
7006 N Glenwood
Chicago, IL

If you are going via the EL, go to the Morse Stop, and exit to the
north end of the platform. From there, go northwest on Glenwood, the
Red Line Tap is the first door from the corner.

If you are driving, there is a parking lot to the north, 2 block. It
is a shared lot with the Trilogy center, at Estes and Glenwood. If you
need a map, you can try google maps.

If everyone who is interested in showing the work they have in
progress could email me, I would like to put together a small list of
all the participants.

Thanks,
Mike

-- 
Peace may sound simple—one beautiful word— but it requires everything
we have, every quality, every strength, every dream, every high ideal.
—Yehudi Menuhin (1916–1999), musician

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


Re: [PD] [GEM] recordmydesktop not capturing gemwindow

2008-11-30 Thread patrick
hi,

an example of gtkrecordmydesktop + pdmtl abstractions.

fps: 10
encode on the fly: disabled
zero compression: enabled
quick subsampling: disabled
full shots at every frame: enabled
use jack for audio capture

http://www.vimeo.com/2389131

original at:
http://www.11h11.com/temp/etsuko.ogg

pat

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


Re: [PD] rc-sssad

2008-11-30 Thread Dan Wilcox
Is it possible to retrieve the name of the parent patch?  If so, then
mabey I can rework 
rc-sssad to use the parent patchname and prepend that to the keys
automatically so that
it will yield the same results, but without having to manually add a
prefix everytime I create
and name a sssad-enabled object.

---
Dan Wilcox
danomatika.com
robotcowboy.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] rc-sssad

2008-11-30 Thread Dan Wilcox
On Sun, 2008-11-30 at 21:49 +0100, Frank Barknecht wrote:

> Hallo,
> Dan Wilcox hat gesagt: // Dan Wilcox wrote:
> Are you using the latest version of sssad? Because new versions have
> local saving already built in - you activate it by giving the
> sssad-instances an additional argument, usually $0, like this: 
> 
>  [sssad somename $0]
> 

Before I begin, I'm sure this has all been done before but I'm not aware
of it so I'll re-reinvent the wheel.  Besides, you know how the wheel
works when you build it.

Ahh I see, I think I'm using the wrong terminology then.  I'm using
"local" as in objects with a certain osc-style prefix.  I'm using sssad
to save state values within reusable abstractions and there may be a
number of them on one song patch.  The sssad keys are set using the
objects assigned name which is $1, so 

[rc-delay~ p] has keys [sssad p/delay], [sssad p/feedback], etc...

Let's say SongA has a delay and 2 oscillators of some kind and SongB has
another delay and 2 drum samples.  The way I had it before, I could not
work on SongA and SongB at the same time because if I saved one, it
would also have the values of the second.  Now I add a prefix to each
object's name in SongA, say [rc-delay~ /songa/p] and the same with Song
B [rc-delay~ /songb/p].  then I just check for each prefix using
[rc-sssad /songa] in SongA.pd and [rc-sssad /songb] in SongB.pd, and
saving one will only save it's objects.

... anyway, thanks for sssad, it makes using my abstractions s much
easier since I can just create, fiddle, and save. 
---
Dan Wilcox
danomatika.com
robotcowboy.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] rc-sssad

2008-11-30 Thread Dan Wilcox
On Sun, 2008-11-30 at 21:49 +0100, Frank Barknecht wrote:

> Are you using the latest version of sssad? Because new versions have
> local saving already built in - you activate it by giving the
> sssad-instances an additional argument, usually $0, like this: 
> 
>  [sssad somename $0]
> 

Yeah I'm probably using an old version, I'll check it out.

---
Dan Wilcox
danomatika.com
robotcowboy.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] rc-sssad

2008-11-30 Thread Frank Barknecht
Hallo,
Dan Wilcox hat gesagt: // Dan Wilcox wrote:

> I've been using the sssad objects, mainly datastore within my main song
> patches for a while now but needed to be able to save just locla
> objects.  I found thesolution in the 808_local object in the diy2
> patches but had the problem of multiple sssad saving objects telling
> each other to save, which is annoying if you are trying multiple changes
> and just want to save only one local set of objects' states.

Are you using the latest version of sssad? Because new versions have
local saving already built in - you activate it by giving the
sssad-instances an additional argument, usually $0, like this: 

 [sssad somename $0]

Check the updated help-file for details.

Ciao
-- 
Frank

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


[PD] robotcowboy @ STEIM Micro Jamboree 2

2008-11-30 Thread Dan Wilcox
Howdy again,

Any PDer's going to the STEIM Micromusic Jamboree 2?

I'm playing on Thursday Dec 11th.

Mabey I'll see you there and we can fend off the army
of MAC/MAXers ...

---
Dan Wilcox
danomatika.com
robotcowboy.com
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [GEM] recordmydesktop not capturing gemwindow

2008-11-30 Thread patrick
hi,

you need to turn up "full shots at every frame" in advanced - performance.

pat

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


Re: [PD] Pd as a 24/7 Icecast/Shoutcast source client (alternative)

2008-11-30 Thread Ilias Anagnostopoulos
John,

I had a look at the radio pages. Looks good. Is there any particular 
reason you chose Shoutcast over Icecast? Are you using PD solely for the 
mp3cast~? Or is it doing more than that? Are you using the GUI's for all 
of these (jack, PD, jack-rack, xmms)?

 From what I understand, ffserver is used for the flash version, right? 
I haven't really heard much about flash stuff, I personally dislike 
flash and I don't even have in installed.

-Ilias

John Harrison wrote:
> Not sure how much this adds to the conversation but... we have been 
> using mp3cast~ to stream our radio station to 2 shoutcast servers for 
> a few years now. Works very well. Occasionally it will cause the 
> entire OS to hang if there is a disconnect with the internet at 
> apparently just the right time (happens less than 1x/month with our 
> off-campus server and never with our oncampus server) but it was more 
> stable than darkice in our tests as well.
>
> We use Jack for our connections. Our content scheduler is a hacked up 
> webcalendar, which triggers the content to be played via xmms (to be 
> replaced hopefully very soon by mplayer), then fed via jack-rack 
> through a compressor and limiter, and then sent to Pd for streaming.
>
> OT: but we also have a flash server/player solution which we find much 
> more popular than our shoutcast servers, and ours is the only 
> open-source web server I have seen actually work. It's an old version 
> of ffserver --- since 2006 or so that app has been broken for us at 
> least. Are there others out there?
>
> http://wsuir.wichita.edu
>
> --John
>
> On Fri, Nov 28, 2008 at 3:10 PM, Ilias Anagnostopoulos 
> <[EMAIL PROTECTED] 
> > wrote:
>
> Hello,
>
> I haven't seen the whole discussion about this, but from what I
> understand someone is using PD, mplayer and jack for streaming to an
> icecast/shoutcast server.
>
> I have used PD as a 24/7 source encoder/streamer, using mp3cast~,
> in the
> OtherSide project. This was a server that had PD running a synthesis
> patch which can be controlled by OSC through IRC and a bot
> listening on
> a chatroom there. It has been up for the past 3-4 months non-stop and
> with no maintenance within the University of Sheffield intranet.
>
> My initial experiment was to run PD through Jack and use Darkice. I'd
> patch the PD outputs to the Darkice inputs, which would then stream to
> the Icecast server. It didn't seem to be as stable though and it was
> more CPU-heavy than mp3cast~. I initially tried to do that cause I
> wanted to use other software apart from PD, but I ended up
> scripting the
> rest of the software and get their output in PD, which would pipe the
> output directly to the Icecast server. I didn't use a dac~ or jack,
> saving a lot of CPU resources.
>
> Any comments welcome, I'm still interested in hearing about ways other
> people do similar things.
>
> Take care,
>
> Ilias
>
> ___
> 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] error in creating gemwin in fc8

2008-11-30 Thread IOhannes m zmoelnig
Jaime Oliver wrote:
> Hello all,
> 
> After installing recordmydesktop and Mplayer, and adding support for mpeg3,
> Quicktime and ffmpeg, then recompiling gem, i get the following error
> everytime I try to create a Gemwin:
> 
> on the terminal:
> 
> Xlib:  extension "GLX" missing on display ":0.0".
> Xlib:  extension "GLX" missing on display ":0.0".

well, it seems like your Xserver is missing the GLX (openGL for X) 
extensions. since Gem highly depends on openGL, it refuses to continue...

which driver are you using? probably your Xorg.conf needs tweaking.

do other openGL apps work? a good start is glxgears (if this doesn't 
work, chances are minimal to non-existant that Gem will...)

> 
> Any help will be appreciated.

if glxgears do work, try setting the environmental variable 
GEM_SINGLE_CONTEXT to 1. (setting this variable can be considered the 
first voodoo to do when problems occur)

mgdsft
IOhannes

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