feat: apiHost 改为 api.duooomi.com,ANI 转换参数可配置

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
km2023
2026-04-16 14:24:02 +08:00
parent 63dc4b7902
commit 79af43cdef
5 changed files with 24 additions and 21 deletions

View File

@@ -43,9 +43,9 @@ final class AniConverter {
let body: [String: Any] = [
"videoUrl": fileUrl,
"width": 360,
"height": 360,
"fps": "24",
"width": config.aniWidth,
"height": config.aniHeight,
"fps": config.aniFps,
]
request.httpBody = try JSONSerialization.data(withJSONObject: body)