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.

HDR encoding
#36
Indexing finished without a problem.

Script looks fine:
# Imports
import vapoursynth as vs
core = vs.get_core()
# Loading Plugins
core.avs.LoadPlugin(path="C:/Program Files/Hybrid/vsfilters/SourceFilter/DGDecNV/DGDecodeNV.dll")
# Loading D:\UHD\x\x.mkv using D2VSource
clip = core.avs.DGSource("C:/Users/Bogárdi Mátyás/AppData/Local/Temp/11_21_27_4610.dgi", fulldepth=true)
# making sure input color matrix is set as 2020ncl
clip = core.resize.Point(clip, matrix_in_s="2020ncl")
# Making sure input color range is set to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# adjusting output color from: YUV420P16 to YUV420P10
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10)
# Output
clip.set_output()

Decoder and encoder call look fine too:
"C:\PROGRA~1\Hybrid\VAPOUR~1\vspipe.exe" "C:\Users\Bogárdi Mátyás\AppData\Local\Temp\encodingTempSynthSkript_11_21_27_4610.vpy" - --y4m | c:\PROGRA~1\Hybrid\x265.exe" --preset slow --tune grain --input - --output-depth 10 --y4m --profile main10 --crf 24.00 --qpfile "C:\Users\BOGRDI~1\AppData\Local\Temp\teszt_11_21_27_4610_04.qp" --range limited --colormatrix bt2020nc --output "C:\Users\BOGRDI~1\AppData\Local\Temp\11_21_27_4610_05.265"
What happens when you call:
"C:\PROGRA~1\Hybrid\VAPOUR~1\vspipe.exe" --info "C:\Users\Bogárdi Mátyás\AppData\Local\Temp\encodingTempSynthSkript_11_21_27_4610.vpy" -
and assuming there is no problem what happens if you call:
"C:\PROGRA~1\Hybrid\VAPOUR~1\vspipe.exe" "C:\Users\Bogárdi Mátyás\AppData\Local\Temp\encodingTempSynthSkript_11_21_27_4610.vpy" - --y4m | c:\PROGRA~1\Hybrid\x265.exe" --preset slow --tune grain --input - --output-depth 10 --y4m --profile main10 --crf 24.00 --qpfile "C:\Users\BOGRDI~1\AppData\Local\Temp\teszt_11_21_27_4610_04.qp" --range limited --colormatrix bt2020nc --output "C:\Users\BOGRDI~1\AppData\Local\Temp\11_21_27_4610_05.265"

Only thing that might cause a problem might be that the temp path contains special characters. Iirc Vapoursynth can handle them fine, but I'm not sure about DGSource and DGDDecNV. -> Does is work if you use a simple path like 'X:\Temp' as temp folder?

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
HDR encoding - by mparade - 28.08.2017, 14:44
RE: HDR encoding - by Selur - 28.08.2017, 16:18
RE: HDR encoding - by mparade - 28.08.2017, 18:10
RE: HDR encoding - by Selur - 28.08.2017, 18:16
RE: HDR encoding - by mparade - 28.08.2017, 18:22
RE: HDR encoding - by Selur - 28.08.2017, 19:12
RE: HDR encoding - by mparade - 28.08.2017, 20:55
RE: HDR encoding - by Selur - 28.08.2017, 21:08
RE: HDR encoding - by mparade - 28.08.2017, 21:19
RE: HDR encoding - by mparade - 29.08.2017, 00:52
RE: HDR encoding - by Selur - 29.08.2017, 05:40
RE: HDR encoding - by mparade - 29.08.2017, 08:27
RE: HDR encoding - by Selur - 29.08.2017, 09:39
RE: HDR encoding - by mparade - 29.08.2017, 10:56
RE: HDR encoding - by Selur - 29.08.2017, 11:08
RE: HDR encoding - by mparade - 29.08.2017, 12:53
RE: HDR encoding - by Selur - 29.08.2017, 13:07
RE: HDR encoding - by mparade - 06.09.2017, 12:34
RE: HDR encoding - by Selur - 06.09.2017, 16:13
RE: HDR encoding - by mparade - 06.09.2017, 17:37
RE: HDR encoding - by Selur - 06.09.2017, 18:27
RE: HDR encoding - by mparade - 06.09.2017, 19:24
RE: HDR encoding - by Selur - 06.09.2017, 19:32
RE: HDR encoding - by mparade - 06.09.2017, 21:21
RE: HDR encoding - by Selur - 07.09.2017, 05:59
RE: HDR encoding - by mparade - 07.09.2017, 08:27
RE: HDR encoding - by Selur - 07.09.2017, 18:55
RE: HDR encoding - by mparade - 08.09.2017, 15:28
RE: HDR encoding - by Selur - 08.09.2017, 16:07
RE: HDR encoding - by Selur - 08.09.2017, 18:00
RE: HDR encoding - by mparade - 08.09.2017, 18:57
RE: HDR encoding - by mparade - 08.09.2017, 19:14
RE: HDR encoding - by Selur - 08.09.2017, 19:10
RE: HDR encoding - by Selur - 08.09.2017, 22:37
RE: HDR encoding - by mparade - 09.09.2017, 11:28
RE: HDR encoding - by Selur - 09.09.2017, 12:47
RE: HDR encoding - by mparade - 09.09.2017, 14:53
RE: HDR encoding - by Selur - 09.09.2017, 15:03
RE: HDR encoding - by mparade - 09.09.2017, 15:05
RE: HDR encoding - by Selur - 09.09.2017, 15:14
RE: HDR encoding - by mparade - 09.09.2017, 15:32
RE: HDR encoding - by Selur - 09.09.2017, 15:39
RE: HDR encoding - by Selur - 09.09.2017, 15:40
RE: HDR encoding - by mparade - 09.09.2017, 15:48
RE: HDR encoding - by Selur - 09.09.2017, 15:50
RE: HDR encoding - by mparade - 09.09.2017, 16:08
RE: HDR encoding - by Selur - 09.09.2017, 16:16
RE: HDR encoding - by mparade - 09.09.2017, 16:26
RE: HDR encoding - by Selur - 09.09.2017, 16:35
RE: HDR encoding - by mparade - 09.09.2017, 16:45
RE: HDR encoding - by mparade - 09.09.2017, 19:17
RE: HDR encoding - by Selur - 09.09.2017, 19:38
RE: HDR encoding - by mparade - 09.09.2017, 20:12
RE: HDR encoding - by Selur - 09.09.2017, 20:36
RE: HDR encoding - by Selur - 09.09.2017, 20:44
RE: HDR encoding - by mparade - 09.09.2017, 20:47
RE: HDR encoding - by Selur - 09.09.2017, 21:27
RE: HDR encoding - by mparade - 10.09.2017, 14:56
RE: HDR encoding - by Selur - 10.09.2017, 14:59
RE: HDR encoding - by mparade - 10.09.2017, 15:03
RE: HDR encoding - by Selur - 10.09.2017, 16:02
RE: HDR encoding - by mparade - 10.09.2017, 16:16
RE: HDR encoding - by Selur - 10.09.2017, 16:26
RE: HDR encoding - by mparade - 12.09.2017, 20:14
RE: HDR encoding - by Selur - 12.09.2017, 20:36
RE: HDR encoding - by mparade - 13.09.2017, 21:54
RE: HDR encoding - by Selur - 14.09.2017, 05:19
RE: HDR encoding - by mparade - 14.09.2017, 08:24
RE: HDR encoding - by mparade - 16.09.2017, 14:38
RE: HDR encoding - by videoh - 16.10.2017, 16:29
RE: HDR encoding - by Selur - 16.09.2017, 20:45
RE: HDR encoding - by videoh - 16.10.2017, 22:22
RE: HDR encoding - by Selur - 17.10.2017, 01:04

Forum Jump:


Users browsing this thread: 1 Guest(s)