Georgi Gerganov

Results 420 comments of Georgi Gerganov

What operating system and compiler are you using? It appears your environment does not allow thread creation. What happens if you try to build and run the following `test.cpp` program:...

The capturing tools do support an option to select the microphone to use (i.e. the capture device). You simply need to provide the command line argument `-cN` where you replace...

Laptop keyboards usually have very bad recall rate - the main reason is that the sound of the keys is very low. I myself have had a nice recall rate...

I've never built the project on Windows. I believe some modifications will be necessary in order to make it build successfully and run. Can you provide details how you managed...

Added build instructions for Windows with MSYS2 + MinGW.

Hi, you have correctly noted that the rendered texture in the ImGui server is not part of the ImGuiDrawData() that is streamed to the clients. It is however completely possible...

That's exactly right! On the javascript side: - the following piece of code should be changed like this: ```javascript if (texture_id == 1) { this.gl.activeTexture(this.gl.TEXTURE0); this.gl.bindTexture(this.gl.TEXTURE_2D, this.tex_font_id); } ``` into...

@tom-garford I just added support for multiple textures - Grayscale, RGB and RGBA. Checkout the new example for more info: https://github.com/ggerganov/imgui-ws/tree/master/examples/textures-null By the way, it turned out to be a...

Give it a try again - it works now: http://imgui-ws.ggerganov.com:5001

Thanks for the link. This will be supported, but I cannot provide ETA at the moment.