Micheal
this is the script (render_AVCHD) I am using for rendering a h264 file
then mux it with MP4BOX to obtain a bluray compatible file.
The bt709 is the gamut for bluray.
http://en.wikipedia.org/wiki/Rec._709
#/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
How to use it :
give it a 755 and put it in your /usr/local/bin then run ldconfig
Export the audio first as a AC3 file
Export the video through a yuv4mpegpipe and write down a command line
such as : render_AVCHD %
Long project ? leave it overnight.
Once you get your files masterpiece.ac3 masterpiece.264, mux them with
mp4box
MP4Box -add masterpiece.ac3 -add masterpiece.264 masterpiece.mp4
Caution : you need to remove the result if you want to remux it for
whatever reason.
Cheers
Edouard
_______________________________________________
Cinelerra mailing list
[email protected]
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra