View Single Post
Old 21st August 2017, 22:05   #39  |  Link
MysteryX
Soul Architect
 
MysteryX's Avatar
 
Join Date: Apr 2014
Posts: 2,559
Interesting bug.

This freezes when opening in VirtualDub. Later on I ran this through the encoder and it went just fine...
Code:
file="Video.mp4"
LWLibavVideoSource(file, cache=False)
ConvertBits(16).MClean(rn=10).ConvertBits(8, dither=0)
Prefetch(8)
This works.
Code:
ColorBarsHD()
ConvertBits(16).MClean(rn=10).ConvertBits(8, dither=0)
Prefetch(8)
This also works.
Code:
file="Video.mp4"
LWLibavVideoSource(file, cache=False)
MClean(rn=10)
Prefetch(8)
Importing in this way still gives "wrong pixel type"
Code:
Pref=AviSource("PreviewPref.avs")
FrameRateConverter(NewNum=60, NewDen=1, Prefilter=Pref)
You're however able to run the prefilter as a first pass as an AVI file and then use that as a source for the 2nd pass. Not ideal but at least we can try and compare quality. Then you're also able to use Preset="slower".

Last edited by MysteryX; 21st August 2017 at 22:33.
MysteryX is offline   Reply With Quote