Every time VidNo processes a recording, it produces four distinct videos from the same source material, generates a thumbnail, and uploads everything to YouTube automatically. This is not just re-encoding at different lengths -- each format has its own script, pacing, and editing approach.

Format 1: Full Tutorial

The primary output. A comprehensive walkthrough that covers every meaningful step in your recording session.

  • Typical length: 8-20 minutes (depending on recording length)
  • Script style: Detailed explanations with context on why decisions were made
  • Editing approach: Dead time removed, but every code change is preserved and explained
  • Best for: YouTube main channel content, course material, documentation

The full tutorial is what replaces your manual editing workflow. It covers the complete session with no important details omitted. Chapter markers are embedded for YouTube's chapter feature.

Format 2: Quick Recap

A condensed version that covers the key decisions and final result without the step-by-step detail.

Stop editing. Start shipping.

VidNo turns your coding sessions into YouTube videos — scripted, edited, thumbnailed, and uploaded. Shorts included. One command.

Try VidNo Free
  • Typical length: 2-5 minutes
  • Script style: Summary-focused -- what was built, what problems were solved, what the final code looks like
  • Editing approach: Aggressive cutting. Only the most important scenes are kept.
  • Best for: LinkedIn posts, team updates, email newsletter content

The recap uses the same Claude-generated understanding of your session but rewrites the script as a summary. Think of it as the "TL;DR" version of the full tutorial.

Format 3: Highlight Reel

A short-form clip designed for social media distribution.

  • Typical length: 30-90 seconds
  • Script style: Hook-driven -- starts with the interesting result, then briefly shows how
  • Editing approach: Fast cuts, zoom effects on key code moments, vertical crop available
  • Best for: YouTube Shorts, Twitter/X, LinkedIn short-form, Instagram Reels

The highlight reel is optimized for attention. It opens with the most visually interesting or impressive moment from your session and teases the full tutorial.

Format 4: YouTube Short

A vertical (9:16) clip built specifically for the YouTube Shorts feed.

  • Typical length: 30-60 seconds
  • Aspect ratio: 9:16 vertical, optimized for mobile viewing
  • Script style: Single compelling takeaway from the session -- one problem, one solution
  • Editing approach: Tight framing on the relevant code region, fast pacing, text overlays for context
  • Best for: YouTube Shorts feed, driving viewers to the full tutorial

The Short is uploaded to YouTube as a Short automatically, with the #Shorts tag and appropriate metadata. It links back to the full tutorial in its description.

How Multi-Format Generation Works

VidNo does not generate one video and trim it four ways. The multi-format process works like this:

  1. Shared analysis: Frame analysis, OCR, and git diff extraction happen once
  2. Four separate scripts: Claude generates all four scripts in a single API call, each with different instructions
  3. Four separate voice tracks: Each script gets its own voice synthesis pass
  4. Four separate edit passes: The FFmpeg pipeline runs four times with different parameters (including vertical crop for the Short)
  5. Thumbnail generation: An AI-generated thumbnail is created from the video content
  6. YouTube upload: All formats, the thumbnail, and auto-generated metadata (title, description, tags, chapters) are uploaded via the YouTube API

The total processing time is roughly 1.5x a single video, not 4x, because the analysis stage (the slowest part) only runs once. The upload stage adds minimal time on a decent internet connection.

Controlling Output Formats

By default, all three formats are generated. You can select specific ones:

# Only the full tutorial
vidno process recording.mp4 --format full

# Full tutorial and recap, skip highlight and Short
vidno process recording.mp4 --format full,recap

# Only the highlight reel
vidno process recording.mp4 --format highlight

# Only the YouTube Short
vidno process recording.mp4 --format short

# Skip upload (render locally without publishing)
vidno process recording.mp4 --no-upload

Content Strategy With Three Formats

The three-format approach enables a content distribution strategy that would otherwise require separate production workflows:

  1. Tuesday: The full tutorial and YouTube Short are auto-published to YouTube (scheduled by VidNo)
  2. Wednesday: Post the highlight reel on Twitter/X and LinkedIn with a link to the full video
  3. Thursday: Share the recap in your newsletter or team Slack channel

One recording session produces four pieces of content for multiple platforms, with the YouTube uploads happening automatically. Without VidNo, this same strategy would require separate editing sessions, manual uploads, and metadata entry for each video.

Learn more about the production pipeline in how VidNo works. To start producing multi-format content, follow the getting started guide.