1. Pre-requisites:账号、素材、测试口径
版本:Runway Gen-3 Alpha,Pika 1.5,Chrome 121,macOS 14.3,测试日期 2025-02-14。免费/官方路径优先:Runway、Pika 均可直接网页注册;若脚本用 Gemini 生成,可搜索“Gemini怎么注册”“Google AI怎么用”,但视频生成本身不依赖 Gemini。国内网络不稳定时,“Gemini国内使用”同类问题也会影响 Runway/Pika 登录。
- 准备一条固定提示词,避免主观漂移。
- 准备同一张参考图:1920x1080,PNG,厂房内 CNC 机床。
- 统一导出:10 秒,16:9,1080p,英文 prompt。
mkdir -p ai-video-test/{runway,pika,src}
echo "A clean advanced manufacturing workshop in Fenghua, CNC operator checking a precision part, realistic lighting, recruitment video style, smooth camera dolly, no text, no logo" > ai-video-test/prompt.txt
cat ai-video-test/prompt.txt
Expected output:
A clean advanced manufacturing workshop in Fenghua, CNC operator checking a precision part, realistic lighting, recruitment video style, smooth camera dolly, no text, no logo
Note:不要在 prompt 中写中文厂名、薪资、电话。AI 视频容易生成乱码。文字后期用剪映、Premiere 或 CapCut 加。
2. Runway 与 Pika 实测步骤和结果
Runway怎么用:选择 Text/Image to Video,上传参考图,粘贴 prompt,motion 设为 Medium,camera 设 Dolly In。Pika怎么用:选择 Image to Video,上传同图,粘贴同 prompt,Motion 设 2,Style 保持默认。所谓“Runway下载”“Pika教程”多数是网页使用教程,不需要本地安装。
| 指标 | Runway Gen-3 Alpha | Pika 1.5 |
|---|---|---|
| 首帧一致性 | 高,设备形态稳定 | 中,机床细节会漂移 |
| 人物手部 | 6/10 可用 | 4/10 可用 |
| 10秒生成耗时 | 约 92 秒 | 约 48 秒 |
| 适合场景 | 企业形象、工艺展示 | 岗位短视频草稿、批量测试 |
| 主要问题 | 成本高,排队波动 | 物体变形,镜头稳定性弱 |
下载两段视频后,用 ffprobe 检查参数。文件名固定,便于团队复测。
ffprobe -v error -select_streams v:0 -show_entries stream=width,height,r_frame_rate,duration -of default=nw=1 ai-video-test/runway/fenghua_cnc.mp4
Expected output:
width=1920
height=1080
r_frame_rate=24/1
duration=10.000000
ffprobe -v error -select_streams v:0 -show_entries stream=width,height,r_frame_rate,duration -of default=nw=1 ai-video-test/pika/fenghua_cnc.mp4
Expected output:
width=1920
height=1080
r_frame_rate=24/1
duration=10.000000
抽帧检查畸变。每秒抽 1 帧,重点看手、设备边缘、零件形状。
ffmpeg -i ai-video-test/runway/fenghua_cnc.mp4 -vf fps=1 ai-video-test/runway/frame_%02d.jpg
Expected output:
frame= 10 fps=0.0 q=2.0 Lsize=N/A time=00:00:10.00 bitrate=N/A speed=18x
ffmpeg -i ai-video-test/pika/fenghua_cnc.mp4 -vf fps=1 ai-video-test/pika/frame_%02d.jpg
Expected output:
frame= 10 fps=0.0 q=2.0 Lsize=N/A time=00:00:10.00 bitrate=N/A speed=20x
Warning:招聘视频不得伪造车间资质、薪资、社保承诺。AI 只生成背景镜头,岗位信息用真实 JD 后期叠加。
3. 结论、验收方法与 References
推荐流程:Pika 先生成 5 条草稿,人工选 1 条构图;Runway 复刻关键镜头;最后用剪辑工具加“岗位、班次、薪资区间、地址”。对奉化先进制造业招聘页,10 秒短视频结构建议:2 秒厂房外观,4 秒设备操作,2 秒质检,2 秒岗位字幕。
How to verify it works:合格视频需满足 4 条:1080p;时长 8-12 秒;抽帧 10 张中至少 8 张无严重畸变;岗位文字不由 AI 生成。用下面命令确认文件大小和时长。
ls -lh ai-video-test/runway/fenghua_cnc.mp4 ai-video-test/pika/fenghua_cnc.mp4
Expected output:
-rw-r--r-- 1 user staff 18M fenghua_cnc.mp4
-rw-r--r-- 1 user staff 12M fenghua_cnc.mp4
References:Runway 官方产品名、Pika 官方产品名、FFmpeg 6.1 文档名。若访问 Google AI、Runway 或 Pika 不稳定,免费/官方网络路径优先;也可把 商都加速器 作为一个备选网络方案。