Ai工具箱
AI工具箱 (EZ-AI-Starter):
https://www.123pan.com/s/oY9eVv-IsFnh.html pwd:1111
compiled with .net and obfusticated with pyarmor
containing:
My-VITS
SadTalker
stable-diffusion-webui
wav2lip
RVC
code for decoding encrypted environment files:
// Decompiled with JetBrains decompiler
// Type: common.PyEnvUtil
// Assembly: common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: F9EBC4D1-A1AC-4DC9-BFE0-2B1E74C84F97
// Assembly location: G:\works\extract-ez-ai-tool-info\EZ-AI-Starter-1.0\launcher\common.dll
using common.entity;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading;
#nullable enablenamespace common
{
public class PyEnvUtil
{
private static void compareZipAndReplace(string srcZip, string targetZip)
{
bool flag;
if (!File.Exists(targetZip))
{
= true;
flag }
else
{
if (!File.Exists(srcZip))
throw new Exception(srcZip + " not found.");
= !Util.getFileHash(srcZip).Equals(Util.getFileHash(targetZip));
flag }
if (!flag)
return;
.Copy(srcZip, targetZip, true);
File.unZip(targetZip, Path.Combine(Path.GetDirectoryName(targetZip), Path.GetFileNameWithoutExtension(targetZip)), (Action<string>) null, false, isJoin: true);
Util}
private static bool detectVCInstalled()
{
= new ProcessStartInfo()
ProcessStartInfo startInfo {
= GlobalVariable.assemblyDir + "\\vswhere.exe",
FileName = " -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath",
Arguments = true,
RedirectStandardOutput = false,
UseShellExecute = true
CreateNoWindow };
if (!File.Exists(startInfo.FileName))
{
.WriteLine("error: vswhere not found!");
Consolereturn false;
}
= Process.Start(startInfo);
Process process if (process == null)
return false;
.WaitForExit();
processstring end = ((TextReader) process.StandardOutput).ReadToEnd();
if (end == null)
return false;
string[] strArray = end.Trim().Split(new string[1]
{
.NewLine
Environment}, StringSplitOptions.RemoveEmptyEntries);
return strArray != null && strArray.Length != 0 && Directory.Exists(strArray[0]);
}
private static bool installVC()
{
.WriteLine("Visual Studio Installer安装中...");
Consolestring str = GlobalVariable.assemblyDir + "\\vc.vsconfig";
= new ProcessStartInfo()
ProcessStartInfo startInfo {
= GlobalVariable.assemblyDir + "\\vs_BuildTools.exe",
FileName = " --passive --norestart --config \"" + str + "\"",
Arguments = true,
RedirectStandardOutput = false,
UseShellExecute = true
CreateNoWindow };
if (!File.Exists(str))
{
.WriteLine("error: vc.vsconfig not found!");
Consolereturn false;
}
if (!File.Exists(startInfo.FileName))
{
.WriteLine("error: vs_BuildTools not found!");
Consolereturn false;
}
= Process.Start(startInfo);
Process process if (process != null)
{
.WaitForExit();
process.Sleep(10000);
Threadwhile (true)
{
[] array = ((IEnumerable<Process>) Process.GetProcessesByName("setup")).Where<Process>((Func<Process, bool>) (p => p.MainWindowTitle == "Visual Studio Installer" || p.GetMainModuleFileName().Contains("Visual Studio\\Installer"))).ToArray<Process>();
Processif (array != null && array.Length != 0)
.Sleep(500);
Threadelse
break;
}
if (!PyEnvUtil.detectVCInstalled())
{
.WriteLine("Visual Studio Installer安装失败,极有可能是网络波动造成的。务必关闭梯子、加速器等软件,然后关闭本窗口后再重装环境!");
Consolereturn false;
}
.WriteLine("Visual Studio Installer安装成功!");
Consolereturn true;
}
.WriteLine("error:vs_BuildTools启动失败,请退出后重试!");
Consolereturn false;
}
private static bool prepareEnv()
{
bool flag = true;
.compareZipAndReplace(Path.Combine(GlobalVariable.customPythonLibPath, "pdm.zip"), Path.Combine(GlobalVariable.commonPythonHome, "Lib\\site-packages\\pdm.zip"));
PyEnvUtil.compareZipAndReplace(Path.Combine(GlobalVariable.customPythonLibPath, "pyarmor_runtime_000000.zip"), Path.Combine(GlobalVariable.commonPythonHome, "Lib\\pyarmor_runtime_000000.zip"));
PyEnvUtilif (!PyEnvUtil.detectVCInstalled())
= PyEnvUtil.installVC();
flag return flag;
}
public static void installPythonEnvByConsole(Application app, out Process pdmInstallProcess_)
{
= (Process) null;
pdmInstallProcess_ if (!PyEnvUtil.prepareEnv())
return;
.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("重要提示:如果你的windows用户名是中文或者含有特殊符号,安装环境会失败!会出现这样的错误: 'gbk' codec can't decode byte...");
Console.WriteLine(" 这时,你要修改你的用户名为英文字母,或者重新创建一个只有英文字母的管理员账户(推荐做法),使用这个用户进入系统,就能解决这个问题了!");
Console.ResetColor();
Console= (Process) null;
Process pdmInstallProcess string pythonEnvName = app.getPythonEnvName();
string str = Path.Combine(GlobalVariable.appEnvBasePath, pythonEnvName);
.CreateDirectory(str);
Directory= app.getPythonEnvInfo();
PythonEnvInfo pythonEnvInfo string absFilePath1 = Path.Combine(GlobalVariable.envInfoDir, pythonEnvInfo.pdmEnvFilePrefix + ".lock.s");
string absFilePath2 = Path.Combine(GlobalVariable.envInfoDir, pythonEnvInfo.pdmEnvFilePrefix + ".toml.s");
string decryptedPdmLockFile = Path.GetTempFileName();
string decryptedPdmPyprojectFile = Path.GetTempFileName();
.writeToFile(Util.readEncryptedFileContent(absFilePath1), decryptedPdmLockFile);
Util.writeToFile(Util.readEncryptedFileContent(absFilePath2), decryptedPdmPyprojectFile);
Utilstring content = Path.Combine(GlobalVariable.commonPythonHome, "python.exe");
string pythonInterpreterPathFile = Path.Combine(str, ".pdm-python");
string absFilePath3 = pythonInterpreterPathFile;
.writeToFile(content, absFilePath3);
Utilstring pdmTempConfigFilePath = Path.GetTempFileName();
.writeToFile(GlobalVariable.pdmConfigFileContent, pdmTempConfigFilePath);
Util= (Action) (() =>
Action action {
if (File.Exists(decryptedPdmLockFile))
.Delete(decryptedPdmLockFile);
Fileif (File.Exists(decryptedPdmPyprojectFile))
.Delete(decryptedPdmPyprojectFile);
Fileif (File.Exists(pythonInterpreterPathFile))
.Delete(pythonInterpreterPathFile);
Fileif (File.Exists(pdmTempConfigFilePath))
.Delete(pdmTempConfigFilePath);
Fileif (pdmInstallProcess == null || pdmInstallProcess.HasExited)
return;
.Kill();
pdmInstallProcess});
try
{
= new ProcessStartInfo()
ProcessStartInfo processStartInfo {
= Path.Combine(GlobalVariable.commonPythonHome, "python.exe"),
FileName = " -m pdm sync",
Arguments = false,
CreateNoWindow = false,
UseShellExecute = str
WorkingDirectory };
.EnvironmentVariables["PDM_ENTRY_CHECK"] = "PDM_ENTRY_CHECK";
processStartInfo.EnvironmentVariables["PDM_CONFIG_FILE"] = pdmTempConfigFilePath;
processStartInfo.EnvironmentVariables["PDM_LOCKFILE"] = decryptedPdmLockFile;
processStartInfo.EnvironmentVariables["PDM_PYPROJECT_FILE"] = decryptedPdmPyprojectFile;
processStartInfo.EnvironmentVariables["PDM_ARIA2"] = Path.Combine(GlobalVariable.assemblyDir, "dlib");
processStartInfo.EnvironmentVariables["PDM_DELETE_ALL_PTH"] = "111";
processStartInfo= new Process()
pdmInstallProcess {
= processStartInfo
StartInfo };
= pdmInstallProcess;
pdmInstallProcess_ .Start();
pdmInstallProcess.WaitForExit();
pdmInstallProcess.writeToFile(app.getPythonEnvInfo().version.ToString(), Path.Combine(str, "env.version"));
Util}
catch (Exception ex)
{
.WriteLine(ex.Message);
Console}
finally
{
action();
}
}
public static Process startEnvInstallProcess(Application app)
{
return Process.Start(new ProcessStartInfo()
{
= Path.Combine(GlobalVariable.assemblyDir, "envInstall.exe"),
FileName = app.moduleDir + "|" + GlobalVariable.userSettings[GlobalVariable.globalKey]["GPUPlatform"],
Arguments = false,
UseShellExecute = false
CreateNoWindow });
}
}
}
悟空工具箱;
www.5kcrm.com/ai
Video Retalking 让视频中的人物的嘴型与输入的声音同步
OpenVoice 一种多语言即时语音克隆工具
WebGLM 是一个百亿参数的通用语言模型(GLM),提供一种高效且低成本的网络增强问答系统。它通过将网络搜索和召回功能,集成到预训练的语言模型中,以进行实际应用的部署。
DragGAN 是由Max Planck研究所开发的一种新的人工智能工具,它允许用户通过几个点击和拖动来真实地修改照片。根据一篇研究文章,它提供了两个主要组成部分:基于特征的运动监督和一种革命性的点追踪技术。
VisualGLM 能够整合视觉和语言信息。可以用来理解图片,解析图片内容。
设计师的AI工具箱 UID:290745620
AI 3D建模 动作生成
allAI 工具箱:
https://github.com/OceanNg529/allAI
包含视频抠图
为了加速下载 作者把链接都放到了gitee上面 可以在那里找到最新的ai工具
moondream2 一个强大且能在任何地方运行的小型视觉语言模型
differential-diffusion-ui Differential Diffusion 根据文本提示修改图像,并根据指定每个区域的变化量的地图
supir 基于大规模扩散的高保真通用图像恢复模型,SupIR能够根据文本提示进行智能修复,提高图像修复的质量和智能程度。
TripoSR 用于从单个图像快速前馈 3D 重建,由 Tripo AI 和 Stability AI 合作开发
dust3r 从任意图像集合中重建3D场景的框架
Lobe Chat 一个开源的,现代设计的ChatGPT/LLMs UI/框架。 支持语音合成,多模态和可扩展 (函数调用)插件系统。
Chatbot-Ollama 开源聊天UI为Ollama
remove-video-bg 视频背景删除工具
MeloTTS 高质量的多语言文本到语音库 MyShell.ai。支持英语、西班牙语、法语、中文、 日语和韩语
gligen 控件中使用ComfyUI的GLIGEN的直观GUI后端
FaceFusion 2.3.0 下一代换脸器和增强器
Stable Cascade 来自StabilityAI的稳定级联
Bark Voice Cloning 上传一个干净的20秒WAV文件的声音人物,你想模仿,输入你的文本到语音提示,并点击提交!
BRIA RMBG 由 BRIA.AI 开发的背景去除模型,在精心挑选的数据集上进行训练,可作为非商业用途的开源模型
ComfyUI 稳定扩散和稳定视频扩散 GUI
Stable Diffusion web UI 一键启动 Stable Diffusion web UI版
Stable Diffusion Forge Stable Diffusion WebUI Forge 基于 Stable Diffusion WebUI (based on Gradio) 制作开发更容易,资源管理优化,并且加速推理。
InstantID 最先进的无调音方法实现 仅使用单张图像生成ID-Preserving; 支持各种下游任务。
PhotoMaker 通过堆叠ID定制逼真的人体照片嵌入
vid2pose 视频打开 DWPose
Moore-AnimateAnyone-Mini [NVIDIA ONLY] 高效实现任何人物动画 (13G VRAM + 2G model size)
Moore-AnimateAnyone [NVIDIA GPU ONLY] 非官方实施人物动画
IP-Adapter-FaceID 输入人脸图像并将其转换为任何其他图像。适配器faceid模型的演示
StreamDiffusion [NVIDIA ONLY] 实时交互生成的管道级解决方案
Fooocus 迷你版 Stable Diffusion UI
RVC 基于检索的语音转换
老麦的工具库 UID:486989780