p-video
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesePruna P-Video Generation
Pruna P-Video 视频生成
Generate videos with Pruna's optimized video models via inference.sh CLI.

通过inference.sh CLI使用Pruna优化的视频模型生成视频。

Quick Start
快速开始
Requires inference.sh CLI (). Get installation instructions:infshnpx skills add inference-sh/skills@agent-tools
bash
infsh login
infsh app run pruna/p-video --input '{"prompt": "drone shot flying over a forest at sunset"}'需要安装inference.sh CLI(),执行以下指令获取安装指引:infshnpx skills add inference-sh/skills@agent-tools
bash
infsh login
infsh app run pruna/p-video --input '{"prompt": "drone shot flying over a forest at sunset"}'Pruna Video Models
Pruna 视频模型
Pruna optimizes AI models for speed without sacrificing quality.
| Model | App ID | Best For |
|---|---|---|
| P-Video | | Text-to-video, image-to-video, with audio |
| WAN-T2V | | Text-to-video, 480p/720p |
| WAN-I2V | | Animate images, 480p/720p |
Pruna可在不牺牲画质的前提下优化AI模型,提升运行速度。
| 模型 | 应用ID | 适用场景 |
|---|---|---|
| P-Video | | 文生视频、图生视频、支持音频 |
| WAN-T2V | | 文生视频,支持480p/720p分辨率 |
| WAN-I2V | | 静态图片动效生成,支持480p/720p分辨率 |
Examples
示例
Text-to-Video
文生视频
bash
infsh app run pruna/p-video --input '{
"prompt": "waves crashing on a beach at sunset",
"duration": 5,
"resolution": "720p"
}'bash
infsh app run pruna/p-video --input '{
"prompt": "waves crashing on a beach at sunset",
"duration": 5,
"resolution": "720p"
}'Image-to-Video
图生视频
bash
infsh app run pruna/p-video --input '{
"prompt": "gentle camera movement, clouds drifting",
"image": "https://your-image.jpg"
}'bash
infsh app run pruna/p-video --input '{
"prompt": "gentle camera movement, clouds drifting",
"image": "https://your-image.jpg"
}'With Audio
带音频生成
P-Video supports audio input that syncs with the video:
bash
infsh app run pruna/p-video --input '{
"prompt": "person talking in an interview setting",
"audio": "https://your-audio.mp3"
}'P-Video支持输入音频并与视频同步:
bash
infsh app run pruna/p-video --input '{
"prompt": "person talking in an interview setting",
"audio": "https://your-audio.mp3"
}'WAN Text-to-Video
WAN 文生视频
Fast and economical text-to-video:
bash
infsh app run pruna/wan-t2v --input '{
"prompt": "a cat playing with a ball of yarn",
"resolution": "720p",
"duration": 5
}'快速、高性价比的文生视频能力:
bash
infsh app run pruna/wan-t2v --input '{
"prompt": "a cat playing with a ball of yarn",
"resolution": "720p",
"duration": 5
}'WAN Image-to-Video
WAN 图生视频
Animate any still image:
bash
infsh app run pruna/wan-i2v --input '{
"prompt": "gentle movement, natural motion, subtle breathing",
"image": "https://portrait.jpg",
"resolution": "720p"
}'为任意静态图片添加动效:
bash
infsh app run pruna/wan-i2v --input '{
"prompt": "gentle movement, natural motion, subtle breathing",
"image": "https://portrait.jpg",
"resolution": "720p"
}'1080p High Quality
1080p 高清生成
bash
infsh app run pruna/p-video --input '{
"prompt": "cinematic landscape with dramatic clouds",
"resolution": "1080p",
"duration": 5
}'bash
infsh app run pruna/p-video --input '{
"prompt": "cinematic landscape with dramatic clouds",
"resolution": "1080p",
"duration": 5
}'Draft Mode (Faster, Cheaper)
草稿模式(速度更快、成本更低)
bash
infsh app run pruna/p-video --input '{
"prompt": "quick concept test video",
"draft": true
}'bash
infsh app run pruna/p-video --input '{
"prompt": "quick concept test video",
"draft": true
}'Resolution Options
分辨率选项
| Model | Resolutions | Pricing |
|---|---|---|
| P-Video | 720p, 1080p | Per second, varies by resolution/draft |
| WAN-T2V | 480p, 720p | $0.05 (480p), $0.10 (720p) per video |
| WAN-I2V | 480p, 720p | $0.05 (480p), $0.11 (720p) per video |
| 模型 | 支持分辨率 | 定价 |
|---|---|---|
| P-Video | 720p, 1080p | 按秒计费,费用随分辨率/是否草稿模式变动 |
| WAN-T2V | 480p, 720p | 单视频费用:480p $0.05,720p $0.10 |
| WAN-I2V | 480p, 720p | 单视频费用:480p $0.05,720p $0.11 |
Browse All Pruna Apps
浏览所有Pruna应用
bash
infsh app list --namespace prunabash
infsh app list --namespace prunaRelated Skills
相关技能
bash
undefinedbash
undefinedFull platform skill (all 150+ apps)
全平台技能(包含150+款应用)
npx skills add inference-sh/skills@agent-tools
npx skills add inference-sh/skills@agent-tools
All video generation models
所有视频生成模型
npx skills add inference-sh/skills@ai-video-generation
npx skills add inference-sh/skills@ai-video-generation
Image-to-video guide
图生视频使用指南
npx skills add inference-sh/skills@image-to-video
npx skills add inference-sh/skills@image-to-video
Pruna image generation
Pruna图片生成能力
npx skills add inference-sh/skills@p-image
npx skills add inference-sh/skills@p-image
Text-to-speech (for video narration)
文本转语音(用于视频旁白)
npx skills add inference-sh/skills@text-to-speech
Browse all apps: `infsh app list`npx skills add inference-sh/skills@text-to-speech
浏览所有应用:`infsh app list`Documentation
文档
- Running Apps - How to run apps via CLI
- Streaming Results - Real-time progress updates
- Content Pipeline Example - Building media workflows