Preview video on Nvidia video cards

Things you’d like to miss in the future...
highend
Posts: 13274
Joined: 06 Feb 2011 00:33

Re: Preview video on Nvidia video cards

Post by highend »

The overall solution is still simple, write an AutoHotkey script that runs constantly in the background, checking the registry each 5 seconds if that key exists and if that's the case, let it delete it. Done
One of my scripts helped you out? Please donate via Paypal

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

This is the only way it works for me:
Image
Image

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

highend wrote: 02 Aug 2021 22:43 The overall solution is still simple, write an AutoHotkey script that runs constantly in the background, checking the registry each 5 seconds if that key exists and if that's the case, let it delete it. Done
It is important that xyplorer is started without this registry key. If you change the registry key while the xyplorer is running, it will not change anything. You will need to restart the xyplorer.

Now I'll shoot a video of how it happens.

highend
Posts: 13274
Joined: 06 Feb 2011 00:33

Re: Preview video on Nvidia video cards

Post by highend »

Again, LAV filters are 100% working here, without any configuration or limitations...
It is important that xyplorer is started without this registry key.
And what has a (compiled) AutoHotkey script to do with XYplorer?
One of my scripts helped you out? Please donate via Paypal

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

Are you checking on the nvidia gtx10xx video card?
The fact that everything works for you ...

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

Here's what I get:
https://youtu.be/22YxmpRsvL4

highend
Posts: 13274
Joined: 06 Feb 2011 00:33

Re: Preview video on Nvidia video cards

Post by highend »

With a working driver on my 3rd PC, yeah...
One of my scripts helped you out? Please donate via Paypal

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

highend wrote: 03 Aug 2021 00:16 With a working driver on my 3rd PC, yeah...
Windows 10 x64 ?
and the latest drivers from nvidia?

highend
Posts: 13274
Joined: 06 Feb 2011 00:33

Re: Preview video on Nvidia video cards

Post by highend »

A working, not the latest^^ v391.35...
One of my scripts helped you out? Please donate via Paypal

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

Have you tried with the latest 471.41 ?
After all, it works for me with the latest drivers, before the key appears in the registry
Last edited by zakoul on 03 Aug 2021 00:48, edited 1 time in total.

highend
Posts: 13274
Joined: 06 Feb 2011 00:33

Re: Preview video on Nvidia video cards

Post by highend »

No, afaik that was the last "good" version
One of my scripts helped you out? Please donate via Paypal

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

how difficult it is to communicate through google translate

admin
Site Admin
Posts: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Preview video on Nvidia video cards

Post by admin »

Is this all about MKV videos?

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

Any video format.

zakoul
Posts: 130
Joined: 11 Dec 2019 10:44

Re: Preview video on Nvidia video cards

Post by zakoul »

highend, I created a script "delete reg key.xys" and put it in the "<xydata>/Script" folder:

Code: Select all

    $comspec = ("%osbitness%" == 64) ? "%windir%\System32\cmd.exe" : "%windir%\SysWOW64\cmd.exe";
    $command = <<<>>>
"$comspec" /c reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Direct3D\Shims\EnableOverlays" /v "C:\Program Files (x86)\XYplorer\XYplorer.exe" /f
    >>>;
    run $command, , 0, 0;
Created a shortcut on the desktop:

Code: Select all

"C:\Program Files (x86)\XYplorer\XYplorer.exe" /feed='::load "C:\Users\zakoul\AppData\Roaming\XYplorer\Scripts\delete reg key.xys";'
If you run the script in xyplorer, then it works and the data is deleted from the registry. But if you run the xyplorer through a shortcut, then nothing works :(.
I created another shortcut:

Code: Select all

"C:\Program Files (x86)\XYplorer\XYplorer.exe" /script="%AppData%\XYplorer\Scripts\delete reg key.xys"
This is how it works. Did I do everything right? Or do you need to run it through "/feed" ?

Post Reply