Bonjour Haldun

Regarding exporting why not using x264 directly through a yuv4mpegpipe ? then rendering AC3 separatley and eventually muxing them together with Gpac ?
Careful about the rec 709 gamut, not sure how cinelerra handles it though

I think there is a need for a modified REC601 plugin here
(mais là c'est juste moi hein ... je dis ça, je dis rien....)


#/bin/bash
fichier=$1.264
mkfifo $1.y4m
x264 --tune film --preset fast --level 4.1 --sar 1:1 --slices 4 --b-pyramid strict --aud --bframes 3 --keyint 24\ --bitrate 25000 --vbv-maxrate 40000 --vbv-bufsize 30000 --aq-mode 2 --threads 2 --colorprim bt709\
 --transfer bt709 --colormatrix bt709 -o  $fichier $1.y4m &
sleep 0.5
cat /dev/stdin > $1.y4m
rm $1.y4m

Then export AC3

and use Gpac ...

#!/bin/bash
IFS=$(echo -e "\n\r\t")
for nom in $(ls *.264) ; do
        echo "Traitement de ${nom}"
MP4Box -add "${nom}" -add "$(basename ${nom} .264).ac3" "$(basename ${nom} .264).mp4"
done

Et voilà ...
Edouard



On 03/13/2012 05:46 AM, Haldun ALTAN wrote:
Hello,

Does anybody knows why cinelerra renders container quicktime for linux /
MJPEG A in 1920x540 instead off 1920x1080, the original setting format ?

It's the same thing with rushes en mjpeg or DNXHD (originals are in
h264/AVC)

Is there any way to fix it ? (1920x1080)

What is the best render option for HD vidéo 1920x1080 before compressing
them into mp4 ?

I'm on ubuntu studio 10,04x64

Thanks in adavance

Haldun.

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


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

Reply via email to