Simon Pinfold

Results 30 comments of Simon Pinfold

Maybe also allow a directory and have it use the automatic default filename too. e.g. `-o outfiles/gobuster/`

I'd be concerned about the CPU usage of encoding jpegs at a rate that png's are causing bandwidth issues. If you need high frequency images sent over network I feel...

Ah, yeah that makes sense where you need individual sources. Code wise, JPEG support should (hopefully) be as simple as changing `AV_CODEC_ID_PNG` to `AV_CODEC_ID_JPEG` https://github.com/synap5e/obs-screenshot-plugin/blob/master/screenshot-filter.c#L452 I can see how well...

Marking this as `help wanted` in the meantime. If anyone wishes to experiment with `AV_CODEC_ID` and/or `sws_scale` along with the corresponding properties (dropdowns, etc.) I would be happy to help...

The fork https://github.com/norihiro/obs-screenshot-plugin has this

The HTTP PUT depends on windows, but this could easily be ifdef'd out. It also uses windows threads, so this would need to be ported to e.g. pthreads. If anyone...

Looks like https://github.com/norihiro/obs-screenshot-plugin has this - could be nice to get the two merged back to one...

Or just pull from the fork https://github.com/norihiro/obs-screenshot-plugin lol

Hi Does the 'output to folder' option solve your first use case? This outputs to multiple files using the date for each capture taken. For use case 2 I feel...

I use the so called "in-tree" method for building this plugin. You start by getting OBS able to compile in Visual Studio (there are several tutorials around), then copy/clone this...