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. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#1941 | Link |
|
Pig on the wing
Join Date: Mar 2002
Location: Finland
Posts: 5,836
|
Try taking a look at the Details tab in Task Manager when the problem occurs. Is there some encoding related process that appears to be doing something, yet nothing visible happens?
__________________
And if the band you're in starts playing different tunes I'll see you on the dark side of the Moon... |
|
|
|
|
|
#1942 | Link | ||
|
Registered User
Join Date: Sep 2007
Posts: 5,669
|
Quote:
You perform the "cleanout plugins" procedure I mentioned above and load and import everything manually in the script. I can test it tomorrow if you're really interested Some of your script names differ from Dogway's. Did someone (PD?) just rename them? Are you certain they are the correct updated versions ? e.g Quote:
The date in the path "C:\RipBot264_PD (17-01-23)" , suggests Jan 17,2023, yet there are updated versions by Dogway on the 18th including ResizersPack.avsi if you check the commits |
||
|
|
|
|
|
#1943 | Link | |
|
Registered User
Join Date: Mar 2012
Location: Texas
Posts: 1,676
|
Quote:
... But hey, instead of doing things backwards, why don't you install avs+ with the installer? There's even a "Install.cmd" in the AviSynth Ripbot folder which installs the files in the same location as the official installer.I did find an error, and the error was because of an old file I had. I corrected that and now it works. Maybe you have that too, who knows... It's just odd that there's no error message of any kind, and then you can't even try a simple "Version()" command like PDR asked. Oh well, hope you get it all sorted out. |
|
|
|
|
|
|
#1944 | Link | |
|
24 years and counting...
Join Date: Oct 2002
Location: Germany
Posts: 747
|
Quote:
|
|
|
|
|
|
|
#1945 | Link |
|
Registered User
Join Date: Nov 2009
Posts: 2,375
|
Hey TDS, calm a bit we are all helping here. Basically your issue is NNEDI3CL related I think. Three points I want to check, first, your Avisynth version is r3849 while pinterf latest version (test3) is r3835, at least for x64, unless you are in x86.
Second, never use anything other than FFMS2 or DGDecNV. To reassure this, I simply tested with LSMASH and it errored out ([Fatal] Failed to read an input file). Not sure if outdated plugin though. Third, I presume you have nnedi3_weights.bin in your plugins path. Fourth, test with a simple example to check whether it runs to discard deep_resize() from the equation. Code:
video=ConvertBits(video,16) video=nnedi3wrap(video,2) video
__________________
i7-4790K@Stock::GTX 1070] AviSynth+ filters and mods on GitHub + Discussion thread Last edited by Dogway; 30th January 2023 at 12:25. |
|
|
|
|
|
#1946 | Link |
|
Registered User
Join Date: Nov 2009
Posts: 2,375
|
I don't know where you got r3849 from, test r3835 to be on the same page. (EDIT: Tested with r3849 and no issues, so you can skip this)
nnedi3_weights.bin is placed in the same folder as NNEDI3CL. Test as I said with only the nnedi3wrap() call after doing the above, then we talk.
__________________
i7-4790K@Stock::GTX 1070] AviSynth+ filters and mods on GitHub + Discussion thread Last edited by Dogway; 30th January 2023 at 17:56. |
|
|
|
|
|
#1947 | Link |
|
Registered User
Join Date: Jan 2018
Posts: 2,170
|
He got from here:
https://gitlab.com/uvz/AviSynthPlus-Builds |
|
|
|
|
|
#1948 | Link | |||
|
Registered User
Join Date: Sep 2007
Posts: 5,669
|
Quote:
Quote:
Code:
LoadPlugin(".../LSmashSource.dll")
video = LWLibavVideoSource...
# delete all those added lines
video = version()
The video loaded by LWLibavVideoSource would be "replaced" by version() . Remember, you have to push "ok", and hit the avisynth button again for the changes take effect Quote:
It's a no-op when nothing is resized, that's the same as not including the deep_resize, or deleting the line. You can summarize your problem as when you try to use deep_resize (and 1920 doesn't count, because the filter gets skipped), you get the no preview /no error message/ hanging problem, but only some of the time. |
|||
|
|
|
|
|
#1949 | Link | |
|
Registered User
Join Date: Sep 2007
Posts: 5,669
|
Quote:
BTW, you can enable the settings debug display by toggling show=true (probably nicer to use a script editor, it's kind of "clunky" to do in ripbot) |
|
|
|
|
|
|
#1950 | Link | ||||
|
Registered User
Join Date: Mar 2012
Location: Texas
Posts: 1,676
|
Quote:
The "prefilter" parameter description section still lists dfttest as #4 but the dependecies section is correct: Code:
DFTTest (v1.9.7 or higher) (for prefilter=5) KNLMeansCL (v1.1.1e or higher) (for prefilter=6) DGDecNV (v246 or higher) (for prefilter=7) BM3D (test9 or higher) (for prefilter=8) Quote:
BTW Dogway, IDK if you're still on Win7 but BM3D test10 no longer works with Win7 due to it using the Cuda 12 SDK. Edit: I reported the issue and WolframRhodium compiled a version with the older sdk, test10-cuda118 works in Win7 .--- Yesterday Quote:
Quote:
Last edited by Reel.Deel; 31st January 2023 at 05:47. |
||||
|
|
|
|
|
#1951 | Link | |
|
Registered User
Join Date: Sep 2007
Posts: 5,669
|
Quote:
deep_resize isn't actually used in those examples (no-op), because it's upscaled before to 3840 by nnedi3wrap(video) in the 1st example, or stays at the current 1920 resolution for the 2nd example. So they provide no addition information about your original deep_resize problem |
|
|
|
|
|
|
#1953 | Link | ||
|
Registered User
Join Date: Sep 2007
Posts: 5,669
|
Quote:
Quote:
You can obviously do whatever you want, I thought you wanted to get the deep_resize function working I'm just curious about the "hanging" without error message . It's not common for that to happen, and it's unexpected with that script . |
||
|
|
|
|
|
#1954 | Link | |
|
Registered User
Join Date: Mar 2012
Location: Texas
Posts: 1,676
|
Quote:
|
|
|
|
|
|
|
#1955 | Link | ||||
|
Registered User
Join Date: Nov 2009
Posts: 2,375
|
Quote:
Man I wouldn't mind all the posts involving your issue go to a single thread, since you seem to go in rounds without actually following my (and others) debug suggestions. Quote:
Quote:
Quote:
I'm gonna finish SMDegrain docs as soon as possible too, it's up on my todo list.
__________________
i7-4790K@Stock::GTX 1070] AviSynth+ filters and mods on GitHub + Discussion thread Last edited by Dogway; 31st January 2023 at 10:55. |
||||
|
|
|
|
|
#1957 | Link | |
|
24 years and counting...
Join Date: Oct 2002
Location: Germany
Posts: 747
|
Quote:
|
|
|
|
|
|
|
#1958 | Link | |
|
Registered User
Join Date: Mar 2012
Location: Texas
Posts: 1,676
|
Quote:
Code:
Import("somefunction.avsi") # this works
video = somefunction()
Code:
video = somefunction()
Import("somefunction.avsi") # this does not
Last edited by Reel.Deel; 2nd February 2023 at 03:30. |
|
|
|
|
|
|
#1959 | Link |
|
Registered User
Join Date: Feb 2003
Posts: 126
|
I figured out that my "Invalid Program" error was caused by my gpu not supporting opencl so I had to change gpuid=-1 and that fixed it.
But now I'm getting this error with some videos: Code:
ConvertYV24ToRGB: Unknown matrix |
|
|
|
|
|
#1960 | Link | ||
|
Registered User
Join Date: Feb 2003
Posts: 126
|
Quote:
Quote:
|
||
|
|
|
![]() |
| Tags |
| avisynth, dogway, filters, hbd, packs |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|