2 Star 5 Fork 1

SWHL/RapidVideOCR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
demo.py 725 Bytes
一键复制 编辑 原始数据 按行查看 历史
SWHL 提交于 2023-07-19 14:29 . Adapted the parameters of VSF.
# -*- encoding: utf-8 -*-
# @Author: SWHL
# @Contact: [email protected]
# 提取 + 识别
from rapid_videocr import RapidVideoSubFinderOCR
vsf_exe = r"G:\ProgramFiles\VideoSubFinder_6.10_x64\Release_x64\VideoSubFinderWXW.exe"
vsf_ocr = RapidVideoSubFinderOCR(vsf_exe_path=vsf_exe, is_concat_rec=True)
# video_path可以是目录或者具体video路径
video_path = "test_files/tiny/2.mp4"
save_dir = "outputs"
vsf_ocr(video_path, save_dir)
# 只识别
from rapid_videocr import RapidVideOCR
extractor = RapidVideOCR(is_concat_rec=True, is_print_console=False)
rgb_dir = "test_files/RGBImagesTiny"
save_dir = "outputs"
save_name = "a"
# outputs/a.srt outputs/a.txt
extractor(rgb_dir, save_dir, save_name=save_name)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/SWHL/RapidVideOCR.git
[email protected]:SWHL/RapidVideOCR.git
SWHL
RapidVideOCR
RapidVideOCR
main

搜索帮助