Seedance 2.0 15% OFF | Video Generator で作成 →

Nap Me 360P

video-effects /

Convert photos into cozy photo-to-video napping scenes with a relaxing, peaceful atmosphere at 360p resolution. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

video-effects
入力

ドラッグ&ドロップまたはクリックでアップロード

preview

待機中

$0.21回あたり·~50 / $10

サンプルすべて表示

関連モデル

README

Nap Me 360p Effect

User Guide

Number of Images

  • Only one image is supported for upload

Number of People

  • Only supports single subject and animals

Notes

  • To achieve the best results, upload a non-solid background with a subject facing forward, showing the upper or full body

Prompt

  • Required
  • Try not to change the format
  • Content can be found in the request example 'prompt' parameter
  • If there are personalized needs, you can make changes to the prompt while keeping the structure and most of the content unchanged

Effect Boundaries

  • Solid backgrounds may cause the subject to lie unnaturally flat
  • Both hands grabbing the blanket from the sides — an unrealistic pose
アクセシビリティ:本サイトは第三者が提供するAIモデルを使用しています。

Nap Me 360p API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/video-effects/nap-me-360p with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Nap Me 360p below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/video-effects/nap-me-360p" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg"
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("video-effects/nap-me-360p", {
        "image": "https://example.com/your-input.jpg"
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "video-effects/nap-me-360p",
    {
    "image": "https://example.com/your-input.jpg"
}
)

print(output["outputs"][0])  # → URL of the generated output

Nap Me 360p API — Frequently asked questions

What is the Nap Me 360p API?

Nap Me 360p is a Video Effects model for AI inference, exposed as a REST API on WaveSpeedAI. Convert photos into cozy photo-to-video napping scenes with a relaxing, peaceful atmosphere at 360p resolution. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Nap Me 360p API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/video-effects/video-effects-nap-me-360p.

How much does Nap Me 360p cost per run?

Nap Me 360p starts at $0.20 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Nap Me 360p accept?

Key inputs: `image`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/video-effects/video-effects-nap-me-360p.

How do I get started with the Nap Me 360p API?

Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.

Can I use Nap Me 360p outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (Video Effects). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.