Skip to main content
L
Loopaloo
Buy Us a Coffee
All ToolsImage ProcessingAudio ProcessingVideo ProcessingDocument & TextPDF ToolsCSV & Data AnalysisConverters & EncodersWeb ToolsMath & ScienceGames
Guides & BlogAboutContact
Buy Us a Coffee
L
Loopaloo

Free online tools for developers, designers, and content creators. All processing happens entirely in your browser - your files never leave your device. No uploads, no accounts, complete privacy.

support@loopaloo.com

Tool Categories

  • Image Tools
  • Audio Tools
  • Video Tools
  • Document & Text
  • PDF Tools
  • CSV & Data
  • Converters
  • Web Tools
  • Math & Science
  • Games

Company

  • About Us
  • Contact
  • Blog
  • FAQ

Legal

  • Privacy Policy
  • Terms of Service
  • Disclaimer

Support

Buy Us a Coffee

© 2026 Loopaloo. All rights reserved. Built with privacy in mind.

Privacy|Terms|Disclaimer
  1. Home
  2. Video Processing
  3. Video Speed Controller - Speed Up or Slow Down Videos
Add to favorites

Video Speed Controller - Speed Up or Slow Down Videos

Change video playback speed from 0.25x to 4x. Create slow motion effects, time-lapse videos, or speed ramps. Audio pitch preserved automatically with intelligent adjustment.

Speed up or slow down any video with the Video Speed Controller. Set a custom playback rate from 0.25x to 4x, preview the result in real time, and export the modified video. The tool retimes the video by rescaling frame timestamps and retimes the audio with a pitch-preserving filter, so sped-up dialogue stays at its natural pitch and remains intelligible rather than turning into a chipmunk voice, and slowed-down audio does not become an unusable low drone. Useful for creating time-lapses, slow-motion playback, or simply watching content at your preferred pace before exporting.

Video stays on your deviceMore video processingJump to full guide

Related reading

  • Video Editing in the Browser: Trim, Merge, Convert, and More14 min read

Initializing in your browser…

You might also like

Video Trimmer - Cut & Clip Videos Online

Trim and cut videos precisely with frame-by-frame scrubbing. Set start/end points visually, preview clips in real-time, and export trimmed videos instantly. No upload required - runs 100% in browser.

Video Format Converter - MP4, WebM, MOV, AVI, MKV

Convert videos between MP4, WebM, OGG, MOV, AVI, and MKV formats. Device presets for YouTube, Instagram, TikTok, iPhone, Android. Quality options from fast to high quality encoding.

Video Merger - Combine & Join Multiple Videos

Merge multiple video clips into one seamless video. Drag-and-drop reordering, preview before export, timeline visualization. Combine videos in any format with automatic re-encoding.

Video Speed Controller - Speed Up or Slow Down Videos: a worked example

A 3-minute tutorial drags and you want a 2× sped-up version for a quick recap.

Input

tutorial.mp4 · 2× speed · drop/keep audio pitch
Video Speed Controller - Speed Up or Slow Down Videos produces

Output

A 1:30 video at 2×, optionally pitch-corrected audio

Frames are retimed and audio is time-stretched, with optional pitch preservation so narration stays natural rather than chipmunked. Speed ramps are useful for both recaps and slow-motion emphasis.

What is Video Speed Controller - Speed Up or Slow Down Videos?

Speed up or slow down any video with the Video Speed Controller. Set a custom playback rate from 0.25x to 4x, preview the result in real time, and export the modified video. The tool retimes the video by rescaling frame timestamps and retimes the audio with a pitch-preserving filter, so sped-up dialogue stays at its natural pitch and remains intelligible rather than turning into a chipmunk voice, and slowed-down audio does not become an unusable low drone. Useful for creating time-lapses, slow-motion playback, or simply watching content at your preferred pace before exporting.

How to use

  1. 1Upload your video file.
  2. 2Use the speed slider to set your desired playback rate.
  3. 3Preview the speed-adjusted video with audio.
  4. 4Export the final video at the new speed.

When to use it

  • Time-lapse creation

    Speed up long recordings like construction progress, cloud movement, or cooking processes into watchable time-lapses.

  • Slow-motion highlights

    Slow down action footage to reveal details invisible at normal speed, sports plays, dance moves, science experiments.

  • Adjusting tutorial pacing

    Speed up or slow down recorded tutorials to match the viewer's preferred learning pace before sharing.

Key features

  • Speed range from 0.25x (slow motion) to 4x (fast forward)
  • Pitch-preserving audio retiming so voices keep their natural pitch
  • Optional keep or drop audio
  • Real-time preview at the selected speed
  • Re-encodes to H.264 video and AAC audio

How it works

The Video Speed Controller retimes your clip entirely in the browser using ffmpeg.wasm (the @ffmpeg/ffmpeg WebAssembly build, core 0.12.6) - nothing is uploaded to a server. On export it runs a single FFmpeg pass with the filter graph [0:v]setpts=(1/speed)*PTS[v];[0:a]atempo=...[a]. The setpts filter rescales each frame's presentation timestamp by the inverse of your chosen speed (pick 2x and timestamps are multiplied by 0.5; pick 0.5x and they are multiplied by 2), so this is pure timestamp retiming, not motion-compensated interpolation. No new in-between frames are synthesized: speeding up shows your existing frames over less real time, and slowing down replays the same captured frames over more time, which is why 0.25x and 0.5x slow motion can look slightly juddery unless the source was filmed at a high frame rate to begin with.

Audio is handled by FFmpeg's atempo filter, which only accepts a factor between 0.5 and 2.0 per instance. For speeds inside that window (0.5x through 2x) the tool applies a single atempo=speed. For the out-of-range presets - 0.25x and 4x - it chains several atempo stages, computing each stage as speed^(1/steps) so the stages multiply back to your target factor. Because atempo is inherently pitch-preserving, exported audio always keeps its natural pitch: sped-up dialogue stays intelligible instead of becoming a chipmunk voice, and slowed audio does not collapse into a low drone. Note that the 'Adjust Pitch' / 'Preserve Pitch' toggle and the audio mute button in the preview only change the live <video> element (via its playbackRate, preservesPitch and muted properties) - the exported file is produced by the fixed atempo graph and always preserves pitch and keeps the audio track.

The interface offers eight discrete presets (0.25x, 0.5x, 0.75x, 1x, 1.25x, 1.5x, 2x, 4x) plus a fine-tune slider that spans 0.25x to 4.0x in 0.05 steps, and it live-computes the resulting duration (original / speed) and the time saved or added before you commit. The export is re-encoded with libx264 at -preset ultrafast and -crf 23, audio as AAC, with -threads 0 to use all available cores; the result downloads as {filename}_{speed}x.mp4. Because it is a full re-encode rather than a stream copy, there is a small, predictable quality cost from the CRF 23 H.264 pass. Exporting at exactly 1x is blocked (the button is disabled and a toast asks you to pick a different speed), since that would re-encode the file with no timing change.

Frequently asked questions

Does speeding up a video reduce quality?

Each frame keeps its original detail. Speeding up shows the existing frames over less real time; slowing down replays the same frames over more time, so very slow rates can look slightly choppy because no new in-between frames are synthesized.

What happens to the audio when I change speed?

Audio is retimed with a pitch-preserving filter. At 2x speed, voices sound faster but keep their natural pitch rather than becoming high-pitched. You can also choose to drop the audio entirely.

Can I set different speeds for different sections?

The tool applies a uniform speed to the entire video. For variable speed, trim the video into sections, adjust each separately, then merge them.

Related tools and how they differ

  • Video Frame Rate Converter - Change FPS Online: Changes the FPS label by duplicating or dropping frames at the same duration; use it to retarget a clip to 24, 30, or 60 FPS for a platform, not to retime it.

Further reading

  • Video Editing in the Browser: Trim, Merge, Convert, and More14 min read

Private by design

Video is decoded and re-encoded on your own device. Large files never leave your machine.