На Fri, 19 Oct 2007 15:01:23 +1300
E Chalaron <[EMAIL PROTECTED]> записано:

> Thanks for that ,  in the meantime I came to write :
> 
> #/bin/bash
> fichier=$1.mkv
> x264  --sar 1:1 -m 6 --b-rdo --me umh --bime -b 4 --b-pyramid --qp 5
> -w -8 --threads 2 -o $fichier - 1396x1036
> 
> I use by calling the script in the pipe for y4mstream rendering and
> it should spit out a mkv file.
> 
> However the file is giving me psycho colors etc... probably a wrong 
> color space.
> My data being in 422 uncompressed data.
> I used then a y4mscaler -o chromass=420mpeg2 without much success.
> 
> Any recommandation ? Thanks a lot

try this:

#/bin/bash
fichier=$1.mkv
mkfifo stream.y4m
x264  --sar 1:1 -m 6 --b-rdo --me umh --bime -b 4 --b-pyramid \
--qp 5 -w -8 --threads 2 -o $fichier stream.y4m  &
sleep 0.5
cat /dev/stdin  > stream.y4m 
rm stream.y4m


-- 
Птн Окт 19 10:48:54 KRAST 2007
Fri Oct 19 02:48:54 UTC 2007
----------------------------------
Visit my home page http://www.akhil.nm.ru
(Last update at 14th Oct 08:04)
----------------------------------
jabber: [EMAIL PROTECTED]
----------------------------------
Позволь эмоциям быть твоей энергией на пути в бесконечность.
Ахметгалеев Ильдар aka AkhIL
----------------------------------
Linux artstation 2.6.22-gentoo-r2 #4 PREEMPT Sat Sep 1 09:01:09 KRAST
2007 i686 AMD Athlon(tm) XP 2500+ AuthenticAMD GNU/Linux up 43 days,
23:03, 25 users,  load average: 0.11, 1.13, 1.95

_______________________________________________
Cinelerra mailing list
[email protected]
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

Reply via email to