diff --git a/.github/workflows/build-windows-cpu.yml b/.github/workflows/build-windows-cpu.yml new file mode 100644 index 00000000..e0dc5221 --- /dev/null +++ b/.github/workflows/build-windows-cpu.yml @@ -0,0 +1,92 @@ +name: Build Windows CPU + +on: + push: + branches: + - '**' + workflow_dispatch: + inputs: + ssh: + description: 'SSH connection to Actions' + required: false + default: false + + +jobs: + build: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v4 + - name: 读取 VERSION + id: version + run: | + VERSION=$(sed -n 's/^VERSION = "\(.*\)"/\1/p' backend/config.py) + echo "VERSION=$VERSION" >> $GITHUB_ENV + echo "VERSION=$VERSION" >> $GITHUB_OUTPUT + shell: bash + # - name: 检查 tag 是否已存在 + # run: | + # TAG_NAME="${VERSION}" + # if git ls-remote --tags origin | grep -q "refs/tags/$TAG_NAME"; then + # echo "Tag $TAG_NAME 已存在,发布中止" + # exit 1 + # fi + # shell: bash + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pip' # caching pip dependencies + - run: pip install paddlepaddle==3.0.0rc1 + - run: pip install -r requirements.txt + - run: pip freeze > requirements.txt + - run: pip install QPT==1.0b8 setuptools + - name: 获取 site-packages 路径 + shell: bash + run: | + SITE_PACKAGES=$(python -c "import site, os; print(os.path.join(site.getsitepackages()[0], 'Lib', 'site-packages'))") + SITE_PACKAGES_UNIX=$(cygpath -u "$SITE_PACKAGES") + echo "site-packages路径: $SITE_PACKAGES" + echo "site-packages UNIX路径: $SITE_PACKAGES_UNIX" + echo "SITE_PACKAGES_UNIX=$SITE_PACKAGES_UNIX" >> $GITHUB_ENV + echo "SITE_PACKAGES=$SITE_PACKAGES" >> $GITHUB_ENV + - name: 修复QPT内部错误 + run: sed -i '98c\ try:\n dep = pkg.requires()\n except TypeError:\n continue' ${SITE_PACKAGES_UNIX}/qpt/kernel/qpackage.py + shell: bash + - name: Start SSH via tmate + if: (github.event.inputs.ssh == 'true' && github.event.inputs.ssh != 'false') || contains(github.event.action, 'ssh') + uses: mxschmitt/action-tmate@v3 + - run: | + python backend/tools/makedist.py && \ + mv ../vse_out ./vse_out && \ + rm -fv ./vse_out/*/opt/packages/numpy-2* + env: + QPT_Action: "True" + shell: bash + - name: 上传 Debug 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-cpu-debug + path: vse_out/Debug/ + - name: 上传 Release 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-cpu-release + path: vse_out/Release/ + - name: 打包 Release 文件夹 + run: | + cd vse_out/Release + 7z a -t7z -mx=9 -m0=LZMA2 -ms=on -mfb=64 -md=32m -mmt=on -v1888m vse-v${{ env.VERSION }}-windows-cpu.7z * && \ + # 检测是否只有一个分卷 + if [ -f vse-v${{ env.VERSION }}-windows-cpu.7z.001 ] && [ ! -f vse-v${{ env.VERSION }}-windows-cpu.7z.002 ]; then \ + mv vse-v${{ env.VERSION }}-windows-cpu.7z.001 vse-v${{ env.VERSION }}-windows-cpu.7z; fi + shell: bash + - name: Release + uses: softprops/action-gh-release@v1 + with: + prerelease: true + tag_name: ${{ env.VERSION }} + target_commitish: ${{ github.sha }} + name: 硬字幕提取器 ${{ env.VERSION }} + files: | + vse_out/Release/vse-v${{ env.VERSION }}-windows-cpu.7z* + \ No newline at end of file diff --git a/.github/workflows/build-windows-cuda-10.2.yml b/.github/workflows/build-windows-cuda-10.2.yml new file mode 100644 index 00000000..d0329153 --- /dev/null +++ b/.github/workflows/build-windows-cuda-10.2.yml @@ -0,0 +1,114 @@ +name: Build Windows CUDA 10.2 + +on: + push: + branches: + - '**' + workflow_dispatch: + inputs: + ssh: + description: 'SSH connection to Actions' + required: false + default: false + + +jobs: + build: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v4 + - name: 读取 VERSION + id: version + run: | + VERSION=$(sed -n 's/^VERSION = "\(.*\)"/\1/p' backend/config.py) + echo "VERSION=$VERSION" >> $GITHUB_ENV + echo "VERSION=$VERSION" >> $GITHUB_OUTPUT + shell: bash + # - name: 检查 tag 是否已存在 + # run: | + # TAG_NAME="${VERSION}" + # if git ls-remote --tags origin | grep -q "refs/tags/$TAG_NAME"; then + # echo "Tag $TAG_NAME 已存在,发布中止" + # exit 1 + # fi + # shell: bash + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: 'pip' # caching pip dependencies + - name: 部署 CUDA + uses: Jimver/cuda-toolkit@v0.2.21 + id: cuda-toolkit + with: + cuda: '10.2.89' + - run: echo "Installed cuda version is ${{steps.cuda-toolkit.outputs.cuda}}" + - run: echo "Cuda install location ${{steps.cuda-toolkit.outputs.CUDA_PATH}}" + - run: nvcc -V + - run: git clean -df + # 最后一个支持10.2版本的Paddle + # https://www.paddlepaddle.org.cn/documentation/docs/en/2.5/install/Tables_en.html + - run: python -m pip install paddlepaddle-gpu==2.5.2.post102 -f https://www.paddlepaddle.org.cn/whl/windows/mkl/avx/stable.html + - run: pip install -r requirements.txt + - run: pip freeze > requirements.txt + - run: pip install QPT==1.0b8 setuptools + - name: 获取 site-packages 路径 + shell: bash + run: | + SITE_PACKAGES=$(python -c "import site, os; print(os.path.join(site.getsitepackages()[0], 'Lib', 'site-packages'))") + SITE_PACKAGES_UNIX=$(cygpath -u "$SITE_PACKAGES") + echo "site-packages路径: $SITE_PACKAGES" + echo "site-packages UNIX路径: $SITE_PACKAGES_UNIX" + echo "SITE_PACKAGES_UNIX=$SITE_PACKAGES_UNIX" >> $GITHUB_ENV + echo "SITE_PACKAGES=$SITE_PACKAGES" >> $GITHUB_ENV + - name: 修复QPT内部错误 + run: sed -i '98c\ try:\n dep = pkg.requires()\n except TypeError:\n continue' ${SITE_PACKAGES_UNIX}/qpt/kernel/qpackage.py + shell: bash + - name: Start SSH via tmate + if: (github.event.inputs.ssh == 'true' && github.event.inputs.ssh != 'false') || contains(github.event.action, 'ssh') + uses: mxschmitt/action-tmate@v3 + - run: | + python backend/tools/makedist.py --cuda=10.2 && \ + mv ../vse_out ./vse_out && \ + git checkout requirements.txt && \ + pip download -d ./vse_out/Debug/opt/packages/ paddlepaddle-gpu==2.5.2.post102 -f https://www.paddlepaddle.org.cn/whl/windows/mkl/avx/stable.html && \ + pip download -d ./vse_out/Debug/opt/packages/ -r requirements.txt && \ + cp -rfv ./vse_out/Debug/opt/packages/* ./vse_out/Release/opt/packages/ && \ + rm -fv ./vse_out/*/opt/packages/numpy-2* + env: + QPT_Action: "True" + CUDA_PATH_V10_2: "${{steps.cuda-toolkit.outputs.CUDA_PATH}}" + shell: bash + - name: 部署 CUDNN + shell: bash + run: | + curl -L -o cudnn.zip "https://developer.download.nvidia.cn/compute/redist/cudnn/v7.6.5/cudnn-10.2-windows10-x64-v7.6.5.32.zip" && \ + unzip -j cudnn.zip "*/bin/*" -d "./vse_out/Debug/opt/CUDA/" && \ + unzip -j cudnn.zip "*/bin/*" -d "./vse_out/Release/opt/CUDA/" && \ + rm -fv cudnn.zip + - name: 上传 Debug 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2-debug + path: vse_out/Debug/ + - name: 上传 Release 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2-release + path: vse_out/Release/ + - name: 打包 Release 文件夹 + run: | + cd vse_out/Release + 7z a -t7z -mx=9 -m0=LZMA2 -ms=on -mfb=64 -md=32m -mmt=on -v1888m vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2.7z * && \ + # 检测是否只有一个分卷 + if [ -f vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2.7z.001 ] && [ ! -f vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2.7z.002 ]; then \ + mv vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2.7z.001 vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2.7z; fi + shell: bash + - name: Release + uses: softprops/action-gh-release@v1 + with: + prerelease: true + tag_name: ${{ env.VERSION }} + target_commitish: ${{ github.sha }} + name: 硬字幕提取器 ${{ env.VERSION }} + files: | + vse_out/Release/vse-v${{ env.VERSION }}-windows-nvidia-cuda-10.2.7z* \ No newline at end of file diff --git a/.github/workflows/build-windows-cuda-11.8.yml b/.github/workflows/build-windows-cuda-11.8.yml new file mode 100644 index 00000000..22c2ff69 --- /dev/null +++ b/.github/workflows/build-windows-cuda-11.8.yml @@ -0,0 +1,95 @@ +name: Build Windows CUDA 11.8 + +on: + push: + branches: + - '**' + workflow_dispatch: + inputs: + ssh: + description: 'SSH connection to Actions' + required: false + default: false + + +jobs: + build: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v4 + - name: 读取 VERSION + id: version + run: | + VERSION=$(sed -n 's/^VERSION = "\(.*\)"/\1/p' backend/config.py) + echo "VERSION=$VERSION" >> $GITHUB_ENV + echo "VERSION=$VERSION" >> $GITHUB_OUTPUT + shell: bash + # - name: 检查 tag 是否已存在 + # run: | + # TAG_NAME="${VERSION}" + # if git ls-remote --tags origin | grep -q "refs/tags/$TAG_NAME"; then + # echo "Tag $TAG_NAME 已存在,发布中止" + # exit 1 + # fi + # shell: bash + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pip' # caching pip dependencies + - run: pip install paddlepaddle-gpu==3.0.0rc1 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/ + - run: pip install -r requirements.txt + - run: pip freeze > requirements.txt + - run: pip install QPT==1.0b8 setuptools + - name: 获取 site-packages 路径 + shell: bash + run: | + SITE_PACKAGES=$(python -c "import site, os; print(os.path.join(site.getsitepackages()[0], 'Lib', 'site-packages'))") + SITE_PACKAGES_UNIX=$(cygpath -u "$SITE_PACKAGES") + echo "site-packages路径: $SITE_PACKAGES" + echo "site-packages UNIX路径: $SITE_PACKAGES_UNIX" + echo "SITE_PACKAGES_UNIX=$SITE_PACKAGES_UNIX" >> $GITHUB_ENV + echo "SITE_PACKAGES=$SITE_PACKAGES" >> $GITHUB_ENV + - name: 修复QPT内部错误 + run: sed -i '98c\ try:\n dep = pkg.requires()\n except TypeError:\n continue' ${SITE_PACKAGES_UNIX}/qpt/kernel/qpackage.py + shell: bash + - name: Start SSH via tmate + if: (github.event.inputs.ssh == 'true' && github.event.inputs.ssh != 'false') || contains(github.event.action, 'ssh') + uses: mxschmitt/action-tmate@v3 + - run: | + python backend/tools/makedist.py && \ + mv ../vse_out ./vse_out && \ + git checkout requirements.txt && \ + pip download -d ./vse_out/Debug/opt/packages/ paddlepaddle-gpu==3.0.0rc1 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/ && \ + pip download -d ./vse_out/Debug/opt/packages/ -r requirements.txt && \ + cp -rfv ./vse_out/Debug/opt/packages/* ./vse_out/Release/opt/packages/ && \ + rm -fv ./vse_out/*/opt/packages/numpy-2* + env: + QPT_Action: "True" + shell: bash + - name: 上传 Debug 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8-debug + path: vse_out/Debug/ + - name: 上传 Release 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8-release + path: vse_out/Release/ + - name: 打包 Release 文件夹 + run: | + cd vse_out/Release + 7z a -t7z -mx=9 -m0=LZMA2 -ms=on -mfb=64 -md=32m -mmt=on -v1888m vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8.7z * && \ + # 检测是否只有一个分卷 + if [ -f vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8.7z.001 ] && [ ! -f vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8.7z.002 ]; then \ + mv vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8.7z.001 vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8.7z; fi + shell: bash + - name: Release + uses: softprops/action-gh-release@v1 + with: + prerelease: true + tag_name: ${{ env.VERSION }} + target_commitish: ${{ github.sha }} + name: 硬字幕提取器 ${{ env.VERSION }} + files: | + vse_out/Release/vse-v${{ env.VERSION }}-windows-nvidia-cuda-11.8.7z* \ No newline at end of file diff --git a/.github/workflows/build-windows-cuda-12.3.yml b/.github/workflows/build-windows-cuda-12.3.yml new file mode 100644 index 00000000..0f091a23 --- /dev/null +++ b/.github/workflows/build-windows-cuda-12.3.yml @@ -0,0 +1,95 @@ +name: Build Windows CUDA 12.3 + +on: + push: + branches: + - '**' + workflow_dispatch: + inputs: + ssh: + description: 'SSH connection to Actions' + required: false + default: false + + +jobs: + build: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v4 + - name: 读取 VERSION + id: version + run: | + VERSION=$(sed -n 's/^VERSION = "\(.*\)"/\1/p' backend/config.py) + echo "VERSION=$VERSION" >> $GITHUB_ENV + echo "VERSION=$VERSION" >> $GITHUB_OUTPUT + shell: bash + # - name: 检查 tag 是否已存在 + # run: | + # TAG_NAME="${VERSION}" + # if git ls-remote --tags origin | grep -q "refs/tags/$TAG_NAME"; then + # echo "Tag $TAG_NAME 已存在,发布中止" + # exit 1 + # fi + # shell: bash + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pip' # caching pip dependencies + - run: pip install paddlepaddle-gpu==3.0.0rc1 -i https://www.paddlepaddle.org.cn/packages/stable/cu123/ + - run: pip install -r requirements.txt + - run: pip freeze > requirements.txt + - run: pip install QPT==1.0b8 setuptools + - name: 获取 site-packages 路径 + shell: bash + run: | + SITE_PACKAGES=$(python -c "import site, os; print(os.path.join(site.getsitepackages()[0], 'Lib', 'site-packages'))") + SITE_PACKAGES_UNIX=$(cygpath -u "$SITE_PACKAGES") + echo "site-packages路径: $SITE_PACKAGES" + echo "site-packages UNIX路径: $SITE_PACKAGES_UNIX" + echo "SITE_PACKAGES_UNIX=$SITE_PACKAGES_UNIX" >> $GITHUB_ENV + echo "SITE_PACKAGES=$SITE_PACKAGES" >> $GITHUB_ENV + - name: 修复QPT内部错误 + run: sed -i '98c\ try:\n dep = pkg.requires()\n except TypeError:\n continue' ${SITE_PACKAGES_UNIX}/qpt/kernel/qpackage.py + shell: bash + - name: Start SSH via tmate + if: (github.event.inputs.ssh == 'true' && github.event.inputs.ssh != 'false') || contains(github.event.action, 'ssh') + uses: mxschmitt/action-tmate@v3 + - run: | + python backend/tools/makedist.py && \ + mv ../vse_out ./vse_out && \ + git checkout requirements.txt && \ + pip download -d ./vse_out/Debug/opt/packages/ paddlepaddle-gpu==3.0.0rc1 -i https://www.paddlepaddle.org.cn/packages/stable/cu123/ && \ + pip download -d ./vse_out/Debug/opt/packages/ -r requirements.txt && \ + cp -rfv ./vse_out/Debug/opt/packages/* ./vse_out/Release/opt/packages/ && \ + rm -fv ./vse_out/*/opt/packages/numpy-2* + env: + QPT_Action: "True" + shell: bash + - name: 上传 Debug 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3-debug + path: vse_out/Debug/ + - name: 上传 Release 文件夹到 Artifacts + uses: actions/upload-artifact@v4 + with: + name: vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3-release + path: vse_out/Release/ + - name: 打包 Release 文件夹 + run: | + cd vse_out/Release + 7z a -t7z -mx=9 -m0=LZMA2 -ms=on -mfb=64 -md=32m -mmt=on -v1888m vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3.7z * && \ + # 检测是否只有一个分卷 + if [ -f vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3.7z.001 ] && [ ! -f vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3.7z.002 ]; then \ + mv vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3.7z.001 vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3.7z; fi + shell: bash + - name: Release + uses: softprops/action-gh-release@v1 + with: + prerelease: true + tag_name: ${{ env.VERSION }} + target_commitish: ${{ github.sha }} + name: 硬字幕提取器 ${{ env.VERSION }} + files: | + vse_out/Release/vse-v${{ env.VERSION }}-windows-nvidia-cuda-12.3.7z* \ No newline at end of file diff --git a/backend/config.py b/backend/config.py index 5576f58e..337f236d 100644 --- a/backend/config.py +++ b/backend/config.py @@ -16,6 +16,8 @@ import paddle from tools.constant import * +# 项目版本号 +VERSION = "2.0.1" # 项目的base目录 BASE_DIR = str(Path(os.path.abspath(__file__)).parent) diff --git a/backend/ppocr/data/imaug/iaa_augment.py b/backend/ppocr/data/imaug/iaa_augment.py index 0aac7877..bf6ea2bf 100644 --- a/backend/ppocr/data/imaug/iaa_augment.py +++ b/backend/ppocr/data/imaug/iaa_augment.py @@ -21,15 +21,13 @@ from __future__ import unicode_literals import numpy as np -import imgaug -import imgaug.augmenters as iaa - class AugmenterBuilder(object): def __init__(self): pass def build(self, args, root=True): + import imgaug.augmenters as iaa if args is None or len(args) == 0: return None elif isinstance(args, list): @@ -97,6 +95,7 @@ def may_augment_annotation(self, aug, data, shape): return data def may_augment_poly(self, aug, img_shape, poly): + import imgaug keypoints = [imgaug.Keypoint(p[0], p[1]) for p in poly] keypoints = aug.augment_keypoints( [imgaug.KeypointsOnImage( diff --git a/backend/tools/makedist.py b/backend/tools/makedist.py index c8fc9435..4771f33b 100644 --- a/backend/tools/makedist.py +++ b/backend/tools/makedist.py @@ -1,12 +1,49 @@ -if __name__ == '__main__': - # 导入QPT - from qpt.executor import CreateExecutableModule as CEM - import os +import argparse +import os +from qpt.executor import CreateExecutableModule as CEM +from qpt.modules.cuda import CopyCUDAPackage +from qpt.smart_opt import set_default_pip_source +from qpt.kernel.qinterpreter import PYPI_PIP_SOURCE + + +def main(): WORK_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) - print(WORK_DIR) LAUNCH_PATH = os.path.join(WORK_DIR, 'gui.py') SAVE_PATH = os.path.join(os.path.dirname(WORK_DIR), 'vse_out') ICON_PATH = os.path.join(WORK_DIR, "design", "vse.ico") - module = CEM(work_dir=WORK_DIR, launcher_py_path=LAUNCH_PATH, save_path=SAVE_PATH, icon=ICON_PATH, hidden_terminal=False) - # 开始打包 + + # 解析命令行参数 + parser = argparse.ArgumentParser(description="打包程序") + parser.add_argument( + "--cuda", + nargs="?", # 可选参数值 + const="10.2", # 如果只写 --cuda,默认值是 10.2 + default=None, # 不写 --cuda,则为 None + help="是否包含CUDA模块,可指定版本,如 --cuda 或 --cuda=11.8" + ) + + args = parser.parse_args() + + sub_modules = [] + + if args.cuda: + sub_modules.append(CopyCUDAPackage(cuda_version=args.cuda)) + + if os.getenv("QPT_Action") == "True": + set_default_pip_source(PYPI_PIP_SOURCE) + + module = CEM( + work_dir=WORK_DIR, + launcher_py_path=LAUNCH_PATH, + save_path=SAVE_PATH, + icon=ICON_PATH, + hidden_terminal=False, + requirements_file="./requirements.txt", + sub_modules=sub_modules, + ) + module.make() + + +if __name__ == '__main__': + main() diff --git a/requirements.txt b/requirements.txt index 3b952f7a..c579e1c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,13 +1,14 @@ opencv-python==4.10.0.84 -python-Levenshtein==0.26.0 +Levenshtein==0.26.0 pillow==10.4.0 tqdm==4.66.5 filesplit==3.0.2 pysrt==1.1.2 wordsegment==1.3.1 -scikit-image==0.24.0 +scikit-image==0.25.1 lmdb==1.5.1 -imgaug==0.4.0 pyclipper==1.3.0.post5 PySimpleGUI==4.70.1 -numpy==1.26.4 \ No newline at end of file +numpy==1.26.4 +shapely==2.0.7 +six==1.17.0 \ No newline at end of file