CruNcher
8th May 2010, 14:40
Is Directshowsource broken with LoadVirtualDubPlugin ?
if i do
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=directshowsource("preview_high.wmv")
clip.Spline16Resize(1280,720).ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
nothing happens to the output it takes longer as it would do something but the result is the same as if you would do clip.Spline16Resize(1280,720).ConvertToRGB32.ConvertToYV12
only, as if the VirtualDub filter wouldn't process the frames @ all ????
this works properly
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=avisource("spline16resize.avi") <- created via directshowsource before :P
clip.ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
im using SEts MT 2.5.8 build without MT here
It gets stranger it even doesn't work using directshowsource as input over TCPsource the Final result is always different (no visible sharpening)
I tried now
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=FFVideoSource("preview_high.wmv")
clip.Spline16Resize(1280,720).ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
and
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=dss2("preview_high.wmv")
clip.Spline16Resize(1280,720).ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
both result in the identical sharpened output as with avisource so only directshowsource() doesn't work properly here
if i do
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=directshowsource("preview_high.wmv")
clip.Spline16Resize(1280,720).ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
nothing happens to the output it takes longer as it would do something but the result is the same as if you would do clip.Spline16Resize(1280,720).ConvertToRGB32.ConvertToYV12
only, as if the VirtualDub filter wouldn't process the frames @ all ????
this works properly
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=avisource("spline16resize.avi") <- created via directshowsource before :P
clip.ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
im using SEts MT 2.5.8 build without MT here
It gets stranger it even doesn't work using directshowsource as input over TCPsource the Final result is always different (no visible sharpening)
I tried now
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=FFVideoSource("preview_high.wmv")
clip.Spline16Resize(1280,720).ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
and
LoadVirtualDubPlugin("C:\Programme\Video\virtualdub\plugins\msu_sharpen.vdf","MSUSmartSharpen", 0)
clip=dss2("preview_high.wmv")
clip.Spline16Resize(1280,720).ConvertToRGB32.MSUSmartSharpen(0).ConvertToYV12
both result in the identical sharpened output as with avisource so only directshowsource() doesn't work properly here