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.

help please
#31
that sample does not seem to have the flags it gets detected as bt460
# Imports import sys import os import vapoursynth as vs # getting Vapoursynth core core = vs.core # Limit frame cache to 48449MB core.max_cache_size = 48449 # Import scripts folder scriptPath = 'F:/Hybrid/64bit/vsscripts' sys.path.insert(0, os.path.abspath(scriptPath)) # loading plugins core.std.LoadPlugin(path="F:/Hybrid/64bit/Vapoursynth/Lib/site-packages/vapoursynth/plugins2/fmtconv.dll") core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/SourceFilter/DGDecNV/DGDecodeNV_AVX2.dll") # Import scripts import validate # Source: 'C:\Users\Selur\Desktop\selur sample.mkv' # Current color space: YUV420P8, bit depth: 8, resolution: 700x476, frame rate: 23.976fps, scanorder: progressive, yuv luminance scale: limited, matrix: 470bg, format: AVC # Loading 'C:\Users\Selur\Desktop\selur sample.mkv' using DGSource clip = core.dgdecodenv.DGSource("J:/tmp/mkv_3361fb2859a06a1d0288f25dd3159329_853323747.dgi") # 23.976 fps, scanorder: progressive frame = clip.get_frame(0) # setting color matrix to 470bg. clip = core.std.SetFrameProps(clip, _Matrix=vs.MATRIX_BT470_BG) # setting color transfer (vs.TRANSFER_BT601), if it is not set. if validate.transferIsInvalid(clip): clip = core.std.SetFrameProps(clip=clip, _Transfer=vs.TRANSFER_BT601) # setting color primaries info (to vs.PRIMARIES_BT470_BG), if it is not set. if validate.primariesIsInvalid(clip): clip = core.std.SetFrameProps(clip=clip, _Primaries=vs.PRIMARIES_BT470_BG) # setting color range to TV (limited) range. prop_name = '_Range' if core.core_version.release_major >= 74 else '_ColorRange' clip = core.std.SetFrameProps(clip=clip, **{prop_name: vs.RANGE_LIMITED}) # making sure frame rate is set to 23.976fps clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001) # making sure the detected scan type is set (detected: progressive) clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # scan type: progressive # adjusting output color from YUV420P8 to YUV420P10 for NVEncModel clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10) # set output frame rate to 23.976fps (progressive) clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001) # output clip.set_output()

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Offline between (including) 29th of June and 5th of July => RockHarz Festival
Reply


Messages In This Thread
help please - by lsd4me2 - 01.04.2026, 21:36
RE: help please - by Selur - 02.04.2026, 06:56
RE: help please - by lsd4me2 - 03.04.2026, 19:06
RE: help please - by Selur - 03.04.2026, 19:22
RE: help please - by lsd4me2 - 06.04.2026, 02:39
RE: help please - by Selur - 06.04.2026, 05:06
RE: help please - by lsd4me2 - 06.04.2026, 05:56
RE: help please - by Selur - 06.04.2026, 06:01
RE: help please - by lsd4me2 - 06.04.2026, 06:14
RE: help please - by Selur - 06.04.2026, 07:20
RE: help please - by lsd4me2 - 06.04.2026, 07:51
RE: help please - by Selur - 06.04.2026, 10:50
RE: help please - by lsd4me2 - 06.04.2026, 18:21
RE: help please - by Selur - 06.04.2026, 18:24
RE: help please - by Selur - 06.04.2026, 19:12
RE: help please - by lsd4me2 - 16.04.2026, 01:20
RE: help please - by Selur - 16.04.2026, 08:56
RE: help please - by lsd4me2 - 16.04.2026, 09:21
RE: help please - by Selur - 16.04.2026, 09:47
RE: help please - by lsd4me2 - 16.04.2026, 12:52
RE: help please - by Selur - 16.04.2026, 13:00
RE: help please - by lsd4me2 - 16.04.2026, 14:15
RE: help please - by Selur - 16.04.2026, 14:45
RE: help please - by lsd4me2 - 16.04.2026, 15:05
RE: help please - by Selur - 16.04.2026, 15:40
RE: help please - by lsd4me2 - 16.04.2026, 17:23
RE: help please - by Selur - 16.04.2026, 18:34
RE: help please - by lsd4me2 - 05.05.2026, 03:58
RE: help please - by Selur - 05.05.2026, 04:29
RE: help please - by lsd4me2 - 05.05.2026, 06:52
RE: help please - by Selur - 05.05.2026, 09:20
RE: help please - by lsd4me2 - 05.05.2026, 10:23
RE: help please - by Selur - 05.05.2026, 11:21
RE: help please - by lsd4me2 - 06.05.2026, 02:37
RE: help please - by Selur - 06.05.2026, 04:34
RE: help please - by Selur - 07.05.2026, 14:50
RE: help please - by Selur - 07.05.2026, 18:41
RE: help please - by lsd4me2 - 08.05.2026, 03:10
RE: help please - by lsd4me2 - 09.05.2026, 05:50
RE: help please - by Selur - 09.05.2026, 08:34
RE: help please - by Selur - 09.05.2026, 09:34
RE: help please - by lsd4me2 - 09.05.2026, 11:15
RE: help please - by Selur - 09.05.2026, 12:37
RE: help please - by lsd4me2 - 17.05.2026, 18:54
RE: help please - by Selur - 17.05.2026, 19:25

Forum Jump:


Users browsing this thread: 1 Guest(s)