Cinelerra can compress to h.264; it's one of the rendering options.
Whether it actually works, and is stable, I don't know.
I am using it daily, I am exporting to a y4m stream into a x264 script.. it works really well.

#/bin/bash
file=$1.264
mkfifo fifo.y4m
x264  --sar 1:1 -m 6 --b-rdo --me umh --bime -b 4 --b-pyramid \
--bitrate 38500  -w -8 --threads 2 -o $file fifo.y4m  &
sleep 0.5
cat /dev/stdin  > fifo.y4m
rm fifo.y4m


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

Reply via email to