From 97a51ae904546fa5f3277fa8d794613da209bc82 Mon Sep 17 00:00:00 2001 From: linyqh Date: Thu, 5 Dec 2024 22:13:47 +0800 Subject: [PATCH] =?UTF-8?q?chore(resource):=20=E6=9B=B4=E6=96=B0=E8=B5=84?= =?UTF-8?q?=E6=BA=90=E7=9B=AE=E5=BD=95=E5=92=8C=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 .gitignore 文件,更新资源目录的忽略规则 - 添加 fonts_in_here.txt 文件,用于说明字体文件存放位置 --- .gitignore | 12 +++++++----- resource/fonts/fonts_in_here.txt | 1 + resource/scripts/script_in_here.txt | 0 resource/songs/song_in_here.txt | 0 resource/srt/srt_in_here.txt | 0 resource/videos/video_in_here.txt | 0 6 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 resource/fonts/fonts_in_here.txt create mode 100644 resource/scripts/script_in_here.txt create mode 100644 resource/songs/song_in_here.txt create mode 100644 resource/srt/srt_in_here.txt create mode 100644 resource/videos/video_in_here.txt diff --git a/.gitignore b/.gitignore index 8ab0b48..3b6f801 100644 --- a/.gitignore +++ b/.gitignore @@ -23,9 +23,11 @@ node_modules # 模型目录 /models/ ./models/* -resource/scripts/* -resource/videos/* -resource/songs/* -resource/fonts/* -resource/srt/* +resource/scripts/*.json +resource/videos/*.mp4 +resource/songs/*.mp3 +resource/songs/*.flac +resource/fonts/*.ttc +resource/fonts/*.ttf +resource/srt/*.srt app/models/faster-whisper-large-v2/* \ No newline at end of file diff --git a/resource/fonts/fonts_in_here.txt b/resource/fonts/fonts_in_here.txt new file mode 100644 index 0000000..8858c69 --- /dev/null +++ b/resource/fonts/fonts_in_here.txt @@ -0,0 +1 @@ +此处放字体文件 \ No newline at end of file diff --git a/resource/scripts/script_in_here.txt b/resource/scripts/script_in_here.txt new file mode 100644 index 0000000..e69de29 diff --git a/resource/songs/song_in_here.txt b/resource/songs/song_in_here.txt new file mode 100644 index 0000000..e69de29 diff --git a/resource/srt/srt_in_here.txt b/resource/srt/srt_in_here.txt new file mode 100644 index 0000000..e69de29 diff --git a/resource/videos/video_in_here.txt b/resource/videos/video_in_here.txt new file mode 100644 index 0000000..e69de29