Skip to content

Instantly share code, notes, and snippets.

@jericjan
Last active August 2, 2026 01:58
Show Gist options
  • Select an option

  • Save jericjan/b40b3146c1a485c3d1f37a1bf22a6836 to your computer and use it in GitHub Desktop.

Select an option

Save jericjan/b40b3146c1a485c3d1f37a1bf22a6836 to your computer and use it in GitHub Desktop.
How to get Retro YouTube Simulator working in 2026

Fiddler method

  1. Get version 0.1.0b of the game
  2. Install Fiddler Classic
  3. Get a blank exe from here
  4. Replace \YouTubeRetro\ytretro_Data\StreamingAssets\bin\youtube-dl.exe with it. Make sure it's also called youtube-dl.exe
  5. Download the attached html file. It will be used to create a fake search results page for the game to read.
  6. Each <li> block is one "video". href="" contains the YouTube URL, but Retro YT Sim only cares if it has an = and then letters, numbers, underscores, or hyphens after it. It's supposed to be the Youtube video ID, but it can just be anything since we're hijacking it. Take note of these IDs.
  7. Go to YouTubeRetro\ytretro_Data\StreamingAssets\.videos in Explorer. Here is where we can paste our own custom videos. If your ID from earlier was "apple", then name the video "apple.mp4". In addition to that, create a blank file called "apple.ogg". It needs it, but doesn't really read it. Some load bearing goku shi.
  8. In AutoResponder tab of Fiddler, Tick Enable rules. Add a rule, then in the first box, paste https://www.youtube.com/results, and in the second box, paste the path to your custom HTML. Don't forget to Save it.
  9. While Fiddler is running, open Retro YT Sim, head to the computer and type q whatever to search for videos. (Your search query doesn't matter). Then type r NUMBER to select your video. It'll arrive at your door and you can play it on the VHS
    • Close Fiddler when you're done with Retro YT Sim, because any YouTube search result page will just lead to your custom html file.

BepInEx Mod Method

Refer to https://github.com/jericjan/RetroYTSim-LocalVideoMod. After setting up, it just reads your local videos. No need for any network request hijacking.

<!DOCTYPE html>
<!-- saved from url=(0093)https://web.archive.org/web/20170407133638/https://www.youtube.com/results?search_query=apple -->
<html>
<head></head>
<body>
<li>
<div class="yt-lockup-video">
<span class="video-time">1:15</span>
<a href="=wonder" class="yt-uix-tile-link">r-906 - Wonder</a>
<div class="yt-lockup-byline">r-906</div>
<div class="yt-lockup-description">description</div>
</div>
</li>
<li>
<div class="yt-lockup-video">
<span class="video-time">1:15</span>
<a href="=backrooms" class="yt-uix-tile-link">Backrooms</a>
<div class="yt-lockup-byline">Kane Pixels</div>
<div class="yt-lockup-description">description</div>
</div>
</li>
<li>
<div class="yt-lockup-video">
<span class="video-time">1:15</span>
<a href="=brainrot" class="yt-uix-tile-link">Tokyo Manaka - Brainrot</a>
<div class="yt-lockup-byline">Tokyo Manaka</div>
<div class="yt-lockup-description">description</div>
</div>
</li>
<li>
<div class="yt-lockup-video">
<span class="video-time">1:15</span>
<a href="=larping-the_rooms" class="yt-uix-tile-link">Larping The Rooms</a>
<div class="yt-lockup-byline">The Larping Tombstone</div>
<div class="yt-lockup-description">description</div>
</div>
</li>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment