Fix: YouTube “Error Code 153” (Player Configuration Error)

Watch Video on YouTube with Error Code 153: Video Player Configuration Error appears when a video fails to load inside an embedded or in-app YouTube player, showing a blank or frozen frame instead of starting playback.

This happens when the embedded player cannot create the configuration it needs to start, usually because the referrer or origin information is missing or blocked. Without these, the player refuses to initialize properly.

Main cause: the webpage or app is not sending valid referrer and origin headers to YouTube. These headers tell YouTube where the request is coming from, and if they are blocked, stripped, or empty, the player cannot verify the request.

Other common triggers include:

  • Improper use of youtube.com/embed/ without valid referrer information.
  • Browser extensions or privacy tools blocking the referrer header.
  • Incorrect or missing origin or referrerpolicy attributes in the embed code.
Important: Some solutions below are for people trying to watch the video, while others are for website/app owners who control the embed code. Each solution clearly states who it applies to.

1. Clear YouTube Cookies (For Viewers)

Old or corrupted YouTube cookies can interfere with how the player loads its configuration. Clearing them forces YouTube to rebuild a fresh playback session.

  1. Open YouTube in your browser.
  2. Press F12 to open DevTools.
  3. Go to the Application tab. (If it’s hidden, click the » icon.)
  4. Under Storage, expand Cookies and select https://www.youtube.com.
  5. Right-click and choose Clear.
  6. Reload the page and try the video again.

2. Try Another Browser (For Viewers)

If the video loads correctly in another browser, your main browser is likely blocking important headers or using corrupted cache.

  1. Open a different browser such as Chrome, Edge, or Firefox.
  2. Visit the same page showing the error.
  3. Try playing the embedded video.
  4. If it works, return to your main browser and clear its cache or reset it.

3. Disable Any Conflicting Plugin (For Viewers)

Extensions like ad blockers, privacy filters, and script blockers often stop the browser from sending the referrer header required by YouTube. Turning them off restores normal communication.

  1. Open your browser’s Extensions or Add-ons page.
  2. Disable anything related to ad-blocking, privacy protection, tracking protection, or JavaScript control.
  3. Refresh the video page.
  4. If the video works, re-enable extensions one by one to find which one caused it.

4. Update the App (For Mobile Viewers)

If the error appears inside a mobile app that embeds YouTube videos (news apps, learning apps, etc.), outdated components may fail to meet YouTube’s latest playback rules. Update both:

  • YouTube app
  • The app showing the embedded video
  1. Open Play Store (or App Store).
  2. Search for YouTube and tap Update if available.
  3. Update the app where you encountered the error.


5. Change the Embed URL (For Website / App Owners)

If you manage the website or app, switching to the youtube-nocookie.com domain avoids certain privacy-related restrictions and sends cleaner referrer data, which helps prevent blocked requests.

  1. Open the HTML editor or CMS where the embed code is stored.
  2. Find your iframe:
https://www.youtube.com/embed/VIDEO_ID
  1. Replace it with:
https://www.youtube-nocookie.com/embed/VIDEO_ID
  1. Save and reload the page.


6. Add a Referrer Policy to the YouTube Iframe (For Website / App Owners)

YouTube needs valid referrer/origin data to verify embedded requests. If the browser blocks or strips this header, the player fails with Error 153. Adding a referrer policy ensures the browser sends the required information.

  1. Open your HTML editor.
  2. Locate the YouTube iframe.
  3. Add this attribute inside the iframe tag:
referrerpolicy="strict-origin-when-cross-origin"

Example:

<iframe src="https://www.youtube.com/embed/VIDEO_ID" referrerpolicy="strict-origin-when-cross-origin"></iframe>

Save your changes and refresh the page to confirm whether the fix worked.

ABOUT THE AUTHOR

Muhammad Usman Ashraf


Muhammad Usman Ashraf is a content writer and website specialist with a strong background in WordPress development, SEO, and troubleshooting guides. At Appuals, he manages and writes in-depth articles that help users solve technical problems in simple, clear steps. Usman is passionate about creating useful content and building websites that are fast, easy to use, and optimized for search engines. With a mix of creativity and technical skills, he focuses on making information accessible and valuable for every reader.