[PD] encoder for gem question

2009-06-25 Thread budi prakosa
hello, what is the lightest video encoder to be used on gem pix_film under
windows?

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


Re: [PD] [PD-announce] Tutorial: Drum pattern editing in Pd using the rj library

2009-06-25 Thread Frank Barknecht
Hallo,
Rich E hat gesagt: // Rich E wrote:

 Ah nice, especially for throwing that together live.  Thanks for the
 tutorial!
 
 Not to be too much of a critic on a good tutorial, but... it is quite static
 though, for the flexibility of pd, don't you think?  Limiting all the
 rhythms to 32nd notes.  Frank, I would love to see your approach to creating
 a more 'dynamic' drum sequencer.  I have tried a couple times now and my
 current one got too complicated quite fast.  Yet, I see it as the main
 benefit for using pd for sequencing over other midi sequencers - there is no
 limit for beat segmentations. 

The g_pattern32 object was designed with traditional
pop/rock/dance/house/hihop/whatever music in mind. (Btw. the latest version
added to the RjDj svn now includes a tiny bit of keyboard support: press t
for toggling a step during the first second after selecting it.)

But in the end it's just a little sugar coating for a Pd array hopefully making
editing arrays graphically a bit less painful but still fast. The table itself
can be used as source material for other tasks as well, e.g.  as a probability
table etc. 

It would be possible to make a variation of the object where you can resize the
array dynamically, use a number box to select steps to edit etc., but as you
have seen yourself: It becomes complicated quite fast, which may be a sign that
there is no good general approach to editing free form table data and that it
may be better to do that in external software like a midi file editor or a
spreadsheet. Or that editing it is wrong altogether and instead some
algorithmic procedure should be used ...

Ciao
-- 
Frank

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


Re: [PD] encoder for gem question

2009-06-25 Thread IOhannes m zmoelnig

budi prakosa wrote:

hello, what is the lightest video encoder to be used on gem pix_film under
windows?



depends on what you mean by lightest.


fgmsdar
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] Does a function like [gate] exist for audio signals?

2009-06-25 Thread IOhannes m zmoelnig

Gabriel Vinazza wrote:

Thanks a lot lOhannes !!

I wish there was any help or list about ALL the objects availables...


ah, and i wish there was a list of ALL people on the world...


you can get a list of pretty _all_ Pd-vanilla objects by right-clicking 
on an empty canvas and selecting help.


however, Pd is a dynamic growing system. even while projects like 
Pd-extended try to catch a good number of portable and working objects 
available in the wild, it has no real control over the actual objects.
if devA decides to add [aobject] it will just show up in the next 
Pd-extended release without anybody in charge of Pd-extended noticing 
(this is a good thing); likewise if devB removed [bobject], it will just 
be gone with anybody noticing it. this makes it very hard to compile a 
list of all objects in Pd-extended manually (though there are such 
projects like the one mentioned by derek or pdpedia)
one could generate a list of these objects automatically, but usually 
this wouldn't help you su much (imagine you knew that there exists an 
object named [morzelpronk]; but what would it do?)



because Pd shows only the most commons on the Help section.


luckily [*~] is a very common object, so you could have know about it :-)



mfgasd.r
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


[PD] encoding tif sequence (GEM pix_write) on linux

2009-06-25 Thread CICCOLIX

Hi,
I tried different solution to create movies from Gem generated tif 
sequences.
The simplest way i found is based on use of the transcode command line 
program.


I would like to share my notes, some command line, to help (maybe) others.



Encode with transcode (a linux commandline tool) a tif sequence 
generated from GEM [pix_write]


1) set pix_write to put all tif (max quality) in a folder and start record

|file ./myfolder/mybasename 00(
|
[pix_write]

2) close pd
3) open a terminal, cd in the folder and create a textfile with the list 
of tif


cd myfolder
find . -type f -name '*.tif' | sort  filelist

4) encode with transcode: some setting:

- using ffmpeg with mjpeg compression (loss result)

transcode --use_rgb -i filelist  -y ffmpeg=RGB,null -F mjpeg  -o 
od_ffmpeg_mjpeg_25fk.mov --export_fps 25,3 -z -g 720x576 -x 
imlist=RGB,null --hard_fps -k


- using the same compression invoking quicktime for linux (same result)

transcode  -i filelist  -y mov=RGB,null -F ffmpeg_mjpg  -o 
od_mov_ffmpeg_mjpg.mov --export_fps 25,3 -g 720x576 -x imlist=RGB,null 
--hard_fps --use_rgb


- the same but dv compression (better result)

transcode  -i filelist  -y mov=RGB,null -F ffmpeg_dv_pal  -o 
od_mov_ffmpeg_pal.mov --export_fps 25,3 -g 720x576 -x imlist=RGB,null 
--hard_fps --use_rgb


- compression dv (no ffmpeg)

transcode  -i filelist  -y mov=RGB,null -F dv_pal  -o od_mov_dv_pal.mov 
--export_fps 25,3 -g 720x576 -x imlist=RGB,null --hard_fps --use_rgb


- compressiond dv (without qt)

transcode  -i filelist  -y dv=RGB,null  -o od_dv.mov --export_fps 25,3 
-g 720x576 -x imlist=RGB,null --hard_fps --use_rgb


- xvid compression (default xvid settings)

transcode  -i filelist  -y xvid4=RGB,null  -o od_xvid.mov --export_fps 
25,3 -g 720x576 -x imlist=RGB,null --hard_fps --use_rgb -k



Note: some command line require the -k option that swap the rgb value, 
some others require the -z option that flip the result



hope help
--
Lazzaro

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


Re: [PD] encoding tif sequence (GEM pix_write) on linux

2009-06-25 Thread cyrille henry

hello,

here are the command line i use : 


ffmpeg -r 50 -s 1024x768 -i /data/rec_chdh/rec_%08d0.jpg  -vcodec copy -i 
/data/rec_chdh.wav -acodec copy /data/copy.avi

this make uncompressed (very big) file (50fps / 1024x768)



/home/nusmuk/soft/ffmpeg/ffmpeg -i /data/copy.avi -vcodec libx264 -s 640x480 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4  -b 
5000k -acodec libfaac -ab 384K -title titre -album live -year 2009 -author 
chdh titre.mp4

change bitrate to have the desired file size

you have to recompile ffmpeg with h264 support, but it worth it.

c


CICCOLIX a écrit :

Hi,
I tried different solution to create movies from Gem generated tif 
sequences.
The simplest way i found is based on use of the transcode command line 
program.


I would like to share my notes, some command line, to help (maybe) others.



Encode with transcode (a linux commandline tool) a tif sequence 
generated from GEM [pix_write]


1) set pix_write to put all tif (max quality) in a folder and start record

|file ./myfolder/mybasename 00(
|
[pix_write]

2) close pd
3) open a terminal, cd in the folder and create a textfile with the list 
of tif


cd myfolder
find . -type f -name '*.tif' | sort  filelist

4) encode with transcode: some setting:

- using ffmpeg with mjpeg compression (loss result)

transcode --use_rgb -i filelist  -y ffmpeg=RGB,null -F mjpeg  -o 
od_ffmpeg_mjpeg_25fk.mov --export_fps 25,3 -z -g 720x576 -x 
imlist=RGB,null --hard_fps -k


- using the same compression invoking quicktime for linux (same result)

transcode  -i filelist  -y mov=RGB,null -F ffmpeg_mjpg  -o 
od_mov_ffmpeg_mjpg.mov --export_fps 25,3 -g 720x576 -x imlist=RGB,null 
--hard_fps --use_rgb


- the same but dv compression (better result)

transcode  -i filelist  -y mov=RGB,null -F ffmpeg_dv_pal  -o 
od_mov_ffmpeg_pal.mov --export_fps 25,3 -g 720x576 -x imlist=RGB,null 
--hard_fps --use_rgb


- compression dv (no ffmpeg)

transcode  -i filelist  -y mov=RGB,null -F dv_pal  -o od_mov_dv_pal.mov 
--export_fps 25,3 -g 720x576 -x imlist=RGB,null --hard_fps --use_rgb


- compressiond dv (without qt)

transcode  -i filelist  -y dv=RGB,null  -o od_dv.mov --export_fps 25,3 
-g 720x576 -x imlist=RGB,null --hard_fps --use_rgb


- xvid compression (default xvid settings)

transcode  -i filelist  -y xvid4=RGB,null  -o od_xvid.mov --export_fps 
25,3 -g 720x576 -x imlist=RGB,null --hard_fps --use_rgb -k



Note: some command line require the -k option that swap the rgb value, 
some others require the -z option that flip the result



hope help
--
Lazzaro

___
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] encoding tif sequence (GEM pix_write) on linux

2009-06-25 Thread Claude Heiland-Allen

CICCOLIX wrote:
 Hi,
 I tried different solution to create movies from Gem generated tif
 sequences.

[snip]

Here's my post-render workflow:

input: rec/*.tif rec.wav

phase0: convert to png
  mkdir png
  cd rec
  find -iname *.tif -exec convert {} ../png/{}.png \;
  cd ..

phase1: lofi ogg
  ffmpeg2theora -p videobin -f image2 png/%08d.tif.png -o rec-v-ld.ogg
  oggenc -b 96 -o rec-a-ld.ogg rec.wav
  oggz-merge -o rec-ld.ogg rec-v-ld.ogg rec-a-ld.ogg

phase2: hifi ogg
  ffmpeg2theora -f image2 png/%08d.tif.png -o rec-v-hd.ogg
  oggenc -b 192 -o rec-a-hd.ogg rec.wav
  oggz-merge -o rec-hd.ogg rec-v-hd.ogg rec-a-hd.ogg

phase3: dvd mpeg
  ffmpeg -f image2 -i png/%08d.tif.png \
-pix_fmt yuv444p -f yuv4mpegpipe - |
  y4mscaler -I sar=1/1 -I bg=RGB:255,255,255 \
-O preset=dvd_wide -O bg=RGB:255,255,255 |
  mpeg2enc -f 8 -q 2 -b 8000 -o rec-v-dvd.m2v
  twolame -b 224 rec.wav rec-a-dvd.mp2
  mplex -f 8 -V -o rec-dvd.mpeg rec-v-dvd.m2v rec-a-dvd.mp2

phase4: lossless archive
  tar --create --owner=0 --group=0 --gzip --file png.tar.gz png/
  flac --best --verify rec.wav


notes:
  /usr/bin/oggz-merge used to be called /usr/bin/oggzmerge
  ffmpeg* probably supports tif directly, maybe it'd be quicker...


Claude
--
http://claudiusmaximus.goto10.org

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


Re: [PD] encoder for gem question

2009-06-25 Thread chris clepper
I recommend downloading FFDShow, the FFMPEG codecs for DirectShow, and
testing with that.  The lightest CPU load will probably be the Motion or
Photo JPEG codec or DV.

On Thu, Jun 25, 2009 at 3:43 AM, budi prakosa i...@deadmediafm.org wrote:

 hello, what is the lightest video encoder to be used on gem pix_film under
 windows?

 thanks

 ___
 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] searching help about fluid~

2009-06-25 Thread Andres Ferrari


I could not compile fluid ~. pd_darwin with the sources that I asked.

You know how I can to compile fluid for leopard-intel? 
Where can I get sources for intel? 

I already tried with fluidsynth but not work for me, and apparently fluidsynth 
compile the external
only for linux. 

I am desperate, because in all my musical works I use 
~ fluid and now that I changed to Intel I dont´have it I need this external 
a lot

please help me!!!


If anyone has sources or compiled for intel fluid or has the knowledge to do 
that please help me.

thanks

Andrés Ferrari G.



  

¡Obtén la mejor experiencia en la web!
Descarga gratis el nuevo Internet Explorer 8. 
http://downloads.yahoo.com/ieak8/?l=e1


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


Re: [PD] searching help about fluid~

2009-06-25 Thread Amos Robinson
I don't have access to a Leopard box at the moment, but I might be
able to help if you post the compiler errors?

Thanks,
Amos Robinson

On Fri, Jun 26, 2009 at 6:32 AM, Andres Ferrarian...@yahoo.com wrote:


 I could not compile fluid ~. pd_darwin with the sources that I asked.

 You know how I can to compile fluid for leopard-intel?
 Where can I get sources for intel?

 I already tried with fluidsynth but not work for me, and apparently 
 fluidsynth compile the external
 only for linux.

 I am desperate, because in all my musical works I use
 ~ fluid and now that I changed to Intel I dont´have it I need this 
 external a lot

 please help me!!!


 If anyone has sources or compiled for intel fluid or has the knowledge to do 
 that please help me.

 thanks

 Andrés Ferrari G.



      
 
 ¡Obtén la mejor experiencia en la web!
 Descarga gratis el nuevo Internet Explorer 8.
 http://downloads.yahoo.com/ieak8/?l=e1


 ___
 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] move cursor position

2009-06-25 Thread Shawn Greenlee

hi folks,

is there a pd command to force a cursor to a new position?

a message something like:

; cursor
 x_coordinate y_coordinate

for instance I can do this in Max with a Max command:

; max
pupdate 400 500


thanks,
shawn


Shawn Greenlee
http://greenlee.02909.com
s...@02909.com





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


Re: [PD] PTP/libgphoto in PD?

2009-06-25 Thread B. Bogart
Hey all,

I have a draft in SVN under bbogart.

I've so far just used it to control cameras and save files on the host
computer, not upload files.

What is your friend hoping to do with it?

In my last installation I realized I need to change the interface a bit,
using a commport like open and close between control messages. So
the next changes I make will not be patch compatible with what is
currently in SVN.

Please do let me know your thoughts.

.b.

Alex wrote:
 Hey, so I'm wondering if anyone got a libgphoto2 extension made or got
 it working from python in pd?  I've got a friend who's wanting to do
 some of this sort of stuff with PD..
 
 -Alex
 
 On Mon, Feb 9, 2009 at 10:59 AM, Michal Setam...@artengine.ca wrote:
 Hey Ben,

 I have actually started being interested in this.  I have not done any
 work yet nor extensive research but there seem to be libgphoto2
 bindings for python (I do a  bit of python scripting in pd already for
 the same project).  So, if there's nothing yet available and you don't
 mind python, I would be interested in joining forces.

 Cheers.

 ./MiS

 On Fri, Feb 6, 2009 at 5:43 PM, B. Bogart b...@ekran.org wrote:
 Hey all,

 Has anyone explored, or implemented a PD object to control digital
 cameras via USB? In particular using libgphoto.

 I just wanted to throw it out before I begin work on the task myself.

 .b.

 ___
 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-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list