If this is my final avisynth script for encoding in either XviD or Mpeg-1/2...The optimal scenario involves only 2 colorspace conversions:
1) - MPEG2 from DVD in YV12, processed with Avisynth in YV12 and then converted to RGB32 ready for editing.
2) - RGB export from editing program using Huffyuv in RGB mode and then converted to YV12 ready for the final video compressor.
AVISource("C:/folder/file.avi")
ConvertToYV12() <-(?)
AssumeFPS(23.976)
Crop(8, 0, -8, -0)
LanczosResize(512, 384)
...do I still need to convert the colorspace even if I am not doing any filtering? Do encoders like XviD and TEMPGEnc only work in YV12 colorspace? All my filtering was done in Pre-Processing.
