This is probably an esoteric question, so hats off to anyone who can confidently answer one way or another!
Here is my problem. I am frameserving out of PPro using Debugmode Framserver which gives me the option of outputting the video stream as either RGB24, RGB32, or YUY2. I select YUY2. From here I process the signpost.avi in AVIsynth and encode using x264. Here is my uber simple AVS script that works flawlessly from what I can tell:
However, I have noticed that I can leave the ConvertToYV12 line out, and x264 proceeds but with the following "warnings"Code:AVISource("E:\signpost.avi", audio=false).AssumeFPS(30000,1001) ConvertToYV12()
So, my question is whether it is preferable to let AVIsynth do the color conversion? or let x264? or does it not matter?Code:resize [warning]: converting from yuyv422 to yuv422p resize [warning]: converting from yuv422p to yuv420p
+ Reply to Thread
Results 1 to 3 of 3
-
-
If it's progressive YUY2, you will get identical results and it won't matter. x264 will use bicubic kernal with swscale, ConvertToYV12() with default settings will use bicubic kernal. Letting x264 do it might be very slightly slower, because it might be re-arranging the 422 plane arrangement before converting to 420
You would want to use avisynth when you need more control over something. For example if you needed Rec709 matrix when converting from RGB, or interlaced conversion, or maybe you wanted to use other chroma sampling algorithms or placements
Similar Threads
-
Color loss after video conversion
By cnaeus in forum Video ConversionReplies: 18Last Post: 16th Jan 2015, 02:18 -
how can i switching the highest color with draft color in premiere cs5 ?
By m6gpower in forum EditingReplies: 0Last Post: 3rd Mar 2014, 03:32 -
Losing color quality after conversion
By vain in forum Newbie / General discussionsReplies: 12Last Post: 10th Feb 2012, 17:05 -
Chroma/Color Bleed Issues In MPEG2-->XviD Conversion
By onesikgypo in forum Video ConversionReplies: 8Last Post: 25th Jun 2011, 21:11 -
color management problem in .mov conversion
By ubik74 in forum Video ConversionReplies: 7Last Post: 8th Jul 2010, 10:43