Powerful OCR for OBS with FREE plugin [2min Tutorial]

Опубликовано: 24 Апрель 2026
на канале: Roy Shilkrot
3,417
27

Read text from any game / sports / screen image or video on OBS using URL/API Source and Google Cloud Vision APIs. Simple 2 minute method

Check out my latest OCR plugin https://obsproject.com/forum/resource... real-time local free OCR that runs on your machine

Setup Google Vision API: https://cloud.google.com/vision/docs/ocr
URL API Source: https://github.com/locaal-ai/obs-urls...

URL: `https://vision.googleapis.com/v1/imag...{{REPLACE_API_KEY}}`
Body:
```
{
"requests": [
{
"image": {
"content": "{{imageb64}}"
},
"features": [
{
"type": "TEXT_DETECTION"
}
]
}
]
}
```
JSON Path: `$.responses.0.textAnnotations..description`