Does anybody have any idea as to why I can process a lucky star episode with this AVS script:
- Code: Select all
Setmemorymax(512)
SetMTMode(3,4)
LoadPlugin("C:\Program Files (x86)\AviSynth\plugins\svpflow1.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth\plugins\svpflow2.dll")
Import("C:\Program Files (x86)\AviSynth\plugins\InterFrame2.avsi")
FFmpegSource2("input.mkv").ConvertToYV12()
SetMTMode(2)
v = InterFrame(Cores=4, GPU=True, Tuning="Animation")
a = FFAudioSource("input.mkv")
AudioDub(v, a)
??.and it'll come out looking almost perfect. In fact I can play it back in realtime as tuning="animation" just seems to make it that much faster.
Whereas if I put any Shingeki no Kyojin episode into the script, the sides of the frames "jiggle around" is the best way I can describe it. I'll post a screenshot if needed. During the panning scenes in particular the edges of the frame just.?? mess up in general.
Here is the original MKV info for each file:
Shingeki no Kyojin:
Spoiler :
Lucky Star:
Spoiler :
The only thing I can think of is the bizarre framerate the SnK file has, but this shouldn't affect it. My other theory is the art style and colours used in SnK are a lot different, but I don't see why it would cause the problems it has when panning. Another thing, I managed to fix the problem by removing tuning="Animation" but while this makes the whole thing better in general, it makes the motion prediction absolutely AWFUL on individual characters. Which isn't very good with the fast moving scenes involved in SnK.
Thanks in advance if anyone can help!
Squid~

