![]() |
|
Hilfe für Denoise, DeBlock und Upscale von DVD - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Probleme und Fragen (https://forum.selur.net/forum-4.html) +--- Thread: Hilfe für Denoise, DeBlock und Upscale von DVD (/thread-2922.html) |
RE: Hilfe für Denoise, DeBlock und Upscale von DVD - MajinOne - 30.11.2022 Ja Danke hat geklappt, leider kommt jetzt ne andere Fehlermeldung : 2022-11-30 21:21:08.409 Failed to evaluate the script: Python exception: No module named 'edi_rpow2' Traceback (most recent call last): File "src\cython\vapoursynth.pyx", line 2819, in vapoursynth._vpy_evaluate File "src\cython\vapoursynth.pyx", line 2820, in vapoursynth._vpy_evaluate File "C:/Program Files/Hybrid/SelurScript.vpy", line 36, in import edi_rpow2 ModuleNotFoundError: No module named 'edi_rpow2' RE: Hilfe für Denoise, DeBlock und Upscale von DVD - Selur - 30.11.2022 Scheint als ob aus irgendeinem Grund "edi_rpow2.py" nicht importiert werden kann. Im meinem Skript war: # Imports
import vapoursynth as vs
import os
import ctypes
# Loading Support Files
Dllref = ctypes.windll.LoadLibrary("i:/Hybrid/64bit/vsfilters/Support/libfftw3f-3.dll")
import sys
# getting Vapoursynth core
core = vs.core
# Import scripts folder
scriptPath = 'i:/Hybrid/64bit/vsscripts'
sys.path.insert(0, os.path.abspath(scriptPath))Dies ist bei Dir nicht der Fall, vermute Du hast den Pfad geändert und wieder Backlashe verwendet. Cu Selur RE: Hilfe für Denoise, DeBlock und Upscale von DVD - MajinOne - 30.11.2022 ok danke, sry fürs nerven xD |