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.

Multiple issues
#42
Quote:DVD input now shows nothing in "Filter View"/"Crop View" with Vapoursunth
should be fixed, problem was that the wrong indexer and source filter was used
Quote: QT Prores now shows in Vapoursynth "Filter View" promptly, however after assign "Despot" - "Filter View" becomes unresponsive, filtered result not showing.
Found the problem: DeSpot only contains 8bit or 16bit YUV no 9/10bit.
-> should be fixed now
Quote:QT Prores "Dehalo"/"Dehalo_alpha"/"BlindDehalo3" shows some kind of mask even with "Show Mask:None"
Your debug outptu shows:
# Imports
import os
import sys
import vapoursynth as vs
core = vs.get_core()
# Import scripts folder
scriptPath = 'C:/Program Files/Hybrid/64bit/vsscripts'
sys.path.append(os.path.abspath(scriptPath))
# Loading Plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/CTMF/CTMF.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
# Import scripts
import havsfunc
# source: 'K:\Gulliver\GULLIVER HD TRANSFER\Gulliver0001.mov'
# current color space: YUV422P10, bit depth: 10, resolution: 1920x1080, fps: 23.976, color matrix: 709, yuv luminance scale: limited, scanorder: progressive
# Loading K:\Gulliver\GULLIVER HD TRANSFER\Gulliver0001.mov using LibavSMASHSource
clip = core.lsmas.LibavSMASHSource(source="K:/Gulliver/GULLIVER HD TRANSFER/Gulliver0001.mov")
# making sure input color matrix is set as 709
clip = core.resize.Point(clip, matrix_in_s="709",range_s="limited")
# making sure frame rate is set to 23.976
clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
original = clip
clip = havsfunc.FineDehalo(clip)
# adjusting output color from: YUV422P10 to YUV420P8 for x264Model (i420@10)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, range_s="limited")
# adjusting for FilterView
if (original.format.id != clip.format.id):
  if (original.format.color_family == vs.RGB and clip.format.color_family != vs.RGB):
    original = core.resize.Bicubic(clip=original, format=clip.format.id, matrix_s="709", range_s="limited")
  elif (original.format.color_family == clip.format.color_family):
    original = core.resize.Bicubic(clip=original, format=clip.format.id, range_s="limited")
  else:
    original = core.resize.Bicubic(clip=original, format=clip.format.id, matrix_in_s="709", range_s="limited")
stacked = core.std.StackHorizontal([original,clip])
# set output frame rate to 23.976fps
stacked = core.std.AssumeFPS(clip=stacked, fpsnum=24000, fpsden=1001)
# Output
stacked.set_output()
I used:
# Imports
import os
import sys
import vapoursynth as vs
core = vs.get_core()
# Import scripts folder
scriptPath = 'I:/Hybrid/64bit/vsscripts'
sys.path.append(os.path.abspath(scriptPath))
# Loading Plugins
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/DenoiseFilter/CTMF/CTMF.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
# Import scripts
import havsfunc
# source: 'F:\TestClips&Co\files\ProRes\SDR - ProRes 422.mov'
# current color space: YUV422P10, bit depth: 10, resolution: 3840x2160, fps: 59.9401, color matrix: 709, yuv luminance scale: limited, scanorder: progressive
# Loading F:\TestClips&Co\files\ProRes\SDR - ProRes 422.mov using LibavSMASHSource
clip = core.lsmas.LibavSMASHSource(source="F:/TestClips&Co/files/ProRes/SDR - ProRes 422.mov")
# making sure input color matrix is set as 709
clip = core.resize.Point(clip, matrix_in_s="709",range_s="limited")
# set output frame rate to 59.940fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=60000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
original = clip
clip = havsfunc.FineDehalo(clip)
# adjusting output color from: YUV422P10 to YUV420P8 for x264Model (i420@10)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, range_s="limited")
# adjusting for FilterView
if (original.format.id != clip.format.id):
  if (original.format.color_family == vs.RGB and clip.format.color_family != vs.RGB):
    original = core.resize.Bicubic(clip=original, format=clip.format.id, matrix_s="709", range_s="limited")
  elif (original.format.color_family == clip.format.color_family):
    original = core.resize.Bicubic(clip=original, format=clip.format.id, range_s="limited")
  else:
    original = core.resize.Bicubic(clip=original, format=clip.format.id, matrix_in_s="709", range_s="limited")
stacked = core.std.StackHorizontal([original,clip])
# set output frame rate to 59.940fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=60000, fpsden=1001)
# Output
stacked.set_output()
-> can't reproduce the issue here.
Would need a sample which allows ne to reproduce the issue.

Quote:QT Prores is not showing in Avisynth "Filter View"/"Crop View" at all.
"Crop View": Avisynth isn't used during Crop View and Mencoder/MPlayer to not support ProRes4444
Nothing I can do about it.
"Filter View: Works fine here.
If you use 32bit Avisynth (the default), 4k and intensive filtering might not work due to memory limitation.
-> would need details, since I can't reproduce the issue here.

Quote:Avisynth "Despot" shows highlighted noise instead of remove it .
I can reproduce it, happens when Hybrid converts to YUY2 and feeds that to DeSpot, works fine with YV16.
-> should be fixed now


=> will send you a link to a new dev version in ~20min

Cu selur
Reply


Messages In This Thread
Multiple issues - by serg - 17.11.2020, 09:54
RE: Multiple issues - by Selur - 17.11.2020, 09:56
RE: Multiple issues - by Selur - 17.11.2020, 15:59
RE: Multiple issues - by serg - 19.11.2020, 00:10
RE: Multiple issues - by Selur - 19.11.2020, 06:17
RE: Multiple issues - by serg - 19.11.2020, 13:40
RE: Multiple issues - by Selur - 19.11.2020, 19:04
RE: Multiple issues - by serg - 01.12.2020, 20:16
RE: Multiple issues - by Selur - 01.12.2020, 20:29
RE: Multiple issues - by serg - 01.12.2020, 22:53
RE: Multiple issues - by Selur - 01.12.2020, 23:00
RE: Multiple issues - by Selur - 01.12.2020, 23:07
RE: Multiple issues - by serg - 01.12.2020, 23:48
RE: Multiple issues - by Selur - 01.12.2020, 23:51
RE: Multiple issues - by serg - 02.12.2020, 00:28
RE: Multiple issues - by Selur - 02.12.2020, 00:09
RE: Multiple issues - by Selur - 02.12.2020, 00:36
RE: Multiple issues - by serg - 02.12.2020, 00:56
RE: Multiple issues - by Selur - 02.12.2020, 02:33
RE: Multiple issues - by serg - 02.12.2020, 04:55
RE: Multiple issues - by Selur - 02.12.2020, 08:50
RE: Multiple issues - by serg - 02.12.2020, 09:29
RE: Multiple issues - by Selur - 02.12.2020, 09:32
RE: Multiple issues - by Selur - 02.12.2020, 10:11
RE: Multiple issues - by serg - 02.12.2020, 19:26
RE: Multiple issues - by Selur - 02.12.2020, 19:29
RE: Multiple issues - by serg - 04.12.2020, 01:01
RE: Multiple issues - by serg - 04.12.2020, 03:15
RE: Multiple issues - by Selur - 04.12.2020, 05:23
RE: Multiple issues - by serg - 04.12.2020, 05:46
RE: Multiple issues - by Selur - 04.12.2020, 05:49
RE: Multiple issues - by Selur - 04.12.2020, 17:02
RE: Multiple issues - by serg - 05.12.2020, 00:09
RE: Multiple issues - by serg - 05.12.2020, 07:35
RE: Multiple issues - by Selur - 05.12.2020, 08:52
RE: Multiple issues - by serg - 05.12.2020, 09:17
RE: Multiple issues - by serg - 06.12.2020, 22:47
RE: Multiple issues - by Selur - 07.12.2020, 05:51
RE: Multiple issues - by serg - 07.12.2020, 06:51
RE: Multiple issues - by serg - 07.12.2020, 10:00
RE: Multiple issues - by Selur - 07.12.2020, 16:43
RE: Multiple issues - by Selur - 07.12.2020, 18:22
RE: Multiple issues - by serg - 08.12.2020, 00:01
RE: Multiple issues - by Selur - 08.12.2020, 05:42
RE: Multiple issues - by serg - 08.12.2020, 08:22
RE: Multiple issues - by serg - 08.12.2020, 18:21
RE: Multiple issues - by Selur - 08.12.2020, 19:48
RE: Multiple issues - by Selur - 08.12.2020, 20:15
RE: Multiple issues - by serg - 08.12.2020, 23:20
RE: Multiple issues - by Selur - 08.12.2020, 23:32
RE: Multiple issues - by Selur - 09.12.2020, 19:15
RE: Multiple issues - by serg - 09.12.2020, 21:27
RE: Multiple issues - by Selur - 09.12.2020, 21:51
RE: Multiple issues - by serg - 10.12.2020, 10:06
RE: Multiple issues - by Selur - 10.12.2020, 10:35
RE: Multiple issues - by serg - 10.12.2020, 11:03
RE: Multiple issues - by Selur - 10.12.2020, 11:33
RE: Multiple issues - by serg - 13.12.2020, 15:19
RE: Multiple issues - by Selur - 13.12.2020, 15:43
RE: Multiple issues - by Selur - 13.12.2020, 16:04
RE: Multiple issues - by Selur - 13.12.2020, 18:55
RE: Multiple issues - by serg - 14.12.2020, 00:24
RE: Multiple issues - by Selur - 14.12.2020, 05:25
RE: Multiple issues - by serg - 14.12.2020, 06:12
RE: Multiple issues - by Selur - 14.12.2020, 17:23
RE: Multiple issues - by Selur - 14.12.2020, 19:02
RE: Multiple issues - by serg - 14.12.2020, 19:06
RE: Multiple issues - by Selur - 14.12.2020, 20:07
RE: Multiple issues - by Selur - 14.12.2020, 21:36
RE: Multiple issues - by Selur - 15.12.2020, 17:50
RE: Multiple issues - by serg - 15.12.2020, 19:46
RE: Multiple issues - by Selur - 15.12.2020, 20:22
RE: Multiple issues - by Selur - 16.12.2020, 18:14

Forum Jump:


Users browsing this thread: 11 Guest(s)