在 MacBook Pro 上玩转 MiniMax Video-01:ComfyUI 和 VideoPipe 两种方案实战

作为一个技术爱好者,当 MiniMax 开源了 Video-01 (海螺 AI) 视频生成模型后,我第一时间就想在自己的 MacBook Pro 上跑起来试试。经过一番折腾,成功跑通了 ComfyUI 和 VideoPipe 两套方案,记录下来分享给同样喜欢折腾的朋友。 背景:为什么要本地部署视频生成模型 云端 API 虽然方便,但本地部署 AI 视频生成有几个无可替代的优势: 隐私安全:创意内容不外传,商业项目更安心 成本可控:不用按视频数量计费,爱生成多少生成多少 离线可用:没网也能创作 学习价值:深入理解视频生成的技术细节 折腾乐趣:这才是技术爱好者的快乐源泉 😄 我的测试环境 先说说我的硬件配置: 1 2 3 4 5 6 设备:MacBook Pro 16" (2024) 芯片:Apple M5 Pro 内存:48GB 统一内存 GPU:20 核心 GPU 存储:512GB SSD 系统:macOS Sequoia 15.2 重要提示: MiniMax Video-01 模型至少需要 24GB 统一内存 强烈建议 M3 Pro/Max, M4 Pro/Max, M5 Pro 及以上 推荐 48GB+ 内存,我的 48GB 刚好够用 生成一个 6 秒视频需要 5-15 分钟 如果只有 16GB 内存,基本无法运行 关于 M5 Pro:这是 2024 年最新的 Apple Silicon,性能比 M2 Max 提升约 30%,Metal 性能优化对 AI 推理特别友好。 ...

2026-09-17 · 9 分钟 · 1768 字 ·   · heyaohua

macOS 终端利器 iTerm2 配置指南

iTerm2 是 macOS 上最强大的终端工具之一,本文将介绍如何安装和配置 iTerm2,让它成为你的得力助手。 安装步骤 1. 安装 iTerm2 有两种安装方式: 直接下载:从 iTerm2 官网 下载,解压后拖到 Applications 目录 使用 Homebrew: 1 brew install --cask iterm2 2. 配置主题 下载 Solarized Dark theme:http://ethanschoonover.com/solarized 打开 iTerm2 偏好设置:Command + , 进入 Profiles -> Colors -> Color Presets -> Import 导入下载的 Solarized Dark.itermcolors 文件 选择 Solarized Dark 主题 3. 安装 Oh My Zsh 一键安装: 1 sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 设置 Zsh 为默认 Shell: 1 chsh -s /bin/zsh 配置主题: 1 vim ~/.zshrc # 修改 ZSH_THEME="agnoster" 4. 配置字体 下载并安装 Meslo 字体:Meslo LG M Regular for Powerline.ttf iTerm2 配置: 打开偏好设置:Command + , Profiles -> Text -> Font -> Change Font 选择 “Meslo LG M Regular for Powerline” 字体 5. 增强功能配置 5.1 语法高亮 1 2 3 4 5 # 安装 brew install zsh-syntax-highlighting # 配置 echo "source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~/.zshrc 5.2 自动补全 1 2 3 4 5 6 7 # 安装 git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions # 配置 vim ~/.zshrc # 在 plugins 中添加 zsh-autosuggestions plugins=(git zsh-autosuggestions zsh-syntax-highlighting) 5.3 快捷键配置 左右键跳转: 打开偏好设置:Command + , Profiles → Keys → Load Preset… → Natural Text Editing ...

2025-05-26 · 2 分钟 · 278 字 ·   · heyaohua