Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 19th July 2018, 20:25   #581  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
@Selur
Your script with a 1080i source works for me. However, there's something fishy with TIVTC. Remove the RequestLinear call and also the TIVTC dll from your plugin directory (in your case the "LoadPlugin("I:\Hybrid\32bit\AVISYN~1\TIVTC.dll")" call).
__________________
Groucho's Avisynth Stuff

Last edited by Groucho2004; 19th July 2018 at 20:37.
Groucho2004 is offline   Reply With Quote
Old 19th July 2018, 20:57   #582  |  Link
LigH
German doom9/Gleitz SuMo
 
LigH's Avatar
 
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 6,753
Then let's hope TIVTC gets fixed; Hybrid will need to use it now and then. Instead of QTGMC, for different uses.
__________________

New German Gleitz board
MediaFire: x264 | x265 | VPx | AOM | Xvid
LigH is offline   Reply With Quote
Old 19th July 2018, 21:02   #583  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by LigH View Post
Then let's hope TIVTC gets fixed; Hybrid will need to use it now and then. Instead of QTGMC, for different uses.
RequestLinear() from the original version 1.0.5 (Tritical) seems to work. It's possibly something that pinterf changed in the mt mode registration.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 03:52   #584  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
Thanks!
I can confirm the original RequestLinear (1.0.5) works fine.
1.0.10 also works fine, only the latest 1.0.11 seems to crash.

Cu Selur

Ps.: created an issue entry over at https://github.com/pinterf/TIVTC/issues/4
__________________
Hybrid here in the forum, homepage

Last edited by Selur; 20th July 2018 at 03:54.
Selur is offline   Reply With Quote
Old 20th July 2018, 09:45   #585  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Selur View Post
Thanks!
I can confirm the original RequestLinear (1.0.5) works fine.
1.0.10 also works fine, only the latest 1.0.11 seems to crash.

Cu Selur

Ps.: created an issue entry over at https://github.com/pinterf/TIVTC/issues/4
For the time being I made a stand-alone version of RequestLinear based on pinterf's latest code (x86 & x64).
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 17:09   #586  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
@Groucho2004: Not using TIVTC and the stand-alone RequestLinear32.dll:
Code:
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\LoadDll.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\DGDecodeNV.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\RequestLinear32.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\AddGrainC.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\dfttest.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\EEDI2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\eedi3.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\FFT3DFilter.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\masktools2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\mvtools2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\SSE2Tools.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\TDeint.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\VerticalCleanerSSE2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\PlanarTools.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\MedianBlur2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi3.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\RgTools.dll")
LoadCPlugin("I:\Hybrid\32bit\AVISYN~1\yadif.dll")
LoadDLL("I:\Hybrid\32bit\AVISYN~1\fftw3.dll")
LoadDLL("I:\Hybrid\32bit\AVISYN~1\libfftw3f-3.dll")
Import("I:\Hybrid\32bit\avisynthPlugins\QTGMC.avsi")
Import("I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi")
Import("I:\Hybrid\32bit\avisynthPlugins\AnimeIVTC.avsi")
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
# loading source: D:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\avc - interlaced.m2ts
#  input color sampling YV12
#  input luminance scale tv
DGSource(dgi="E:\Temp\m2ts_5abed9d8018429aaa9e55641ee52ec69_41.dgi",fieldop=2)
RequestLinear(rlim=60,clim=60)
# current resolution: 1920x1080
# deinterlacing
AssumeTFF()
QTGMC(Preset="Placebo", ediThreads=2)
SelectEven()
# filtering
PreFetch(4)
return last
still causes the crash here, so seems like the problem lies within the current RequestLinear code,..

Cu Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 20th July 2018, 17:30   #587  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Selur View Post
still causes the crash here, so seems like the problem lies within the current RequestLinear code
Odd, works for me.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 17:52   #588  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
Strange, I just tried:
Code:
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\LoadDll.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\LSMASHSource.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\AddGrainC.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\dfttest.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\EEDI2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\eedi3.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\FFT3DFilter.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\masktools2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\mvtools2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\SSE2Tools.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\TDeint.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\VerticalCleanerSSE2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\PlanarTools.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\MedianBlur2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi3.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\RgTools.dll")
LoadCPlugin("I:\Hybrid\32bit\AVISYN~1\yadif.dll")
LoadDLL("I:\Hybrid\32bit\AVISYN~1\fftw3.dll")
LoadDLL("I:\Hybrid\32bit\AVISYN~1\libfftw3f-3.dll")
Import("I:\Hybrid\32bit\avisynthPlugins\QTGMC.avsi")
Import("I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi")
Import("I:\Hybrid\32bit\avisynthPlugins\AnimeIVTC.avsi")
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
# loading source: D:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\avc - interlaced.m2ts
#  input color sampling YV12
#  input luminance scale tv
LWLibavVideoSource("D:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\avc - interlaced.m2ts",cache=false,stacked=true,format="YUV420P8")
# current resolution: 1920x1080
# deinterlacing
AssumeTFF()
QTGMC(Preset="Placebo", ediThreads=2)
SelectEven()
# filtering
PreFetch(4)
return last
Not using TIVTC or RequestLinear and the script is still crashing,...

Both 'Very Slow' and 'Placebo' crash, presets below that work fine.
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 20th July 2018, 18:11   #589  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Selur View Post
Code:
LWLibavVideoSource("D:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\avc - interlaced.m2ts",cache=false,stacked=true,format="YUV420P8")
Not using TIVTC or RequestLinear and the script is still crashing,...

Both 'Very Slow' and 'Placebo' crash, presets below that work fine.
You changed the source filter. Try LWLibavVideoSource with "threads = 1".
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 18:20   #590  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
Yes, I changed the source filter to make sure it wasn't triggered by DGDecNV somehow.
Quote:
You changed the source filter. Try LWLibavVideoSource with "threads = 1".
using:
Code:
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\LoadDll.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\LSMASHSource.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\AddGrainC.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\dfttest.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\EEDI2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\eedi3.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\FFT3DFilter.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\masktools2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\mvtools2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\SSE2Tools.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\TDeint.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\VerticalCleanerSSE2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\PlanarTools.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\MedianBlur2.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi3.dll")
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\RgTools.dll")
LoadCPlugin("I:\Hybrid\32bit\AVISYN~1\yadif.dll")
LoadDLL("I:\Hybrid\32bit\AVISYN~1\fftw3.dll")
LoadDLL("I:\Hybrid\32bit\AVISYN~1\libfftw3f-3.dll")
Import("I:\Hybrid\32bit\avisynthPlugins\QTGMC.avsi")
Import("I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi")
Import("I:\Hybrid\32bit\avisynthPlugins\AnimeIVTC.avsi")
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
# loading source: D:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\avc - interlaced.m2ts
#  input color sampling YV12
#  input luminance scale tv
LWLibavVideoSource("D:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\avc - interlaced.m2ts",cache=false,stacked=true,format="YUV420P8",threads=1)
# current resolution: 1920x1080
# deinterlacing
AssumeTFF()
QTGMC(Preset="Placebo", ediThreads=2)
SelectEven()
# filtering
PreFetch(4)
return last
it's still crashing with anything slower than preset 'Slower',... (setting 'ediThreads' to 1, doesn't help either).

Cu Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 20th July 2018, 18:24   #591  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Selur View Post
it's still crashing with anything slower than preset 'Slower',... (setting 'ediThreads' to 1, doesn't help either).
Are you testing this with AVSMeter?
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 18:26   #592  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
Nope, but I could.
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 20th July 2018, 18:28   #593  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Selur View Post
Nope, but I could.
You should also run "AVSMeter avsinfo -log" and post the log.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 18:31   #594  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
That gives me:
Code:
Log file created with:      AVSMeter 2.8.0 (x86)

[OS/Hardware info]
Operating system:           Windows 10 (x64) (Build 17134)
CPU brand string:           AMD Ryzen 7 1800X Eight-Core Processor
CPU features:               MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2, FMA3, SSE4A, MMXEXT, MOVBE, POPCNT, AES, F16C


[Avisynth info]
VersionString:              AviSynth+ 0.1 (r2664, MT, i386)
VersionNumber:              2.60
File / Product version:     0.1.0.0 / 0.1.0.0
Interface Version:          6
Multi-threading support:    Yes
Avisynth.dll location:      i:\Hybrid\32bit\avisynth.dll
Avisynth.dll time stamp:    2018-03-28, 19:04:18 (UTC)



[Plugin errors/warnings]
_______________________________________________________________________________________________________________________________________________________________________________________________________________________

No plugin directory references found in the registry.
Plugin auto-loading disabled.
_______________________________________________________________________________________________________________________________________________________________________________________________________________________



[Internal (core) functions]
    AVIFileSource
    AVISource
    AddAlphaPlane
    AddAutoloadDir
    AddBorders
    AlignedSplice
    Amplify
    AmplifydB
    Animate
    Apply
    ApplyRange
    Assert
    AssumeBFF
    AssumeFPS
    AssumeFieldBased
    AssumeFrameBased
    AssumeSampleRate
    AssumeScaledFPS
    AssumeTFF
    AudioDub
    AudioDubEx
    AudioTrim
    AutoloadPlugins
    AverageB
    AverageChromaU
    AverageChromaV
    AverageG
    AverageLuma
    AverageR
    BDifference
    BDifferenceFromPrevious
    BDifferenceToNext
    BPlaneMax
    BPlaneMedian
    BPlaneMin
    BPlaneMinMaxDifference
    BicubicResize
    BilinearResize
    BitsPerComponent
    BlackmanResize
    Blackness
    BlankClip
    Blur
    Bob
    Cache
    ChangeFPS
    Chr
    ChromaUDifference
    ChromaVDifference
    ClearAutoloadDirs
    ColorBars
    ColorBarsHD
    ColorKeyMask
    ColorSpaceNameToPixelType
    ColorYUV
    CombinePlanes
    Compare
    ComplementParity
    ComponentSize
    ConditionalFilter
    ConditionalReader
    ConditionalSelect
    ContinuedDenominator
    ContinuedNumerator
    ConvertAudio
    ConvertAudioTo16bit
    ConvertAudioTo24bit
    ConvertAudioTo32bit
    ConvertAudioTo8bit
    ConvertAudioToFloat
    ConvertBackToYUY2
    ConvertBits
    ConvertFPS
    ConvertTo16bit
    ConvertTo8bit
    ConvertToFloat
    ConvertToMono
    ConvertToPlanarRGB
    ConvertToPlanarRGBA
    ConvertToRGB
    ConvertToRGB24
    ConvertToRGB32
    ConvertToRGB48
    ConvertToRGB64
    ConvertToY
    ConvertToY8
    ConvertToYUV411
    ConvertToYUV420
    ConvertToYUV422
    ConvertToYUV444
    ConvertToYUY2
    ConvertToYV12
    ConvertToYV16
    ConvertToYV24
    ConvertToYV411
    Crop
    CropBottom
    Default
    Defined
    DelayAudio
    DeleteFrame
    Dissolve
    DoubleWeave
    DuplicateFrame
    Echo
    EnsureVBRMP3Sync
    Eval
    Exist
    Expr
    ExtractA
    ExtractB
    ExtractG
    ExtractR
    ExtractU
    ExtractV
    ExtractY
    FadeIO
    FadeIO0
    FadeIO2
    FadeIn
    FadeIn0
    FadeIn2
    FadeOut
    FadeOut0
    FadeOut2
    FixBrokenChromaUpsampling
    FixLuminance
    FlipHorizontal
    FlipVertical
    FrameEvaluate
    FreezeFrame
    FunctionExists
    GDifference
    GDifferenceFromPrevious
    GDifferenceToNext
    GPlaneMax
    GPlaneMedian
    GPlaneMin
    GPlaneMinMaxDifference
    GaussResize
    GeneralConvolution
    GetChannel
    GetChannels
    GetLeftChannel
    GetParity
    GetProcessInfo
    GetRightChannel
    Grayscale
    Greyscale
    HasAlpha
    HasAudio
    HasVideo
    Hex
    Histogram
    HorizontalReduceBy2
    Import
    Info
    Interleave
    InternalCache
    InternalFunctionExists
    Invert
    Is420
    Is422
    Is444
    IsAudioFloat
    IsAudioInt
    IsBool
    IsClip
    IsFieldBased
    IsFloat
    IsFrameBased
    IsInt
    IsInterleaved
    IsPackedRGB
    IsPlanar
    IsPlanarRGB
    IsPlanarRGBA
    IsRGB
    IsRGB24
    IsRGB32
    IsRGB48
    IsRGB64
    IsString
    IsVideoFloat
    IsY
    IsY8
    IsYUV
    IsYUVA
    IsYUY2
    IsYV12
    IsYV16
    IsYV24
    IsYV411
    KillAudio
    KillVideo
    Lanczos4Resize
    LanczosResize
    Layer
    Letterbox
    Levels
    Limiter
    LoadCPlugin
    LoadPlugin
    Load_Stdcall_Plugin
    LogMsg
    Loop
    LumaDifference
    Mask
    MaskHS
    Max
    Merge
    MergeARGB
    MergeChannels
    MergeChroma
    MergeLuma
    MergeRGB
    MessageClip
    Min
    MixAudio
    MonoToStereo
    Normalize
    Null
    NumComponents
    OpenDMLSource
    Ord
    Overlay
    PeculiarBlend
    PixelType
    PlaneToY
    PointResize
    Prefetch
    Preroll
    Pulldown
    RDifference
    RDifferenceFromPrevious
    RDifferenceToNext
    RGBAdjust
    RGBDifference
    RGBDifferenceFromPrevious
    RGBDifferenceToNext
    RPlaneMax
    RPlaneMedian
    RPlaneMin
    RPlaneMinMaxDifference
    ReduceBy2
    RemoveAlphaPlane
    ResampleAudio
    ResetMask
    Reverse
    ScriptClip
    ScriptDir
    ScriptDirUtf8
    ScriptFile
    ScriptFileUtf8
    ScriptName
    ScriptNameUtf8
    SegmentedAVISource
    SegmentedDirectShowSource
    Select
    SelectEven
    SelectEvery
    SelectOdd
    SelectRangeEvery
    SeparateColumns
    SeparateFields
    SeparateRows
    SetFilterMTMode
    SetLogParams
    SetMemoryMax
    SetPlanarLegacyAlignment
    SetWorkingDir
    Sharpen
    ShowAlpha
    ShowBlue
    ShowFiveVersions
    ShowFrameNumber
    ShowGreen
    ShowRed
    ShowSMPTE
    ShowTime
    ShowU
    ShowV
    ShowY
    SincResize
    SkewRows
    SpatialSoften
    Spline
    Spline16Resize
    Spline36Resize
    Spline64Resize
    StackHorizontal
    StackVertical
    StrFromUtf8
    StrToUtf8
    String
    Subtitle
    Subtract
    SwapFields
    SwapUV
    TemporalSoften
    Time
    Tone
    Trim
    Turn180
    TurnLeft
    TurnRight
    Tweak
    UDifferenceFromPrevious
    UDifferenceToNext
    UPlaneMax
    UPlaneMedian
    UPlaneMin
    UPlaneMinMaxDifference
    UToY
    UToY8
    UnalignedSplice
    VDifferenceFromPrevious
    VDifferenceToNext
    VPlaneMax
    VPlaneMedian
    VPlaneMin
    VPlaneMinMaxDifference
    VToY
    VToY8
    Version
    VersionNumber
    VersionString
    VerticalReduceBy2
    WAVSource
    Weave
    WeaveColumns
    WeaveRows
    WriteFile
    WriteFileEnd
    WriteFileIf
    WriteFileStart
    YDifferenceFromPrevious
    YDifferenceToNext
    YPlaneMax
    YPlaneMedian
    YPlaneMin
    YPlaneMinMaxDifference
    YToUV
    abs
    acos
    asin
    atan
    atan2
    audiobits
    audiochannels
    audioduration
    audiolength
    audiolengthf
    audiolengthhi
    audiolengthlo
    audiolengths
    audiorate
    bitand
    bitchange
    bitchg
    bitclear
    bitclr
    bitlrotate
    bitlshift
    bitlshifta
    bitlshiftl
    bitlshifts
    bitlshiftu
    bitnot
    bitor
    bitrol
    bitror
    bitrrotate
    bitrshifta
    bitrshiftl
    bitrshifts
    bitrshiftu
    bitsal
    bitsar
    bitset
    bitsetcount
    bitshl
    bitshr
    bittest
    bittst
    bitxor
    ceil
    cos
    cosh
    exp
    fillstr
    findstr
    float
    floor
    fmod
    frac
    framecount
    framerate
    frameratedenominator
    frameratenumerator
    height
    hexvalue
    int
    lcase
    leftstr
    log
    log10
    midstr
    muldiv
    nop
    pi
    pow
    rand
    replacestr
    revstr
    rightstr
    round
    sign
    sin
    sinh
    sqrt
    strcmp
    strcmpi
    strlen
    tan
    tanh
    trimall
    trimleft
    trimright
    ucase
    undefined
    value
    width



[DLL dependencies (x86)]
i:\Hybrid\32bit\avisynth.dll:
    AVIFIL32.dll
    MSVFW32.dll
    MSACM32.dll
    GDI32.dll
    USER32.dll
    ADVAPI32.dll
    ole32.dll
    imagehlp.dll
    MSVCP140.dll
    KERNEL32.dll
    VCRUNTIME140.dll
    api-ms-win-crt-runtime-l1-1-0.dll
    api-ms-win-crt-heap-l1-1-0.dll
    api-ms-win-crt-string-l1-1-0.dll
    api-ms-win-crt-stdio-l1-1-0.dll
    api-ms-win-crt-math-l1-1-0.dll
    api-ms-win-crt-environment-l1-1-0.dll
    api-ms-win-crt-filesystem-l1-1-0.dll
    api-ms-win-crt-locale-l1-1-0.dll
    api-ms-win-crt-utility-l1-1-0.dll
    api-ms-win-crt-convert-l1-1-0.dll
    api-ms-win-crt-time-l1-1-0.dll
Only strange thing is the reported:
Code:
i:\Hybrid\32bit\avisynth.dll
since the file is actually names:
Code:
i:\Hybrid\32bit\AviSynth.dll
---
Running the last script through AVSMeter I get:
Code:
Script error: Expr does not have a named argument "scale_inputs"
(masktools2.dll is 2.2.17.0)
__________________
Hybrid here in the forum, homepage

Last edited by Selur; 20th July 2018 at 18:37.
Selur is offline   Reply With Quote
Old 20th July 2018, 18:35   #595  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Selur View Post
That gives me:
Code:
[Avisynth info]
VersionString:              AviSynth+ 0.1 (r2664, MT, i386)
Update to the latest avisynth (r2728).
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 20th July 2018, 18:44   #596  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
Strange I was sure I used that version already.
That seems to fix the issue.
-> Thanks
(now it works with TIVTC and RequestLinear,..)
__________________
Hybrid here in the forum, homepage

Last edited by Selur; 20th July 2018 at 18:47.
Selur is offline   Reply With Quote
Old 12th August 2018, 09:16   #597  |  Link
vorob
Registered User
 
Join Date: Apr 2004
Posts: 34
Sorry for lazy posting, but is there any one click script that will have all nessesary things in one zip file? I'll just point to my video and it will do magic. No numerous files download, config fixing, installing weird soft on my pc. etc.
vorob is offline   Reply With Quote
Old 12th August 2018, 09:54   #598  |  Link
LigH
German doom9/Gleitz SuMo
 
LigH's Avatar
 
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 6,753
Almost ... the AviSynth Wiki page for QTGMC offers a table of download locations for "Core plugins", but each of them may get updated, sometimes in tight relation to the most recent avsi script. It would not be very useful to create a whole archive for all plugins if its maintenance could not easily be automated, and a Wiki page is not a usual location of a download mirror.
__________________

New German Gleitz board
MediaFire: x264 | x265 | VPx | AOM | Xvid
LigH is offline   Reply With Quote
Old 12th August 2018, 10:09   #599  |  Link
vorob
Registered User
 
Join Date: Apr 2004
Posts: 34
Quote:
Originally Posted by LigH View Post
Almost ... the AviSynth Wiki page for QTGMC offers a table of download locations for "Core plugins", but each of them may get updated, sometimes in tight relation to the most recent avsi script. It would not be very useful to create a whole archive for all plugins if its maintenance could not easily be automated, and a Wiki page is not a usual location of a download mirror.
Okay, anyway I managed to spend some time with downloading stuff. Now I can convert all my Video8 tapes with proper 50fps and good deinterlace.

https://pp.userapi.com/c846219/v8462...v35T-JmLV8.jpg

Last edited by vorob; 12th August 2018 at 10:56.
vorob is offline   Reply With Quote
Old 12th August 2018, 10:52   #600  |  Link
vorob
Registered User
 
Join Date: Apr 2004
Posts: 34
Wow, what's that? No such issue on original tape or cheap deintelacer.

https://pp.userapi.com/c844320/v8443...GpNTM1D4wc.jpg

Last edited by vorob; 12th August 2018 at 10:56.
vorob is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:17.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.