remotion-ads

Professional video ad creation with Remotion — Instagram Reels (9:16), website explainers (16:9), and carousels (4:5). Use when creating video ads, animated social content, or educational explainer videos. Includes ElevenLabs voiceover with word-level captions, AI icon generation, background music, ad copywriting frameworks, and Meta campaign management. Also use when the user provides a URL and wants to create a video for that page.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "remotion-ads" with this command: npx skills add maartenlouis/remotion-ads/maartenlouis-remotion-ads-remotion-ads

Remotion Ads

Create professional video ads and explainer videos with Remotion, ElevenLabs voiceover, and animated captions.

Setup

  1. Copy references/brand-config-template.mdreferences/brand-config.md
  2. Fill in brand colors, fonts, voice, caption styling, and content rules
  3. Create pronunciation dictionary from assets/dictionaries/template.pls

See references/setup.md for dependencies and folder structure.


Supported Formats

FormatAspectResolutionDurationScenes
Instagram Reels9:161080×192015-60s4 (Hook→Problem→Solution→CTA)
Instagram Reels (Ohneis)9:161080×192015-45sBeat-driven (word-level)
Website Explainers16:91920×108060-160s6 (Hook→Problem→Context→Solution→Process→CTA)
Carousels4:51080×1350Static5-10 slides

See references/formats.md for safe zones and crop specs. See references/ohneis-style.md for beat-driven cinematic reel template. See references/website-videos.md for 16:9 long-form format.


Workflow

From scratch

# 1. Write scene JSON
# 2. Generate voiceover with word timestamps
node scripts/generate.js \
  --scenes scenes.json \
  --with-timestamps \
  --dictionary your-brand \
  --output-dir public/audio/ad-example/

# 3. Create Remotion composition using actualDuration from info.json
# 4. Render
npx remotion render AdExample out/ad-example.mp4 --codec=h264 --crf=18

From a URL (page → video)

# 1. Extract page data into scene JSON
node scripts/url-to-scenes.js --url https://example.com/page --format reels --output scenes.json
# 2. Review/edit the generated scenes.json
# 3. Continue with voiceover + composition as above

See references/url-to-video.md for the full URL-to-video workflow.


Safe Zones (Critical)

Reels (1080×1920)

┌──────────────────────────┐ 0px
│     TOP DANGER (285px)   │
├──────────────────────────┤
│ ←80px  SAFE AREA  120px→ │
│      880×1235px          │
├──────────────────────────┤
│   BOTTOM DANGER (400px)  │
└──────────────────────────┘ 1920px
const SAFE = { top: 285, bottom: 400, left: 80, right: 120 };

Website Videos (1920×1080)

const SAFE = { top: 60, bottom: 60, left: 80, right: 80 };

Scene JSON Format

{
  "name": "ad-example",
  "voice": "VoiceName",
  "character": "narrator",
  "dictionary": "your-brand",
  "scenes": [
    { "id": "scene1", "text": "Hook text.", "duration": 3.5, "character": "dramatic" },
    { "id": "scene2", "text": "Problem.", "duration": 4.5 },
    { "id": "scene3", "text": "Solution.", "duration": 4.0, "character": "expert" },
    { "id": "scene4", "text": "CTA.", "duration": 3.0, "character": "calm" }
  ]
}

Voice Character Presets

CharacterStyleStabilitySimilarityStyle Param
dramaticIntense, emotional0.30.80.7
narratorProfessional, smooth0.50.750.4
expertAuthoritative0.60.850.3
calmSoothing, reassuring0.70.80.2
conversationalCasual, friendly0.450.70.5

Composition Template

import { AbsoluteFill, Audio, Series, staticFile } from "remotion";

// Import from your brand-config.md values
const COLORS = { primary: "#000", accent: "#888", dark: "#111", background: "#fff" };

export const AdTemplate: React.FC = () => {
  const { fps } = useVideoConfig();
  // Use actualDuration from info.json, not estimated
  const DURATIONS = { scene1: 3.42, scene2: 4.35, scene3: 4.12, scene4: 3.31 };
  const pad = 5;

  return (
    <AbsoluteFill>
      <Audio src={staticFile("audio/ad-example/ad-example-combined.mp3")} />
      <Series>
        <Series.Sequence durationInFrames={Math.round(DURATIONS.scene1 * fps) + pad}>
          <Scene1Hook />
        </Series.Sequence>
        {/* ... remaining scenes */}
      </Series>
    </AbsoluteFill>
  );
};

See references/components.md for reusable scene components. See references/voiceover.md for TransitionSeries audio sync.


Reference Files

Load these on demand based on the task:

Core (read first)

FileWhen to read
setup.mdProject initialization
brand-config-template.mdConfiguring brand: colors, fonts, voice, captions, compliance
formats.mdDimension specs, safe zones, crop previews

Video Creation

FileWhen to read
ohneis-style.mdBeat-driven cinematic reel template: mixed-font typography, hard cuts, moody photos
voiceover.mdElevenLabs TTS, models, scene JSON, timing sync, dictionaries
captions.mdAnimated captions: TikTok-style, word-by-word, karaoke
animations.mdSpring configs, transitions, animation components
components.mdReusable scene template components
website-videos.md16:9 long-form format, 6-scene structure
url-to-video.mdCreate videos from existing web pages

Audio

FileWhen to read
sound-effects.mdElevenLabs SFX generation
music.mdBackground music via ElevenLabs or Suno

Assets & Static

FileWhen to read
local-assets.mdBackground images, icons, illustrations
carousels.md4:5 carousel design and batch rendering

Copywriting

FileWhen to read
ad-copywriting.mdScript frameworks, hook formulas, CTA patterns
copy-frameworks.mdHeadline templates, section formulas
natural-transitions.mdHuman-sounding transitions, AI-tell avoidance

Distribution

FileWhen to read
paid-ads.mdMeta campaign strategy, targeting, budgets
social-content.mdContent calendar, repurposing framework

Scripts

ScriptPurpose
scripts/generate.jsElevenLabs voiceover with timestamps, dictionaries, request stitching
scripts/suno-direct.tsSuno background music generation
scripts/url-to-scenes.jsExtract page content into scene JSON

Pre-Upload Checklist

Reels

  • 1080×1920, H.264, 30fps
  • All text within safe zones
  • No content in top 285px or bottom 400px
  • Font sizes ≥ 48px
  • Voiceover synced, captions timed
  • ~15s total duration

Website Videos

  • 1920×1080, H.264, 30fps
  • Font sizes ≥ 36px
  • 60-160s duration
  • 6-scene structure with appropriate voice characters

Carousels

  • 1080×1350, PNG
  • 80px padding from edges
  • 5-10 slides with swipe indicators

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

elevenlabs-remotion

No summary provided by upstream source.

Repository SourceNeeds Review
General

image-gen

Generate AI images from text prompts. Triggers on: "生成图片", "画一张", "AI图", "generate image", "配图", "create picture", "draw", "visualize", "generate an image".

Archived SourceRecently Updated
General

explainer

Create explainer videos with narration and AI-generated visuals. Triggers on: "解说视频", "explainer video", "explain this as a video", "tutorial video", "introduce X (video)", "解释一下XX(视频形式)".

Archived SourceRecently Updated
General

asr

Transcribe audio files to text using local speech recognition. Triggers on: "转录", "transcribe", "语音转文字", "ASR", "识别音频", "把这段音频转成文字".

Archived SourceRecently Updated