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.

error helper 1
#50
Avisynth script looks like this:
ClearAutoloadDirs()
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\LoadDll.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\RgTools.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\aWarpSharpMT.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\AutoAdjust.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\mvtools2.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\masktools2.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\neo-f3kdb.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\FFT3DFilter.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\manyPlus.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\TIVTC.dll")
LoadDLL("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\libfftw3f-3.dll")
LoadPlugin("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\LSMASHSource.dll")
Import("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\mtmodes.avsi")
Import("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\mClean.avs")
Import("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\Zs_RF_Shared.avsi")
# loading source: F:\adverts 2 - Copy.avi
# color sampling YUY2@8, matrix: bt601, scantyp: telecine, luminance scale: limited
LWLibavVideoSource("F:\adverts 2 - Copy.avi",cache=false,dr=true,format="YUV422P8", prefer_hw=0)
# current resolution: 720x576
# deinterlacing
TFM()
TDecimate()
AssumeFrameBased()
mClean(thSAD=20,strength=10)
# scaling to 3840x2160
BicubicResize(3840,2160)
# adjust color to YV12 (color matrix: Rec601)
ConvertToYV12()
# setting output fps to 20.000fps
AssumeFPS(20,1)
PreFetch(4)
#  output: color sampling YV16@8, matrix: bt601, scantyp: progressive, luminance scale: limited
return last

Encoding call:
C:\Program Files\Hybrid\64bit\ffmpeg.exe" -y -loglevel fatal -noautorotate -nostdin -threads 8 -i "C:\Users\HP Elite 8300\AppData\Local\Temp\encodingTempSynthSkript_2024-08-14@18_33_37_2210_0.avs" -an -sn -color_primaries bt2020 -color_trc bt2020-10 -colorspace bt470bg -color_range tv -pix_fmt yuv420p -vsync 0 -f rawvideo - | "C:\Program Files\Hybrid\64bit\x264.exe" --preset veryfast --pass 1 --bitrate 50000 --profile high --direct auto --b-adapt 0 --sync-lookahead 12 --ratetol 2.00 --qcomp 0.50 --rc-lookahead 40 --qpmax 51 --aq-mode 0 --sar 1:1 --non-deterministic --range tv --stats "C:\Users\HP Elite 8300\AppData\Local\Temp\adverts2-copy-hybrid_1_2024-08-14@18_33_37_2210_05.stats" --demuxer raw --input-res 3840x2160 --input-csp i420 --input-range tv --input-depth 8 --fps 20/1 --output-depth 8 --output NUL -

Aside from that:
a. you are IVTCing a PAL (25fps) source (which does not really make sense),
b. you are running a '2pass - 1st pass' without a '2pass - 2nd pass' (which will create no output file)

Basically the same script does work fine here (both decoder and encoder call eat ~4-5GB RAM, but I use more threads so it's probably way less on your end), but encode fine.

1. Does the Avisynth Preview work?
2. Does this also happen with the latest dev?
If it does create a new debug output with that version.

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


Messages In This Thread
error helper 1 - by VCRvideocapturing - 01.08.2024, 16:44
RE: error helper 1 - by Selur - 01.08.2024, 16:48
RE: error helper 1 - by lostsnowboardvideos - 02.08.2024, 06:11
RE: error helper 1 - by Selur - 02.08.2024, 07:25
RE: error helper 1 - by VCRvideocapturing - 02.08.2024, 14:24
RE: error helper 1 - by Selur - 02.08.2024, 22:35
RE: error helper 1 - by lostsnowboardvideos - 02.08.2024, 23:50
RE: error helper 1 - by Selur - 03.08.2024, 07:16
RE: error helper 1 - by lostsnowboardvideos - 03.08.2024, 08:27
RE: error helper 1 - by 7C Elements - 03.08.2024, 08:28
RE: error helper 1 - by Selur - 03.08.2024, 08:50
RE: error helper 1 - by VCRvideocapturing - 03.08.2024, 14:36
RE: error helper 1 - by Selur - 03.08.2024, 14:49
RE: error helper 1 - by VCRvideocapturing - 03.08.2024, 14:52
RE: error helper 1 - by Selur - 03.08.2024, 14:54
RE: error helper 1 - by VCRvideocapturing - 03.08.2024, 14:58
RE: error helper 1 - by Selur - 03.08.2024, 15:26
RE: error helper 1 - by lostsnowboardvideos - 03.08.2024, 18:44
RE: error helper 1 - by VCRvideocapturing - 03.08.2024, 19:40
RE: error helper 1 - by Selur - 03.08.2024, 19:49
RE: error helper 1 - by VCRvideocapturing - 03.08.2024, 21:27
RE: error helper 1 - by Selur - 03.08.2024, 21:38
RE: error helper 1 - by Bartoloni - 06.08.2024, 10:08
RE: error helper 1 - by Selur - 06.08.2024, 16:58
RE: error helper 1 - by VCRvideocapturing - 06.08.2024, 19:00
RE: error helper 1 - by Selur - 06.08.2024, 20:06
RE: error helper 1 - by VCRvideocapturing - 09.08.2024, 15:32
RE: error helper 1 - by Selur - 09.08.2024, 15:48
RE: error helper 1 - by VCRvideocapturing - 09.08.2024, 16:23
RE: error helper 1 - by VCRvideocapturing - 09.08.2024, 18:40
RE: error helper 1 - by Selur - 10.08.2024, 10:13
RE: error helper 1 - by Bartoloni - 12.08.2024, 10:45
RE: error helper 1 - by Selur - 12.08.2024, 14:57
RE: error helper 1 - by lostsnowboardvideos - 13.08.2024, 08:06
RE: error helper 1 - by Selur - 13.08.2024, 16:14
RE: error helper 1 - by lostsnowboardvideos - 13.08.2024, 17:47
RE: error helper 1 - by Selur - 13.08.2024, 17:50
RE: error helper 1 - by lostsnowboardvideos - 14.08.2024, 02:19
RE: error helper 1 - by Selur - 14.08.2024, 04:51
RE: error helper 1 - by VCRvideocapturing - 14.08.2024, 14:44
RE: error helper 1 - by Selur - 14.08.2024, 14:54
RE: error helper 1 - by VCRvideocapturing - 14.08.2024, 16:08
RE: error helper 1 - by Selur - 14.08.2024, 16:16
RE: error helper 1 - by lostsnowboardvideos - 14.08.2024, 16:36
RE: error helper 1 - by VCRvideocapturing - 14.08.2024, 17:02
RE: error helper 1 - by Selur - 14.08.2024, 17:58
RE: error helper 1 - by VCRvideocapturing - 14.08.2024, 19:14
RE: error helper 1 - by Selur - 14.08.2024, 19:17
RE: error helper 1 - by VCRvideocapturing - 14.08.2024, 19:46
RE: error helper 1 - by Selur - 14.08.2024, 20:22
RE: error helper 1 - by VCRvideocapturing - 15.08.2024, 17:02
RE: error helper 1 - by Selur - 15.08.2024, 17:20
RE: error helper 1 - by VCRvideocapturing - 15.08.2024, 20:21
RE: error helper 1 - by Selur - 16.08.2024, 12:37
RE: error helper 1 - by VCRvideocapturing - 16.08.2024, 20:10
RE: error helper 1 - by Selur - 16.08.2024, 20:12
RE: error helper 1 - by VCRvideocapturing - 18.08.2024, 20:04
RE: error helper 1 - by Selur - 18.08.2024, 20:16
RE: error helper 1 - by VCRvideocapturing - 18.08.2024, 20:44
RE: error helper 1 - by Selur - 18.08.2024, 20:51

Forum Jump:


Users browsing this thread: 1 Guest(s)