BabaG
11th October 2013, 22:25
i'm trying to transcode video for blu-ray playback as art installations. for legal purposes i'll state up front that the material is all original. with some much appreciated help from the forum here i've gotten to the point where i can make x264 files that adobe encore accepts without the necessity of transcoding. the problem i'm having now, though, is that there are noticable differences in the x264 relative to the original. while it looks very good, the x264 appears noticably lighter than the master. here's what i've been doing to get to where things are now. i should state that i'm on a mac, btw.
1. start with uncompressed masters. these are made in final cut pro as uncompressed 10 bit 4:2:2 mov files
2. from these i use ffmbc to make proreshq 16x9 dupes also as mov files. i do this because encore seems to only accept the x264 without re-transcoding if it's in 16x9.
3. i use x264 in a virtual linux machine to transcode the proreshq to x264. apparently there is a mac or quicktime bug that precludes using osx from the x264 process.
4. in a nutshell: uncomp 10 bit 422 ---> proreshq 422 ---> x264
the commands i use to perform the x264 encode are here:
for i in *.mov; do /
x264 --bluray-compat --bitrate 22000 --preset veryslow --tune film --weightp 0 /
--bframes 3 --nal-hrd vbr --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 /
--fps 24000/1001 --keyint 24 --b-pyramid strict --slices 4 --aud --colorprim "bt709" /
--transfer "bt709" --colormatrix "bt709" --sar 1:1 --ref 4 --qpmin 4 --pass 1 /
-o `basename $i .mov`.264 $i /
&& /
x264 --bluray-compat --bitrate 22000 --preset veryslow --tune film --weightp 0 /
--bframes 3 --nal-hrd vbr --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 /
--fps 24000/1001 --keyint 24 --b-pyramid strict --slices 4 --aud --colorprim "bt709" /
--transfer "bt709" --colormatrix "bt709" --sar 1:1 --ref 4 --qpmin 4 --pass 2 /
-o `basename $i .mov`.264 $i; done
can i use x264 to adjust the brightness and contrast of the output?
would this be better done at an earlier step?
the uncompressed and proreshq appear very close in quality to the eye. it's the x264 that seems light. one thing i notice in the process is that i get a warning that 4:2:2 is being converted to 4:2:0 while running my x264 script and i'm guessing that this could be a major contributor to, if not the source, of the lightness issue. i'm anything but an engineer, here, so, while i'm very pleased with having gotten this far with all of this, i know i'm well out of my areas of expertise. any suggestions for a better workflow or ways to address the lightness issue are much appreciated. i can supply still frames for comparison if that seems necessary.
thanks,
BabaG
1. start with uncompressed masters. these are made in final cut pro as uncompressed 10 bit 4:2:2 mov files
2. from these i use ffmbc to make proreshq 16x9 dupes also as mov files. i do this because encore seems to only accept the x264 without re-transcoding if it's in 16x9.
3. i use x264 in a virtual linux machine to transcode the proreshq to x264. apparently there is a mac or quicktime bug that precludes using osx from the x264 process.
4. in a nutshell: uncomp 10 bit 422 ---> proreshq 422 ---> x264
the commands i use to perform the x264 encode are here:
for i in *.mov; do /
x264 --bluray-compat --bitrate 22000 --preset veryslow --tune film --weightp 0 /
--bframes 3 --nal-hrd vbr --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 /
--fps 24000/1001 --keyint 24 --b-pyramid strict --slices 4 --aud --colorprim "bt709" /
--transfer "bt709" --colormatrix "bt709" --sar 1:1 --ref 4 --qpmin 4 --pass 1 /
-o `basename $i .mov`.264 $i /
&& /
x264 --bluray-compat --bitrate 22000 --preset veryslow --tune film --weightp 0 /
--bframes 3 --nal-hrd vbr --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 /
--fps 24000/1001 --keyint 24 --b-pyramid strict --slices 4 --aud --colorprim "bt709" /
--transfer "bt709" --colormatrix "bt709" --sar 1:1 --ref 4 --qpmin 4 --pass 2 /
-o `basename $i .mov`.264 $i; done
can i use x264 to adjust the brightness and contrast of the output?
would this be better done at an earlier step?
the uncompressed and proreshq appear very close in quality to the eye. it's the x264 that seems light. one thing i notice in the process is that i get a warning that 4:2:2 is being converted to 4:2:0 while running my x264 script and i'm guessing that this could be a major contributor to, if not the source, of the lightness issue. i'm anything but an engineer, here, so, while i'm very pleased with having gotten this far with all of this, i know i'm well out of my areas of expertise. any suggestions for a better workflow or ways to address the lightness issue are much appreciated. i can supply still frames for comparison if that seems necessary.
thanks,
BabaG