https://github.com/univrsal/scrab
Screenshot plugin for obs-studio
https://github.com/univrsal/scrab
obs-studio plugin screenshot
Last synced: about 2 months ago
JSON representation
Screenshot plugin for obs-studio
- Host: GitHub
- URL: https://github.com/univrsal/scrab
- Owner: univrsal
- License: gpl-2.0
- Created: 2019-08-17T19:04:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T12:09:10.000Z (about 3 years ago)
- Last Synced: 2025-04-03T23:41:28.248Z (6 months ago)
- Topics: obs-studio, plugin, screenshot
- Language: C++
- Size: 2.1 MB
- Stars: 79
- Watchers: 3
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# scrab
**Scr**een gr**ab**
adds a configurable hotkey to quickly select a screen region and add it as an image source to the current sceneThe plugin saves all screenshots into your home directory by default. If you wish to change that, open your obs-studio config
and edit it:### Windows:
Open ``%appdata%\obs-studio\global.ini``
### Linux:
Open ``~/.config/obs-studio/global.ini``Then add the following at the end of the file and replace ``{path}`` with whatever folder you want scrab to use for screenshots:
```ini
[scrab]
image_folder={path}
```### Demonstration
### Credits
Screenshot sourcecode reused and slightly tweaked from [qTox](https://github.com/qTox/qTox) licensed under the GPL v3.0:
- [screenshotgrabber.cpp](https://github.com/qTox/qTox/blob/master/src/widget/tool/screenshotgrabber.cpp)
- [screenshotgrabber.h](https://github.com/qTox/qTox/blob/master/src/widget/tool/screenshotgrabber.h)
- [screengrabberoverlayitem.cpp](https://github.com/qTox/qTox/blob/master/src/widget/tool/screengrabberoverlayitem.cpp)
- [screengrabberoverlayitem.h](https://github.com/qTox/qTox/blob/master/src/widget/tool/screengrabberoverlayitem.h)
- [screengrabberchooserrectitem.cpp](https://github.com/qTox/qTox/blob/master/src/widget/tool/screengrabberchooserrectitem.cpp)
- [screengrabberchooserrectitem.h](https://github.com/qTox/qTox/blob/master/src/widget/tool/screengrabberchooserrectitem.h)
- [toolboxgraphicsitem.cpp](https://github.com/qTox/qTox/blob/master/src/widget/tool/toolboxgraphicsitem.cpp)
- [toolboxgraphicsitem.h](https://github.com/qTox/qTox/blob/master/src/widget/tool/toolboxgraphicsitem.h)