vapoursynth-ocr

VapourSynth filter for optical character recognition using Tesseract

brewmacoslinux
Try with needOr install directly
Source

About

VapourSynth filters - Tesseract OCR filter

Commands

vapoursynth-ocr

Examples

Load OCR filter in a VapourSynth script to extract text from video frames$ import vapoursynth as vs; core = vs.core; core.ocr.Tesseract(clip)
Apply OCR filter with custom language parameter in VapourSynth$ core.ocr.Tesseract(clip, language='eng+jpn')
Process video file with OCR filter and export results$ vspipe script.vpy - | ffmpeg -i pipe: output.mp4