I have two source AVIs that I'm trying to edit with, when they're in Premiere themselves there is NO video in the preview whatsoever, just blackness.
However, when I swap in the AVS script that points to the same video, the video appears in Premiere, but there's a problem.
The ins and outs of the video are messed up, so I end up with scenes that weren't in the timeline when I was editing with the mjpegs. The ins and outs are altered in premiere when I swap the mjpegs to the AVS scripts.
Aside from messing the timing/footage and stuff up, I also get wonky shit like this happening every so often.
Here are the scripts I'm using. I tried changing the scripts to pretty much bare bones (nothing but the lanczosresize) and I tried swapping AVIsource with Directshowsource, but neither helped.
Code: Select all
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\deen.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\masktools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\awarpsharp.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\SharpTools-v0-1.3.avsi")
Import("C:\Program Files\AviSynth 2.5\plugins\fastlinedarken.avsi")
AVIsource("C:\Documents and Settings\Jeff\Desktop\1\Source1.avi")
ConvertToYV12()
Telecide(post=4, order=1, guide=1)
Decimate(quality=3)
lanczosresize (640,480)
deen ("a3d",3,3,5,4)
fastlinedarken()
awarpsharp()
ConvertToRGB32()
Code: Select all
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\deen.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\masktools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\awarpsharp.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\SharpTools-v0-1.3.avsi")
Import("C:\Program Files\AviSynth 2.5\plugins\fastlinedarken.avsi")
AVIsource("C:\Documents and Settings\Jeff\Desktop\1\Source2.avi")
ConvertToYV12()
crop (0,60,-0,-60)
lanczosresize (640,480)
deen ("a3d",3,3,5,4)
fastlinedarken()
awarpsharp()
ConvertToRGB32()