lock
fingerprint
arrow_back BACK TO POSTS
code 5 MIN READ

The Ultimate Two Letter Trick for Saving and Sharing Videos Anywhere

Recently, I stumbled across an open source tool that completely solved the headache of sharing videos with friends on the internet quickly: yt-dlp.

AUTHOR: MIGUEL VIDDY PUBLISHED: Sep 8, 2026 FORMAT: MARKDOWN
The Ultimate Two Letter Trick for Saving and Sharing Videos Anywhere

We’ve all run into the same digital brick wall: a friend sends an awesome clip from Reddit, Instagram, Threads, or YouTube, only for you to click it and be greeted with "This content is not available in your country" or an outright block by a local ISP. It’s annoying, it kills the momentum of sharing cool media, and relying on ad riddled, sketchy "free video downloader" websites usually rewards you with pop up scams and compressed potato quality files.

Recently, I stumbled across an open-source tool that completely solved this headache for me: yt-dlp.

First off full transparency: I am not a paid sponsor, an affiliate, or associated with the project in any way. I’m just an everyday user who found a piece of software that works ridiculously well, and I wanted to share it with anyone tired of dealing with regional locks, broken media players, or ISP restrictions when trying to swap videos with friends.

Why yt-dlp Is a Game Changer

If an ISP or regional restriction prevents someone from loading an embedded web player, pulling the clean source file directly often bypasses the issue entirely. Once you have the raw MP4 or MKV saved locally, you can pass it along directly over Discord, Telegram, or cloud storage without anyone hitting a geoblock.

yt-dlp is a command-line tool, which might sound intimidating if you don't spend your day inside terminal windows, but it is hands down the most robust media downloader on the internet:

  • Zero ads, tracking, or bloat: It's lightweight, open-source, and maintained purely by community developers.
  • Universal support: It doesn't just grab YouTube videos—it works seamlessly across Reddit, Vimeo, Twitch, and hundreds of other platforms.
  • Rock-solid quality: It grabs the highest available resolution and audio bitrates, automatically merging them behind the scenes.

The only minor catch? Typing out full commands and file paths every single time can get old fast. So, I figured out how to turn the entire process into a two letter command: literally just typing dl <video-link> from anywhere in Windows to automatically drop the video straight into the personal Videos folder.

Here is how you can set it up in under two minutes.

How to Set It Up (ELI5 Guide)

Step 1: Install yt-dlp Using Windows Package Manager Windows includes a built in package manager called winget, which handles fetching the program and everything it needs to stitch audio and video together (FFmpeg).

  1. Press the Windows Key, type cmd, and open Command Prompt.
  2. Copy and paste the following line, then hit Enter:

winget install yt-dlp.yt-dlp

Let the terminal do its thing. It will download yt-dlp, a lightweight runtime called Deno, and FFmpeg automatically. Once it finishes, close that Command Prompt window so Windows can register the new software.

Step 2: Create the Global dl Shortcut

Instead of typing out long commands, we will create a tiny two-line helper script called dl.bat. Placing it inside your Windows app shortcuts directory ensures it can be run from any folder or directory on your system.

  1. Open a fresh Command Prompt window.
  2. Run this single command to create your shortcut:

(echo @echo off & echo yt-dlp -P "%USERPROFILE%\Videos" %*) > "%LOCALAPPDATA%\Microsoft\WindowsApps\dl.bat"

(Note: %USERPROFILE%\Videos automatically points directly to your default Windows Videos folder, regardless of your username.)

Step 3: Download Any Video That’s all the setup required. Now, whenever you need to grab a clip:

  1. Open Command Prompt.
  2. Type dl, hit space, paste the URL(link) of the video you want, and press Enter:

yt-dlp will fetch the highest quality stream, combine the audio and video tracks, and deposit the finished file directly into your Videos folder. From there, you have an unrestricted local file you can watch offline or send straight to friends who can't access the site directly.

© 2026 MIGUEL VIDDY. ALL RIGHTS RESERVED. KERNEL v1.1.0
GLOW OS ACTIVE | LATENCY: 14MS