Translate

Play YouTube Videos in Slow or Fast Motion


Watching YouTube videos at different playback speeds—whether slower to analyze something in detail or faster to save time—is a built-in feature of the YouTube player. You don’t need any additional apps, extensions, or advanced knowledge to use it. In this post, we’ll explore how to control playback speed of YouTube videos across desktop, mobile apps, and even embedded players, with a few advanced tips.


Why Change YouTube Playback Speed?

Changing video speed can be useful in many scenarios:

  • Watching tutorials slowly to better understand complex steps.

  • Speeding up podcasts, interviews, or educational lectures to save time.

  • Slowing down sports clips, dance routines, or gameplay for analysis.

  • Reviewing meetings, webinars, or recorded Zoom calls faster.


Playback Speed Options on YouTube

YouTube offers the following playback speeds:

  • 0.25x (quarter speed)

  • 0.5x (half speed)

  • 0.75x

  • 1x (normal)

  • 1.25x

  • 1.5x

  • 1.75x

  • 2x (double speed)

The range is designed to allow both slow-motion and fast-motion playback while maintaining audio clarity through YouTube's adaptive processing.


How to Change YouTube Playback Speed on Desktop

  1. Open the video in your browser (Chrome, Firefox, Edge, Safari).

  2. Click the gear icon (⚙️) at the bottom-right of the video player.

  3. Select “Playback speed.”

  4. Choose your preferred speed (e.g., 0.5 for half speed or 1.5 for 1.5x speed).

The change takes effect immediately and persists across videos until you change it again.


Change Playback Speed on YouTube Mobile App (Android or iOS)

  1. Open the video in the YouTube app.

  2. Tap the screen to show controls.

  3. Tap the three dots menu (⋮) at the top right.

  4. Tap “Playback speed.”

  5. Select your desired speed.

Mobile apps support all the same speed options as the desktop version.


Use Keyboard Shortcuts (Desktop Browsers Only)

If you want even faster access to playback control on desktop:

  • Press Shift + . (period) to increase speed.

  • Press Shift + , (comma) to decrease speed.

This is useful for keyboard-heavy users like coders, gamers, or students following a video lecture.


How to Set Custom Playback Speeds (Advanced)

Although YouTube gives fixed speed steps (like 0.5x or 1.5x), some power users want more precise control—like 1.1x or 0.9x. Here’s how to do that:

In Chrome DevTools Console:

  1. Right-click anywhere on the YouTube page and select Inspect.

  2. Go to the Console tab.

  3. Paste the following command:

document.querySelector('video').playbackRate = 1.1;

This sets the playback rate to 1.1x. Replace 1.1 with any custom value like 0.85 or 2.5.

Note: These custom speeds might not always sound clear or be supported consistently.


How to Slow Down Embedded YouTube Videos

If you’re embedding a YouTube video on your own website and want it to autoplay at a certain speed, use JavaScript with the YouTube IFrame API.

Example:

<iframe id="player" src="https://www.youtube.com/embed/VIDEO_ID?enablejsapi=1" frameborder="0"></iframe>

<script>
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/iframe_api";
  document.body.appendChild(tag);

  var player;
  function onYouTubeIframeAPIReady() {
    player = new YT.Player('player', {
      events: {
        'onReady': function (event) {
          event.target.setPlaybackRate(0.75);
        }
      }
    });
  }
</script>

This will set the embedded video’s speed to 0.75x as soon as it loads.


YouTube Playback Speed on Smart TVs

On smart TVs or console apps (like Xbox or PlayStation), changing playback speed is often not available. This feature is limited to mobile apps and browsers. If you're streaming from your phone or PC to your TV (via Chromecast or AirPlay), control the speed on your casting device.


Can You Permanently Set a Default Playback Speed?

There is no native setting in YouTube to lock a default playback speed across sessions. However, if you always want 1.5x speed or 2x, you can:

  1. Use browser extensions like “Enhancer for YouTube” (on Chrome or Firefox) to auto-set speed.

  2. On mobile, you’ll need to manually set it each time.

Note: Using extensions is only allowed in desktop browsers, and their behavior may break if YouTube updates its interface.


Final Thoughts

Changing YouTube’s playback speed is an easy and powerful way to take control of your video consumption. Whether you want to breeze through lectures or study a tricky dance move, YouTube’s speed controls are your friend.

From built-in tools to advanced API scripting, the flexibility is there for casual and power users alike. Give it a try next time you feel a video is too slow—or too fast—for your taste.