> ## Documentation Index
> Fetch the complete documentation index at: https://docs.happycapy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Kurzes Video-Ad generieren

> Nutzen Sie Happycapy, um aus einem Produktbrief eine vertikale MP4-Anzeige, ein Coverbild und ein kurzes Skript zu erstellen.

export function ConversationPreview({url, label, linkLabel = "Open full conversation", fit = "content"}) {
  const isContentFit = fit === "content";
  return <div className={`hc-conversation-preview${isContentFit ? " hc-preview-content" : ""}`} style={{
    width: isContentFit ? "100%" : "clamp(320px, calc(100vw - 640px), 960px)",
    margin: isContentFit ? "18px 0 32px" : "18px 0 32px 50%",
    transform: isContentFit ? "none" : "translateX(-50%)",
    border: "1px solid rgba(46, 41, 41, 0.1)",
    borderRadius: "10px",
    overflow: "hidden",
    background: "rgba(255, 255, 255, 0.55)",
    boxShadow: "0 18px 45px rgba(46, 41, 41, 0.08)"
  }}>
      <style>{`
        .hc-conversation-preview-clip {
          position: relative;
          container-type: inline-size;
          aspect-ratio: 16 / 10;
          height: auto;
          overflow: hidden;
          background: white;
        }

        .hc-conversation-preview-frame {
          position: absolute;
          left: 0;
          top: 0;
          width: 1280px !important;
          height: 800px !important;
          max-width: none !important;
          border: 0;
          background: white;
          display: block;
          transform: scale(calc(100cqw / 1280px));
          transform-origin: top left;
        }

        @media (max-width: 1279px) {
          .hc-conversation-preview:not(.hc-preview-content) {
            width: 100% !important;
            margin-left: 0 !important;
            transform: none !important;
          }

          .hc-conversation-preview:not(.hc-preview-content) .hc-conversation-preview-clip {
            height: min(70vh, 560px);
          }

          .hc-conversation-preview:not(.hc-preview-content) .hc-conversation-preview-frame {
            width: 100%;
            height: 100%;
            transform: none;
          }
        }
      `}</style>
      <div style={{
    display: "flex",
    alignItems: "center",
    gap: "8px",
    padding: "10px 12px",
    borderBottom: "1px solid rgba(46, 41, 41, 0.08)",
    background: "rgba(46, 41, 41, 0.035)"
  }}>
        <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "999px",
    background: "#F8A963"
  }} />
        <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "999px",
    background: "rgba(46, 41, 41, 0.18)"
  }} />
        <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "999px",
    background: "rgba(46, 41, 41, 0.18)"
  }} />
        <span style={{
    marginLeft: "8px",
    color: "rgba(46, 41, 41, 0.58)",
    fontSize: "0.82rem",
    overflow: "hidden",
    textOverflow: "ellipsis",
    whiteSpace: "nowrap"
  }}>{label}</span>
      </div>
      <div className="hc-conversation-preview-clip">
        <iframe className="hc-conversation-preview-frame" src={url} title={label} loading="lazy" style={{
    margin: 0,
    maxWidth: "none"
  }} />
      </div>
      <div style={{
    padding: "12px 14px",
    borderTop: "1px solid rgba(46, 41, 41, 0.08)",
    background: "rgba(255, 255, 255, 0.72)"
  }}>
        <a href={url} target="_blank" rel="noreferrer">{linkLabel}</a>
      </div>
    </div>;
}

export function LivePreview({url, label, linkLabel = "Open live result", fit = "content"}) {
  const isContentFit = fit === "content";
  return <div className={`hc-live-preview${isContentFit ? " hc-preview-content" : ""}`} style={{
    width: isContentFit ? "100%" : "clamp(320px, calc(100vw - 640px), 960px)",
    margin: isContentFit ? "18px 0 32px" : "18px 0 32px 50%",
    transform: isContentFit ? "none" : "translateX(-50%)",
    border: "1px solid rgba(46, 41, 41, 0.1)",
    borderRadius: "10px",
    overflow: "hidden",
    background: "rgba(255, 255, 255, 0.55)",
    boxShadow: "0 18px 45px rgba(46, 41, 41, 0.08)"
  }}>
      <style>{`
        .hc-live-preview-clip {
          position: relative;
          container-type: inline-size;
          aspect-ratio: 16 / 10;
          height: auto;
          overflow: hidden;
          background: white;
        }

        .hc-live-preview-frame {
          position: absolute;
          left: 0;
          top: 0;
          width: 1280px !important;
          height: 800px !important;
          max-width: none !important;
          border: 0;
          background: white;
          display: block;
          transform: scale(calc(100cqw / 1280px));
          transform-origin: top left;
        }

        @media (max-width: 1279px) {
          .hc-live-preview:not(.hc-preview-content) {
            width: 100% !important;
            margin-left: 0 !important;
            transform: none !important;
          }

          .hc-live-preview:not(.hc-preview-content) .hc-live-preview-clip {
            height: min(70vh, 520px);
          }

          .hc-live-preview:not(.hc-preview-content) .hc-live-preview-frame {
            width: 100%;
            height: 100%;
            transform: none;
          }
        }
      `}</style>
      <div style={{
    display: "flex",
    alignItems: "center",
    gap: "8px",
    padding: "10px 12px",
    borderBottom: "1px solid rgba(46, 41, 41, 0.08)",
    background: "rgba(46, 41, 41, 0.035)"
  }}>
        <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "999px",
    background: "#F8A963"
  }} />
        <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "999px",
    background: "rgba(46, 41, 41, 0.18)"
  }} />
        <span style={{
    width: "8px",
    height: "8px",
    borderRadius: "999px",
    background: "rgba(46, 41, 41, 0.18)"
  }} />
        <span style={{
    marginLeft: "8px",
    color: "rgba(46, 41, 41, 0.58)",
    fontSize: "0.82rem",
    overflow: "hidden",
    textOverflow: "ellipsis",
    whiteSpace: "nowrap"
  }}>{label}</span>
      </div>
      <div className="hc-live-preview-clip">
        <iframe className="hc-live-preview-frame" src={url} title={label} loading="lazy" style={{
    margin: 0,
    maxWidth: "none"
  }} />
      </div>
      <div style={{
    padding: "12px 14px",
    borderTop: "1px solid rgba(46, 41, 41, 0.08)",
    background: "rgba(255, 255, 255, 0.72)"
  }}>
        <a href={url} target="_blank" rel="noreferrer">{linkLabel}</a>
      </div>
    </div>;
}

Nutzen Sie diesen Ablauf, wenn Sie ein fertiges Kurzvideo benötigen, nicht nur ein Skript oder Storyboard. Happycapy plant das Konzept, wählt das Videomodell, generiert die MP4-Datei, erstellt ein Coverbild und prüft die Dateien.

## Beispielergebnis

<LivePreview label="happycapy.ai/share/.../pocketgarden-short-video-ad.mp4" url="https://happycapy.ai/share/ecadeba9-8e0c-4a19-94fc-16bd38167312#f=outputs%2Fpocketgarden-short-video-ad.mp4" linkLabel="MP4 öffnen" />

## Was Sie erstellen können

* Eine vertikale 9:16-MP4-Anzeige
* Ein generiertes Coverbild oder Thumbnail
* Ein kurzes Skript und eine Shotlist
* Einen wiederverwendbaren Prompt für andere Produkte oder Plattformen

## Was Sie vorbereiten sollten

* Produkt- oder Kampagnenbrief
* Zielplattform und Dauer
* Stimmung, Szenenideen und CTA
* Bevorzugtes Videomodell, wenn relevant

## Beispiel-Prompt

```text theme={null}
Erstelle eine vollständige kurze Videoanzeige für PocketGarden, eine App, mit der Mieter Kräuter in der Wohnung anbauen können. Verwende Seedance 2.0 für die echte Videogenerierung. Erstelle eine vertikale MP4-Datei mit 8-12 Sekunden, ein Coverbild und ein kurzes Skript mit Shotlist. Das Video soll warm, optimistisch und wohnungsfreundlich wirken, mit kleiner Küche, Kräuterwachstum, App-Erinnerung und CTA: "Start your windowsill garden today." Speichere MP4, PNG und Markdown und prüfe, dass jede Datei existiert und nicht leer ist.
```

### Vollständige Unterhaltung

<ConversationPreview label="happycapy.ai/share/.../full-conversation" url="https://happycapy.ai/share/ecadeba9-8e0c-4a19-94fc-16bd38167312" linkLabel="Vollständige Unterhaltung öffnen" />

## Was Happycapy erledigt

1. Macht aus dem Brief ein kompaktes Videokonzept.
2. Bestätigt Videomodell und Generierungseinstellungen.
3. Generiert die MP4-Datei in der Cloud-Sandbox.
4. Erstellt Coverbild und Skript.
5. Prüft Dateigröße und hält den Prozess teilbar.

## Prüfliste

* Kommuniziert die erste Sekunde den Hook?
* Ist das Ergebnis wirklich eine MP4-Datei?
* Passt das Seitenverhältnis zur Zielplattform?
* Sind Coverbild und Skript für die Veröffentlichung nutzbar?
* Lässt sich derselbe Brief für andere Plattformen remixen?

## Nächster Schritt

Erstellen Sie Varianten für Reels, TikTok, YouTube Shorts oder ein anderes Produktangebot.
