cdnzero
Get started free →
Dashboard

AI Studio

Generate images, videos, and short-form reels from text prompts — powered by AWS Bedrock.


app.cdnzero.com
CDNZero AI Studio
AI Studio — three tabs: Image, Video (Beta), and Reels (Coming Soon)

Tabs overview

TabStatusWhat it does
ImageAvailableGenerate 1–4 images from a text prompt, choose aspect ratio, auto-save to Playground
VideoBetaGenerate short videos from a prompt — async job, polling for completion
ReelsComing soonAutomated short-form vertical video with captions and transitions

Generating images

  1. Click AI Studio in the sidebar — you land on the Image tab by default
  2. Type your prompt in the text area. Be specific — describe style, mood, colours, and subject
  3. Choose how many images: 1, 2, 3, or 4
  4. Select an aspect ratio: 1:1 (square), 4:3, 3:4, or 16:9 (landscape)
  5. Toggle Auto-save to automatically save every generated image to your Playground
  6. Optionally pick a target folder with Select folder
  7. Click Generate

ℹ️ Credit cost

Each image generated costs 1 AI credit. Generating 4 images costs 4 credits. Monitor your balance on the Dashboard home.

Example prompts

Cinematic landscape

"A breathtaking mountain landscape at golden hour, dramatic storm clouds parting, a lone hiker on a ridge, cinematic lighting, 16:9, photorealistic"

SaaS hero image

"Minimalist SaaS dashboard hero, dark mode, violet gradient accent, clean modern UI, 16:9"

Product photo

"White wireless headphones on a clean white studio background, soft shadows, high resolution product photography"

Abstract art

"Ethereal watercolour painting of cherry blossom petals floating in slow motion, soft pastel pinks and whites, bokeh background"

Generating videos (Beta)

Click the Video tab. Video generation is an asynchronous job — you submit the prompt and CDNZero processes it in the background. The job typically completes in 30 seconds to 3 minutes depending on queue depth.

⚠️ Credit cost for video

Video generation consumes significantly more credits than images. A 15-second video uses approximately 250 credits; a 30-second video uses ~500. Check your balance before generating.

Auto-save and the Playground

When Auto-save is on, every generated asset is saved directly to your chosen Playground folder and immediately served from the CDN. You can then copy the CDN URL from the Playground or create a signed link.

API: Generate an image

bash
curl -X POST https://api.cdnzero.com/ai-image/generate-image \
  -H "Authorization: Bearer YOUR_ACCESS_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Minimalist SaaS hero, dark violet gradient, clean UI",
    "number_of_images": 2,
    "save_all": true,
    "folder_id": "col_abc123"
  }'