P-Video

Model Information

Display Name: P-Video

API Model ID: prunaai/p-video

Category: Image To Video

Description: P-Video is PrunaAI's video generation model with built-in audio, dialogue, and lip-sync capabilities. Supports text-to-video, image-to-video, and audio-conditioned generation up to 1080p at 48fps. **Key Features:** - Up to 1080p resolution at 48 FPS - Built-in audio and dialogue generation with lip-sync - Image-to-video with consistency control - Audio-conditioned video generation - Draft mode for rapid iteration at lower cost - Prompt upsampling for better results - 7 aspect ratios supported **Capabilities:** - Text-to-video generation - Image-to-video generation - Audio-conditioned video - Native dialogue and lip-sync - Prompt upsampling **Best For:** - Short video content with audio - Talking head / dialogue videos - Rapid video prototyping (draft mode) - Social media content (multiple aspect ratios) - Image animation **Output Options:** - Resolution: 720p, 1080p - FPS: 24, 48 - Aspect Ratios: 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 1:1 - Duration: 1-10 seconds - Audio: Built-in (optional) **Pricing Tiers:** - Standard: $0.03/second - Draft 720p: $0.0075/second - Draft 1080p: $0.015/second **Limitations:** - Not designed for extreme cinematic motion - Limited complex multi-scene storytelling - Limited SFX performance

How to Use This Model

To use P-Video via the HInow.ai API, use the model ID: prunaai/p-video

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "prunaai/p-video",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.03

Available Parameters

  • duration: Video duration in seconds (ignored when audio is provided) (Options: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
  • resolution: Output video resolution (Options: 720p, 1080p)
  • fps: Frames per second (Options: 24, 48)
  • audio: Audio URL for audio-to-video mode (optional)
  • draft: Draft mode for faster, cheaper generation (Options: true, false)
  • seed: Random seed for reproducibility

Quick Reference

To use this model, set: "model": "prunaai/p-video"

Featured: No

Documentation: https://hinow.ai/models/prunaai/p-video

API Endpoint: https://api.hinow.ai/v1

Back to Models

P-Video

prunaai/p-video

$0.030
per second

About

P-Video is PrunaAI's video generation model with built-in audio, dialogue, and lip-sync capabilities. Supports text-to-video, image-to-video, and audio-conditioned generation up to 1080p at 48fps.

Key Features:

  • Up to 1080p resolution at 48 FPS
  • Built-in audio and dialogue generation with lip-sync
  • Image-to-video with consistency control
  • Audio-conditioned video generation
  • Draft mode for rapid iteration at lower cost
  • Prompt upsampling for better results
  • 7 aspect ratios supported

Capabilities:

  • Text-to-video generation
  • Image-to-video generation
  • Audio-conditioned video
  • Native dialogue and lip-sync
  • Prompt upsampling

Best For:

  • Short video content with audio
  • Talking head / dialogue videos
  • Rapid video prototyping (draft mode)
  • Social media content (multiple aspect ratios)
  • Image animation

Output Options:

  • Resolution: 720p, 1080p
  • FPS: 24, 48
  • Aspect Ratios: 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 1:1
  • Duration: 1-10 seconds
  • Audio: Built-in (optional)

Pricing Tiers:

  • Standard: $0.03/second
  • Draft 720p: $0.0075/second
  • Draft 1080p: $0.015/second

Limitations:

  • Not designed for extreme cinematic motion
  • Limited complex multi-scene storytelling
  • Limited SFX performance

Capabilities

Image To VideoText To Video

Parameters

duration

Video duration in seconds (ignored when audio is provided)

12345678910
resolution

Output video resolution

720p1080p
fps

Frames per second

2448
audio

Audio URL for audio-to-video mode (optional)

draft

Draft mode for faster, cheaper generation

truefalse
seed

Random seed for reproducibility

Code Examples

curl -X POST https://api.hinow.ai/v1/videos \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "prunaai/p-video",
    "prompt": "A cat playing with a ball",
    "images": ["https://example.com/image.jpg"],
    "parameters": {
      "duration": "1",
      "resolution": "720p",
      "fps": "24",
      "audio": "",
      "draft": "true",
      "seed": ""
    }
  }'