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. |
|
![]() |
|
Thread Tools | Search this Thread | Display Modes |
![]() |
#3 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
At first I tried to keep everything seperated, so that vs-editor has it's own folder, xy-app etc. I even made (or tried) a PortableApps package ... but in the end the easies way is to just throw everything in one big folder, so that python.exe is in the same folder as your randomapp.exe
This was the easiest and most reliable way to convince vs editor to not use the locally installed VS & python installation.
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
#4 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
New Update, see first post.
Added Yuuno Editor
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
#7 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
Yuuno = Jupyter + VapourSynth
Quick comparison to VS Editor - Your browser is your editor - Encoding of VapourSynth-Clips from the Notebook/IPython-shell - Interactive Clip Introspection using IPython-magics (%preview, %diff, %compare and %inspect) -> That means you can compare multiple clips or frames at once supported by it's own slider and/or tabs. - It natively supports remote access, as it is only an extension for Jupyter Notebook. Their website is down currently but you can clone the docs from here https://github.com/Irrational-Encodi...ee/master/docs
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database Last edited by ChaosKing; 27th June 2018 at 09:05. |
![]() |
![]() |
![]() |
#8 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
thx, added (will be in the next update)
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
#9 | Link |
Registered User
Join Date: Nov 2009
Posts: 59
|
thanks for the package!
just wanted to let you now: Oyster is not working as it uses "cmode" parameter in KNLMeansCL which got replaced by "channels". latest Oyster on github works fine: https://raw.githubusercontent.com/IF...ster/Oyster.py |
![]() |
![]() |
![]() |
#10 | Link |
Registered User
Join Date: Oct 2001
Location: Germany
Posts: 7,616
|
Has anyone tested HQdn3d?
Using the dll from the package and: Code:
# Imports import vapoursynth as vs core = vs.get_core() # Loading Plugins core.std.LoadPlugin(path="G:/Hybrid/64bit/vsfilters/DenoiseFilter/HQDN3D/hqdn3d.dll") core.std.LoadPlugin(path="G:/Hybrid/64bit/vsfilters/SourceFilter/FFMS2/ffms2k.dll") # Loading F:\TestClips&Co\files\test.avi using FFMS2K clip = core.ffms2.Source(source="F:/TESTCL~1/files/test.avi",cachefile="H:/Temp/avi_078c37f69bb356e7b5fa040c71584c40_41.ffindex",format=vs.YUV420P8,alpha=False) # making sure input color matrix is set as unspec clip = core.resize.Point(clip, matrix_in_s="unspec") # making sure frame rate is set to 25/1 clip = core.std.AssumeFPS(clip, fpsnum=25, fpsden=1) # Making sure input color range is set to TV (limited) range. clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1) # Input resolution is 640x352. # denoising using HQDN3D clip = core.hqdn3d.Hqdn3d(clip=clip) # Output clip.set_output() Code:
Failed to evaluate the script: Python exception: No attribute with the name hqdn3d exists. Did you mistype a plugin namespace? Traceback (most recent call last): File "src\cython\vapoursynth.pyx", line 1847, in vapoursynth.vpy_evaluateScript File "H:\Temp\tempPreviewVapoursynthFile21_05_45_037.vpy", line 17, in <module> clip = core.hqdn3d.Hqdn3d(clip=clip) File "src\cython\vapoursynth.pyx", line 1416, in vapoursynth.Core.__getattr__ AttributeError: No attribute with the name hqdn3d exists. Did you mistype a plugin namespace? Code:
clip = core.hqdn3d.Hqdn3d(clip=clip) Code:
hqdn3d.Hqdn3d(clip clip, [float lum_spac, float chrom_spac, float lum_tmp, float chrom_tmp, int restart_lap]) |
![]() |
![]() |
![]() |
#11 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
@RieGo
thx, updated. @Selur core.hqdnd.hqdn3d(clip=clip) is correct for this dll There was an update 5 days ago: https://github.com/Hinterwaeldlers/v...9e2178036b523d
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
#12 | Link |
Registered User
Join Date: Oct 2001
Location: Germany
Posts: 7,616
|
@ChaosKing: thanks, that helped!
btw. the finesharp script from Wolfberry is broken, instead of: Code:
ldmp = float(ldmp) if ldmp is None: ldmp = sstr + 0.1 Code:
if ldmp is None: ldmp = sstr + 0.1 else: ldmp = float(ldmp) Cu Selur |
![]() |
![]() |
![]() |
#13 | Link | |
unsigned int
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
|
Quote:
__________________
Buy me a "coffee" and/or hire me to write code! |
|
![]() |
![]() |
![]() |
#15 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
#18 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
It's a false positiv https://www.virustotal.com/#/file/fb...9f3a/detection
Could be triggert by one of the yuuno/jupyter packages or the new bat file ... Extract and scan again to see which file triggers it.
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
#19 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,823
|
New big update, see first post.
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|