mj-video2md-html
将本地视频、SRT 字幕和时间戳转成 MakerJackie 博客 MDX 与微信公众号 HTML。用于用户提供视频/SRT 后要求生成公众号图文、博客文章、视频截图、R2 图片链接或调用 mj-adapt 做平台适配的工作流。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
将本地视频、SRT 字幕和时间戳转成 MakerJackie 博客 MDX 与微信公众号 HTML。用于用户提供视频/SRT 后要求生成公众号图文、博客文章、视频截图、R2 图片链接或调用 mj-adapt 做平台适配的工作流。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
MakerJackie 多平台内容适配工具:将已完成的文章适配到不同发布平台,使用极简硬核风格排版,比如微信公众号,小红书,推特等平台优化排版。核心场景是「一篇文章,多平台发布」的内容分发工作流。
MakerJackie 视频发布包工作流。用于用户提供本地视频、SRT 字幕、时间戳、头像、替换截图或当前公众号 HTML,并要求生成或更新 B 站标题/封面、B 站和 YouTube 章节、B 站描述、X 推广文案、微信公众号 HTML、makerjackie.com 博客 MDX、R2/assets.01mvp.com 图片链接、视频压缩建议或完整发布素材包时使用。
MakerJackie 内容创作总入口。用于公众号文章、AI 教程、01MVP 实战指南、Twitter 长推、选题生成、写作调研、语音转文章、文章审校、视频脚本口语化、演讲/分享稿优化等内容工作流。仅当用户目标是产出、整理、修改、规划或发布前打磨内容时使用。不要因为用户单独说“查一下”“最新信息”“设计”“部署”就触发。
Generate 01MVP-style black-and-white article illustrations and visual concepts. Use when the user asks for 01MVP handbook/blog/docs/marketing images, Chinese article illustrations, shot lists, visual metaphors, compressed social-media-ready image assets, assets.01mvp.com uploads, or imagegen prompts that should feel concise, direct, high-impact, and visually consistent with the 01MVP operator style.
Use when the user asks Codex to coordinate Claude Code CLI for systematic repository audits, multi-agent code review, multi-round cleanup loops, bug/performance/architecture scans, or "Claude Code reviews, Codex judges, fixes, verifies, and commits".
Brutally evaluate and refine startup ideas with practical early-stage startup frameworks. Use when asked to pressure-test a startup idea, validate whether the problem is real, map competitors and current customer behavior, find the first 10 customers, define an MVP, create a 2-week launch plan, assess founder-market fit, or give a direct strong/weak/pivot verdict.
| name | mj-video2md-html |
| description | 将本地视频、SRT 字幕和时间戳转成 MakerJackie 博客 MDX 与微信公众号 HTML。用于用户提供视频/SRT 后要求生成公众号图文、博客文章、视频截图、R2 图片链接或调用 mj-adapt 做平台适配的工作流。 |
把一条本地视频变成一篇可发布文章:读 SRT,保留口播风格写成 MDX,从视频截图,压缩并上传图片到 R2,再调用 mj-adapt 生成微信公众号 HTML。
用户提供本地视频、SRT、时间戳或当前公众号 HTML,并要求:
makerjackie.com。assets.01mvp.com 链接。mj-adapt 生成微信公众号 HTML。GPT。git status --short,只改本任务相关文件,不回滚用户已有改动。ls -lh "/path/to/video.mp4" "/path/to/subtitle.srt"
ffprobe -v error -show_entries format=duration -of default=nw=1:nk=1 "/path/to/video.mp4"
git status --short
rg --files content | sed -n '1,120p'
makerjackie.com 默认优先写入:
content/blog/{date}-{slug}.mdxcontent/blog/meta.jsonoutput/{date}-{slug}/date 必须加引号:
date: "2026-06-09"
视频转文章默认遵守这条关系:Maker Jackie 是作者和内容源头,01MVP 是产品/课程入口;标准关系句是 01MVP 是 Maker Jackie 做的 AI 产品实战教程。
01mvp.com。makerjackie.com 和 01mvp.com。只保留一个主要动作。默认截图要比“平均分布”更偏向信息密集段:
常用命令:
mkdir -p "output/{date}-{slug}/screenshots/raw"
ffmpeg -y -ss 00:00:12.000 -i "/path/to/video.mp4" \
-frames:v 1 -vf "scale=1600:-1" -q:v 2 \
"output/{date}-{slug}/screenshots/raw/shot-001-00-00-12.jpg"
截图命名建议:
shot-001-00-00-12.jpg
shot-002-00-00-28.jpg
shot-003-00-00-45.jpg
2026-06-09-ai-permanent-personal-site。content/blog/{date}-{slug}.mdx。content/blog/meta.json,把新文章放在合理位置。
图片进入正文前优先压缩,目标是公众号和博客都能快速打开。
建议规格:
常用压缩命令:
mkdir -p "output/{date}-{slug}/r2-upload"
sips -Z 1600 "output/{date}-{slug}/screenshots/raw/shot-001-00-00-12.jpg" \
--out "output/{date}-{slug}/r2-upload/shot-001.jpg"
R2 路径约定:
images/makerjackie/{date}-{slug}/shot-001.jpg
images/makerjackie/{date}-{slug}/cover.png
上传命令示例:
wrangler r2 object put "01mvp-public-assets/images/makerjackie/{date}-{slug}/shot-001.jpg" \
--file "output/{date}-{slug}/r2-upload/shot-001.jpg" \
--content-type "image/jpeg"
上传后验证:
curl -I "https://assets.01mvp.com/images/makerjackie/{date}-{slug}/shot-001.jpg"
验证返回 200 后,把 MDX 和 HTML 里的本地图片路径替换为 https://assets.01mvp.com/...。
调用或遵循 mj-adapt:
output/{date}-{slug}/{date}-{slug}-wechat.html。必要检查:
pnpm types:check
pnpm lint
git diff --check
图片链接检查:
rg -n "src=|!\\[" "content/blog/{date}-{slug}.mdx" "output/{date}-{slug}/{date}-{slug}-wechat.html"
rg -n "\\{\\{[A-Z_]+\\}\\}" "output/{date}-{slug}/{date}-{slug}-wechat.html"
curl -I "https://assets.01mvp.com/images/makerjackie/{date}-{slug}/shot-001.jpg"
如果用户正在看本地 HTML,直接更新当前 output/...-wechat.html,让 in-app browser 刷新即可。改截图时优先只替换图片文件和引用,不重写正文。
完成后应向用户说明:
mj-adapt 生成的标题/封面候选。curl -I R2 URL,确认域名和 key 路径。