This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

[HELP] Avisynth - DeSpot question
#6
Looking at the used Avisynth script:
ClearAutoloadDirs()
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\LSMASHSource.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\RgTools.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\masktools2.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\mvtools2.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\nnedi3.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\TIVTC.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\Average.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\GRunT.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\MedianBlur2.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\despot.dll")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\mtmodes.avsi")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\QTGMC.avsi")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\Zs_RF_Shared.avsi")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\Srestore.avsi")
# loading source: M:\Tanya-IN\Apocalypse Sexual_SpainVH-ACEtbc.mov
# color sampling YV12@8, matrix: bt601, scantyp: bottom field first, luminance scale: limited
LWLibavVideoSource("M:\Tanya-IN\Apocalypse Sexual_SpainVH-ACEtbc.mov",cache=false,dr=true,format="YUV420P8", prefer_hw=0)
# current resolution: 720x576
# deinterlacing
AssumeBFF()
QTGMC(Preset="Faster", ediThreads=2)
# removing ghosting
srestore(frate=25.000,omode=6)
Preroll(Int(last.FrameRate()))
# despotting using DeSpot
DeSpot(median=false,sign=-2,interlaced=false)
# scaling to 768x576
Spline36Resize(768,576)
# Converting from 8 to 10bit for encoder
ConvertBits(10)
# adjust color to YV16 (color matrix: Rec601)
ConvertToYUV422()
# setting output fps to 25.000fps
AssumeFPS(25,1)
#  output: color sampling YV12@10, matrix: bt601, scantyp: progressive, luminance scale: limited
return last
There should be no interlacing.
The encoding call:
ffmpeg_32 -y -noautorotate -nostdin -threads 8 -i "M:\Tanya-TEMP\encodingTempSynthSkript_2023-10-17@17_38_47_8410_0.avs" -an -sn -vf  scale=in_range=tv:out_range=tv -pix_fmt yuv422p10le -strict -1 -vsync 0  -vcodec prores_ks -profile:v 2 -vtag apcn -metadata encoding_tool="Hybrid 2023.10.17.1" -aspect 768:576 -f mov "M:\Tanya-TEMP\Apocalypse Sexual_SpainVH-ACEtbc_1_2023-10-17@17_38_47_8410_04.mov"
looks fine too. (Will look at why the '#output ...'-comment shows the wrong info in the Avisynth script tomorrow, this is just a comment and won't change anything.)

Trying to reproduce this with:
ClearAutoloadDirs()
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\DGDecode.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\RgTools.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\masktools2.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\mvtools2.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\nnedi3.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\TIVTC.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\Average.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\GRunT.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\MedianBlur2.dll")
LoadPlugin("F:\Hybrid\32bit\avisynthPlugins\despot.dll")
Import("F:\Hybrid\32bit\avisynthPlugins\mtmodes.avsi")
Import("F:\Hybrid\32bit\avisynthPlugins\QTGMC.avsi")
Import("F:\Hybrid\32bit\avisynthPlugins\Zs_RF_Shared.avsi")
Import("F:\Hybrid\32bit\avisynthPlugins\Srestore.avsi")
# loading source: G:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\bff.m2v
# color sampling YV12@8, matrix: bt601, scantyp: bottom field first, luminance scale: limited
MPEG2Source(d2v="J:\tmp\m2v_478bc6d007ec94bfc67367d30d9093a4_853323747.d2v",fieldop=0)
# current resolution: 720x480
# deinterlacing
AssumeBFF()
QTGMC(Preset="Faster", ediThreads=2)
# removing ghosting
srestore(frate=25.000,omode=6)
Preroll(Int(last.FrameRate()))
# despotting using DeSpot
DeSpot(median=false,interlaced=false)
# Converting from 8 to 10bit for encoder
ConvertBits(10)
# adjust color to YV16 (color matrix: Rec601)
ConvertToYUV422()
# setting output fps to 25.000fps
AssumeFPS(25,1)
#  output: color sampling YV12@10, matrix: bt601, scantyp: progressive, luminance scale: limited
return last
and
ffmpeg_32 -r 25/1 -y -noautorotate -nostdin -threads 8 -i "J:\tmp\2023-10-17@20_31_59_4410\encodingTempSynthSkript_2023-10-17@20_31_59_4410_0.avs" -an -sn -vf zscale=rangein=tv:range=tv -pix_fmt yuv422p10le -strict -1 -vsync 0  -vcodec prores_ks -profile:v 2 -vtag apcn -metadata encoding_tool="Hybrid 2023.10.17.1" -aspect 20:15 -f mov "G:\Output\bff_1_2023-10-17@20_31_59_4410_03.mov"
My output is deinterlaced.

If you can share a short sample of your video (which allows reproducing this for you), I can try to look into this some more tomorrow.
(maybe it's something in the source triggering this and thus I can't reproduce it here.)

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
Avisynth - DeSpot question - by Miranda - 17.10.2023, 14:07
RE: Avisynth - DeSpot question - by Selur - 17.10.2023, 15:39
RE: Avisynth - DeSpot question - by Selur - 17.10.2023, 15:52
RE: Avisynth - DeSpot question - by Selur - 17.10.2023, 17:13
RE: Avisynth - DeSpot question - by Miranda - 17.10.2023, 20:15
RE: Avisynth - DeSpot question - by Selur - 17.10.2023, 20:39
RE: Avisynth - DeSpot question - by Miranda - 17.10.2023, 21:00
RE: Avisynth - DeSpot question - by Selur - 17.10.2023, 21:22
RE: Avisynth - DeSpot question - by Miranda - 18.10.2023, 14:25
RE: Avisynth - DeSpot question - by Selur - 18.10.2023, 15:03
RE: Avisynth - DeSpot question - by Miranda - 18.10.2023, 18:39
RE: Avisynth - DeSpot question - by Miranda - 23.10.2023, 16:18
RE: Avisynth - DeSpot question - by Selur - 23.10.2023, 18:46
RE: Avisynth - DeSpot question - by Miranda - 23.10.2023, 18:54
RE: Avisynth - DeSpot question - by Selur - 23.10.2023, 18:57

Forum Jump:


Users browsing this thread: 1 Guest(s)