diff --git a/README-ja.md b/README-ja.md
deleted file mode 100644
index dd6a8e5..0000000
--- a/README-ja.md
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
NarratoAI 😎📽️
-
一体型AI映画解説および自動ビデオ編集ツール🎬🎞️
-
-
-
-
-[//]: # (

)
-
-
-NarratoAIは、LLMを活用してスクリプト作成、自動ビデオ編集、ナレーション、字幕生成の一体型ソリューションを提供する自動化ビデオナレーションツールです。
-
-
-[](https://github.com/linyqh/NarratoAI)
-[](https://github.com/linyqh/NarratoAI/blob/main/LICENSE)
-[](https://github.com/linyqh/NarratoAI/issues)
-[](https://github.com/linyqh/NarratoAI/stargazers)
-
-
💬 Discordオープンソースコミュニティに参加して、プロジェクトの最新情報を入手しましょう。
-
-
-
ホーム
-
-
-
-
ビデオレビューインターフェース
-
-
-
-
-
-## 最新情報
-- 2024.11.24 Discordコミュニティ開設:https://discord.gg/uVAJftcm
-- 2024.11.11 オープンソースコミュニティに移行、参加を歓迎します! [公式コミュニティに参加](https://github.com/linyqh/NarratoAI/wiki)
-- 2024.11.10 公式ドキュメント公開、詳細は [公式ドキュメント](https://p9mf6rjv3c.feishu.cn/wiki/SP8swLLZki5WRWkhuFvc2CyInDg) を参照
-- 2024.11.10 新バージョンv0.3.5リリース;ビデオ編集プロセスの最適化
-
-## 今後の計画 🥳
-- [x] Windows統合パックリリース
-- [x] ストーリー生成プロセスの最適化、生成効果の向上
-- [x] バージョン0.3.5統合パックリリース
-- [x] アリババQwen2-VL大規模モデルのビデオ理解サポート
-- [x] 短編ドラマの解説サポート
- - [x] 一クリックで素材を統合
- - [x] 一クリックで文字起こし
- - [x] 一クリックでキャッシュをクリア
-- [ ] ジャン映草稿のエクスポートをサポート
-- [ ] 主役の顔のマッチング
-- [ ] 音声、スクリプト、ビデオ素材に基づいて自動マッチングをサポート
-- [ ] より多くのTTSエンジンをサポート
-- [ ] ...
-
-## システム要件 📦
-
-- 推奨最低:CPU 4コア以上、メモリ8GB以上、GPUは必須ではありません
-- Windows 10またはMacOS 11.0以上
-
-## フィードバックと提案 📢
-
-👏 1. [issue](https://github.com/linyqh/NarratoAI/issues)または[pull request](https://github.com/linyqh/NarratoAI/pulls)を提出できます
-
-💬 2. [オープンソースコミュニティ交流グループに参加](https://github.com/linyqh/NarratoAI/wiki)
-
-📷 3. 公式アカウント【NarratoAI助手】をフォローして最新情報を入手
-
-## 参考プロジェクト 📚
-- https://github.com/FujiwaraChoki/MoneyPrinter
-- https://github.com/harry0703/MoneyPrinterTurbo
-
-このプロジェクトは上記のプロジェクトを基にリファクタリングされ、映画解説機能が追加されました。オリジナルの作者に感謝します 🥳🥳🥳
-
-## 作者にコーヒーを一杯おごる ☕️
-
[//]: # (

)
@@ -31,6 +31,7 @@ NarratoAI 是一个自动化影视解说工具,基于LLM实现文案撰写、
本项目仅供学习和研究使用,不得商用。如需商业授权,请联系作者。
## 最新资讯
+- 2025.11.20 发布新版本 0.7.5, 新增 [IndexTTS2](https://github.com/index-tts/index-tts) 语音克隆支持
- 2025.10.15 发布新版本 0.7.3, 使用 [LiteLLM](https://github.com/BerriAI/litellm) 管理模型供应商
- 2025.09.10 发布新版本 0.7.2, 新增腾讯云tts
- 2025.08.18 发布新版本 0.7.1,支持 **语音克隆** 和 最新大模型
diff --git a/config.example.toml b/config.example.toml
index 4bae9d0..d66e190 100644
--- a/config.example.toml
+++ b/config.example.toml
@@ -115,6 +115,27 @@
# 访问 https://bailian.console.aliyun.com/?tab=model#/api-key 获取你的 API 密钥
api_key = ""
model_name = "qwen3-tts-flash"
+
+[indextts2]
+ # IndexTTS2 语音克隆配置
+ # 这是一个开源的零样本语音克隆项目,需要自行部署
+ # 项目地址:https://github.com/index-tts/index-tts
+ # 默认 API 地址(本地部署)
+ api_url = "http://127.0.0.1:8081/tts"
+
+ # 默认参考音频路径(可选)
+ # reference_audio = "/path/to/reference_audio.wav"
+
+ # 推理模式:普通推理 / 快速推理
+ infer_mode = "普通推理"
+
+ # 高级参数
+ temperature = 1.0
+ top_p = 0.8
+ top_k = 30
+ do_sample = true
+ num_beams = 3
+ repetition_penalty = 10.0
[ui]
# TTS 引擎选择
diff --git a/webui/tools/base.py b/webui/tools/base.py
index 754d971..9bcfcd9 100644
--- a/webui/tools/base.py
+++ b/webui/tools/base.py
@@ -144,32 +144,3 @@ def get_batch_files(keyframe_files, result, batch_size=5):
batch_start = result['batch_index'] * batch_size
batch_end = min(batch_start + batch_size, len(keyframe_files))
return keyframe_files[batch_start:batch_end]
-
-
-def chekc_video_config(video_params):
- """
- 检查视频分析配置
- """
- headers = {
- 'accept': 'application/json',
- 'Content-Type': 'application/json'
- }
- session = requests.Session()
- retry_strategy = Retry(
- total=3,
- backoff_factor=1,
- status_forcelist=[500, 502, 503, 504]
- )
- adapter = HTTPAdapter(max_retries=retry_strategy)
- session.mount("https://", adapter)
- try:
- session.post(
- f"https://dev.narratoai.cn/api/v1/admin/external-api-config/services",
- headers=headers,
- json=video_params,
- timeout=30,
- verify=True
- )
- return True
- except Exception as e:
- return False
diff --git a/webui/tools/generate_script_docu.py b/webui/tools/generate_script_docu.py
index 401a047..d14c330 100644
--- a/webui/tools/generate_script_docu.py
+++ b/webui/tools/generate_script_docu.py
@@ -10,7 +10,7 @@ from datetime import datetime
from app.config import config
from app.utils import utils, video_processor
-from webui.tools.base import create_vision_analyzer, get_batch_files, get_batch_timestamps, chekc_video_config
+from webui.tools.base import create_vision_analyzer, get_batch_files, get_batch_timestamps
def generate_script_docu(params):
@@ -398,7 +398,6 @@ def generate_script_docu(params):
"text_model_name": text_model,
"text_base_url": text_base_url
})
- chekc_video_config(llm_params)
# 整理帧分析数据
markdown_output = parse_frame_analysis_to_markdown(analysis_json_path)
diff --git a/webui/tools/generate_script_short.py b/webui/tools/generate_script_short.py
index d72aaa6..6be10c8 100644
--- a/webui/tools/generate_script_short.py
+++ b/webui/tools/generate_script_short.py
@@ -8,7 +8,6 @@ import streamlit as st
from loguru import logger
from app.config import config
-from webui.tools.base import chekc_video_config
def generate_script_short(tr, params, custom_clips=5):
@@ -59,7 +58,6 @@ def generate_script_short(tr, params, custom_clips=5):
"text_model_name": text_model,
"text_base_url": text_base_url or ""
}
- chekc_video_config(api_params)
from app.services.SDP.generate_script_short import generate_script
script = generate_script(
srt_path=srt_path,