Hi, I've got some 1080i 25fps x264 videos that I'm trying to convert to 720p 59.94 fps x264 using MeGUI 2836, Avisynth 2.6 with the Avisynth SVPflow 4.2.0.142 dll files and the Interframe script here: http://www.spirton.com/interframe/.
My script does this fine and I can encode several files but every couple of days all my encodings crash with 2 seconds remaining encoding time! Technically it doesn't crash but the Status window is frozen. I looked at Task Manager and the x264 processes aren't there and the CPU usage is zero. The jobs still show as "Processing" in MeGUI. I looked in the MeGUI intermediate folders and the ".264" file size isn't zero which means that the encoding has indeed finished. I muxed the finished files manually and they were complete. I have a 16 core CPU and I encode 6 videos at once. I don't get crashes when NOT using SVP.
Here's my Avisynth script (I'm NOT using Avisynth MT):
<input>
AssumeTFF()
Spline36Resize(1280,1080)
Yadif(mode=1, order=1)
Spline36Resize(1280,720)
InterFrame(GPU=false, Tuning="Smooth", OverrideAlgo=13, Cores=1)
I don't use the GPU as it gives picture glitches.
Can you help please. Thanks