Search found 168 matches

by DJATOM
Fri May 04, 2018 6:22 am
Forum: DGDecNV
Topic: [SOLVED] VS mode can't open DVD
Replies: 20
Views: 20122

Re: VS mode cant open DVD

Also noticed some glitches with show=True
Image
by DJATOM
Fri May 04, 2018 6:18 am
Forum: DGDecNV
Topic: [SOLVED] VS mode can't open DVD
Replies: 20
Views: 20122

Re: VS mode cant open DVD

Downgraded to 391.35 and it fixed "exit on refresh" issue. But I found another similar problem. with show=True I can load the video, but on scrolling (backward/forward) application is closing on it's own. Is that something on my side or with dgtools?
by DJATOM
Thu May 03, 2018 7:32 pm
Forum: DGDecNV
Topic: [SOLVED] VS mode can't open DVD
Replies: 20
Views: 20122

Re: VS mode cant open DVD

Reinstalled entire system so yeah, the latest driver from Nvidia. Okay, will downgrade to something order then. I knew that the latest update is evil :evil:
About crashdumps... Application is just exiting on refresh, no error messages or so. Where I can retrieve such logs? :)
by DJATOM
Thu May 03, 2018 5:28 pm
Forum: DGDecNV
Topic: [SOLVED] VS mode can't open DVD
Replies: 20
Views: 20122

Re: VS mode cant open DVD

My VapourSynth Editor crashes on refreshing, but idk if that's on my side (I'm using self-built R44-test1 from github) or DGDecoder's fault, so we'll wait for another reports. My workflow is depend on last changes, so I need to use it. And downgrading is sort of hassle, so I'd like to wait for repor...
by DJATOM
Thu May 03, 2018 5:12 am
Forum: DGDecNV
Topic: [SOLVED] VS mode can't open DVD
Replies: 20
Views: 20122

Re: VS mode cant open DVD

I can reproduce with random dvd source 2018-05-03 13:11:17.818 Error on frame 0 request: Resize error: Resize error 3074: unrecognized transfer characteristics (0/0/0 => 0/0/0). May need to specify additional colorspace parameters. 2018-05-03 13:11:21.193 Error on frame 4 request: Resize error: Resi...
by DJATOM
Fri Apr 27, 2018 4:22 pm
Forum: DGDecNV
Topic: nVidia deprecation issues
Replies: 21
Views: 63952

Re: nVidia deprecation issues

Thx, my notebook's gt555m is quite oldschool hardware now.
I'll stick with installed driver then.
by DJATOM
Thu Apr 19, 2018 5:08 am
Forum: CUDA Filters
Topic: HDR -> SDR conversion
Replies: 591
Views: 705185

Re: HDR -> SDR tonemapping

ConvertBits(8) just drops the Least significant bit, so you need to add dither=0 or 1, whatever method you want to use there.
by DJATOM
Thu Apr 19, 2018 4:42 am
Forum: CUDA Filters
Topic: HDR -> SDR conversion
Replies: 591
Views: 705185

Re: HDR -> SDR tonemapping

fmtc can do bits conversion. If you don't want to convert with fmtc, internal resizers can perform bits conversion as well:

Code: Select all

from vapoursynth import core, YUV420P16
...
clip = core.resize.Point(clip, format=YUV420P16)
by DJATOM
Mon Mar 26, 2018 1:33 pm
Forum: CUDA Filters
Topic: HDR -> SDR conversion
Replies: 591
Views: 705185

Re: HDR -> SDR tonemapping

Also checked without up-conversion to 16 bits, that works as intended. LwlibavVideoSource("D:\ACCEL_WORLD_INFINITE_BURST_UHD\BDMV\STREAM\00004.m2ts") ConvertFromDoubleWidth(bits=10) z_ConvertFormat(pixel_type="RGBPS",colorspace_op="2020ncl:st2084:2020:l=>rgb:linear:2020:l", dither_type="none") DGRei...
by DJATOM
Mon Mar 26, 2018 1:18 pm
Forum: CUDA Filters
Topic: HDR -> SDR conversion
Replies: 591
Views: 705185

Re: HDR -> SDR tonemapping

Code: Select all

LwlibavVideoSource("D:\ACCEL_WORLD_INFINITE_BURST_UHD\BDMV\STREAM\00004.m2ts")
ConvertFromDoubleWidth(bits=10)
ConvertBits(16)
That way I get native 16 bit video (checked with ConvertBits(8,dither=0) and ConvertToStacked(), both produce valid output for me.
by DJATOM
Mon Mar 26, 2018 2:27 am
Forum: CUDA Filters
Topic: HDR -> SDR conversion
Replies: 591
Views: 705185

Re: HDR -> SDR tonemapping

So I'm trying to test the DGTonemap plugin without DGSource (as I don't have a HEVC decoding GPU). I'm not sure what the plugin expects as input. As 16 bit source, it returns double the height but a proper image at the top. This is my script (cropping the bottom) LSMASHVideoSource("source.mp4", sta...
by DJATOM
Sun Mar 25, 2018 4:34 am
Forum: CUDA Filters
Topic: HDR -> SDR conversion
Replies: 591
Views: 705185

Re: HDR -> SDR tonemapping for DGDecodeNV

Selur wrote:
Sun Mar 25, 2018 3:15 am
Just wondering, since the current version of DGTonemap aims at Avisynth+, do you plan to create a version for Avisynth 2.6 too?

Cu Selur
2.6 one requires stacked or interleaved hack to work with HBD video. Not sure if avsresize support it. :scratch:
by DJATOM
Wed Mar 21, 2018 12:48 pm
Forum: DGDecNV
Topic: Feature Requests
Replies: 712
Views: 884656

Re: Feature Requests

- Make everything work as mtmode 2 in AVS+ :) MT_NICE_FILTER will be better I think ;) As I understood from explanations and filter examples, programmer must care about memory allocations at getframe requests, not at the filter constructor. Mt mode 2 will care about safe memory allocation if filter...
by DJATOM
Thu Nov 16, 2017 9:20 pm
Forum: DGDecNV
Topic: [RESOLVED] DGIndexNV batch job
Replies: 16
Views: 14897

Re: DGIndexNV batch job

Code: Select all

@echo off
for %%m in (%*) do (
	C:\encoder\dgdecnv\DGIndexNV -i %%m -o "%%~nm.dgi" -h 
	echo Indexed "%%~nxm".
)
pause
Change executable path to your own and save as "batch_dgindexNV.bat".
Just drag&drop your files onto that batch and it will index your files.
by DJATOM
Thu Apr 13, 2017 11:46 am
Forum: DGDecIM and Other IM Tools
Topic: [RESOLVED] Possibility to index 10-bit encodes
Replies: 6
Views: 21447

Re: Possibility to index 10-bit encodes

As I said earlier, I need that to know where IDR frames placed, than I can replace that GOP from fresh encode (my use case is fine-tuned filtering on fades, banding removal, custom anti-aliasing and other scene-like optimisations). So I take into account where IDRs placed and pad it with few frames ...
by DJATOM
Thu Apr 13, 2017 7:39 am
Forum: DGDecIM and Other IM Tools
Topic: [RESOLVED] Possibility to index 10-bit encodes
Replies: 6
Views: 21447

Re: Possibility to index 10-bit encodes

Nope, I meant *.264 files. I don't need "valid" playback, just allowing to index is fine. DGDecNV can index 10-bit .264 files (the decoding is broken though). When trying to index with DGDecIM I'm get --------------------------- Error --------------------------- 10-bit encodings not supported! -----...
by DJATOM
Thu Apr 13, 2017 5:30 am
Forum: DGDecIM and Other IM Tools
Topic: [RESOLVED] Possibility to index 10-bit encodes
Replies: 6
Views: 21447

[RESOLVED] Possibility to index 10-bit encodes

I know that DGDecIM does not support 10 bit decoding, but I use .dgi files for finding IDRs and "fixing" bad parts in already encoded files. DGDecNV can index 10-bit encodes, but recently my GTX 750's Fan died (I bought new one on Alliexpress and waiting for delivery), so now I'm on iGPU and can't i...
by DJATOM
Fri Jul 29, 2016 10:56 am
Forum: DGDecNV
Topic: [CLOSED] Survey: Who still needs Avisynth 2.58 support in DGDecodeNV?
Replies: 22
Views: 24620

Re: Survey: Who still needs Avisynth 2.58 support in DGDecodeNV?

I'm using Avs+ x64, my filtering chain works faster with it.