HOME | 1. Extracting | 2. DGIndex | 3. Avisynth script | 4. Encoding with MeGUI | 5. Muxing | Finding the best CRF value
3. Write the Avisynth script
Create a new text file.
Copy/paste in this file:
MPEG2Source("encode.d2v",cpu=0)
AssumeTFF()
yadifmod(mode=1, edeint=nnedi2(field=-2))
Crop(0,0,-0,-0)
*about AssumeTFF(): it could be AssumeBFF() instead, depending on your file (T for top frame first, B for bottom frame first)
we'll see about that later
Save your file as encode.avs (or whetever name you want).