Victor

Results 365 comments of Victor

I'd check on the server-side, that there's any non-black pixels actually captured. You may get blank stream when trying to capture digitally protected video.

While `WithCancellation` generally works it gets tedious do add it instead of using the regular `CancellationToken` parameter. It is also unclear how to gracefully terminate the whole RPC setup when...

@silbergrom did you figure this one out? Is there a tutorial on how to create an AppID that form demands? Is it just an Azure app identifier?

@bengreenier does your fork have a release I could just download and import without NPM?

Just tried on my WSL 2 Ubuntu 20.04 install + WSLg + CUDA 11.4 which I use for ML. ### Headless Fails to start X11. The [suggested hack with EDID](https://games-on-whales.github.io/gow/monitor.html#_force_xorg_to_use_a_custom_edid)...

After updating wsl with `wsl --update`, `/dev/dri` is now available and so Sunshine starts, and I can access the web UI, but Moonlight still can not connect to it. [sunshine-wsl2.log](https://github.com/games-on-whales/gow/files/10807711/sunshine-wsl2.log)...

> Can you try running vainfo and see what's reported? ``` libva info: VA-API version 1.7.0 libva error: vaGetDriverNameByIndex() failed with invalid VADisplay, driver_name = (null) vaInitialize failed with error...

The scenario I worked with is `dumpbin` from C++ build tools, and it failed with my FS until I did fill the buffer (but didn't fail on a raw file)....

Reasonably sure. This is the end of the method before the fix ```csharp bytesRead = stream.Read(buffer, 0, buffer.Length); return DokanResult.Success; ```

So I tried the suggested change, and `dumpbin` is still misbehaving when I read less than requested. Could still be bug elsewhere in dokan, but maybe it is a bug...