Features

Stashy features & command-line guideEverything in the stash.

A friendly window for everyday downloads and a proper command line for scripts. Both use the same engine and the same self-updating tools.

Download for Windows

v1.0.019.4 MBWindows 10 & 11 · x64Free

Command line

In the app

Everything it does.

  • MP4 with sound, always

    Video and audio are fetched separately and merged by FFmpeg, so every MP4 has sound, from 360p all the way up to 4K when the video has it.

  • The quality you picked

    The quality list shows only the resolutions a video really has. Pick 4K and you get 2160p, not a silent step down.

  • MP3 and M4A audio

    Save just the sound as MP3 at 320, 256, 192 or 128 kbps, or as M4A in the original quality.

  • A real download queue

    Add as many links as you like. Each gets its own progress bar, speed and time left, with Cancel, Retry and Show in folder. Up to 4 downloads run at once.

  • Whole playlists

    When a link is a playlist, switch on Whole playlist and Stashy saves every video in it.

  • Tools that stay fresh

    Sites change often. Stashy keeps yt-dlp, FFmpeg and Deno in its own folder and updates them in one click, so downloads keep working.

  • Quality in the file name

    Files are named like Title [id] - 1080p.mp4 or - 320kbps.mp3, so several qualities of one video can sit side by side.

  • Preview first

    See the thumbnail, title, uploader, site and length before you download, and how many videos a playlist has.

  • Browser cookies

    For videos that need you to be signed in, like age-restricted or members-only ones you have access to, Stashy can use your browser's login: Chrome, Edge, Firefox, Brave or Opera.

  • Paste and go

    Press Ctrl+V anywhere in the window or drag a link onto it. Enter fetches the details, Ctrl+D starts the download.

  • History

    Every finished download is kept on the History page, with search and a click to open the file or its folder.

  • Command line

    Download from any terminal or script once Stashy is on your PATH (an optional checkbox in the installer).

    stashy https://youtu.be/aqz-KE-bpKQ -f mp3 Command-line guide
  • English & العربية

    A full Arabic interface with a right-to-left layout. Switch languages any time in Settings.

  • Updates itself

    Stashy tells you when a new version is out, checks the download's SHA-256 and installs it in a click.

  • Dark or light

    A bold dark theme, a light one, or follow Windows. Taskbar progress and a notification when your downloads finish in the background.

  • No ads, no account

    Nothing to sign up for, no ads, no bundled extras. Files go straight to your Downloads\Stashy folder, or wherever you choose.

About 1440p and 4K

Up to 1080p, MP4s use H.264 video, which plays everywhere. YouTube only offers 1440p and 4K as VP9 or AV1, so those MP4s play in the Windows 11 Media Player and VLC; older players may need the free VP9 Video Extensions.

Files that just play

After each MP4, Stashy checks the streams. Audio that isn't AAC, MP3 or ALAC becomes AAC, and HEVC video (common on TikTok) becomes H.264, so the file opens in the default Windows player.

No broken files

A download only counts as done when the file exists and its streams check out. If YouTube refuses a stream, Stashy retries with fresh links before it gives up, and tells you if it had to save a lower quality.

Command line

Download from any terminal.

Run stashy with a link in PowerShell or Command Prompt and it downloads right there, with a progress bar and no window. Great for scripts and long lists of links.

Windows PowerShell

PS C:\Users\you> stashy --version

Stashy 1.0.0

PS C:\Users\you> stashy https://youtu.be/aqz-KE-bpKQ --info

Big Buck Bunny 60fps 4K - Official Blender Foundation Short Film

Site:YouTube

Uploader:Blender

Duration:10:35

Video:4K (2160p), 1440p, 1080p, 720p, 480p, 360p

Formats:MP4, MP3, M4A

PS C:\Users\you> stashy https://youtu.be/aqz-KE-bpKQ -f mp3 -b 320

Big Buck Bunny 60fps 4K - Official Blender Foundation Short Film [YouTube]

[########################] 100.0%

Saved (320kbps): C:\Users\you\Downloads\Stashy\Big Buck Bunny 60fps 4K - Official Blender Foundation Short Film [aqz-KE-bpKQ] - 320kbps.mp3

PS C:\Users\you> stashy https://youtu.be/aqz-KE-bpKQ -q 1080 -o D:\Videos

Big Buck Bunny 60fps 4K - Official Blender Foundation Short Film [YouTube]

[########################] 100.0%

Saved (1080p): D:\Videos\Big Buck Bunny 60fps 4K - Official Blender Foundation Short Film [aqz-KE-bpKQ] - 1080p.mp4

PS C:\Users\you>

An example session with the Blender Foundation's open movie Big Buck Bunny (CC BY). Output is shortened (the progress bar is replaced by the result when a download finishes); speeds depend on the video and your connection.
Copy an example
stashy https://youtu.be/aqz-KE-bpKQ -q 1080
stashy https://youtu.be/aqz-KE-bpKQ -f mp3 -b 320
stashy URL1 URL2 URL3 -f m4a -o D:\Music
stashy --update-tools

Put links in quotes if they contain &, for example stashy "https://www.youtube.com/watch?v=aqz-KE-bpKQ&t=30".

Set it up

Put stashy on your PATH.

Windows only finds stashy in a terminal once its folder is on your PATH. Pick one of the two ways below. Both take under a minute, and neither needs admin rights.

Recommended

1. Tick the box in the installer

  1. Run the Stashy setup.
  2. On the Select Additional Tasks page, tick Add Stashy to PATH.
  3. Finish the setup, open a new terminal and run stashy --version.

Already installed? Just run the setup again. It upgrades in place, keeps your settings, tools and history, and lets you tick the box. Updates remember your choice, and uninstalling removes the PATH entry.

By hand

2. Add it to your PATH yourself

  1. Press Win, type environment and open Edit environment variables for your account.
  2. Under User variables, select Path, then click Edit → New.
  3. Paste this exactly as written, then click OK twice:
%LOCALAPPDATA%\Programs\Stashy

Keep the %LOCALAPPDATA% part as it is. Stashy's updates then leave your entry alone. If you installed Stashy in a different folder, use option 1 instead.

Or paste this into PowerShell:

$dir = '%LOCALAPPDATA%\Programs\Stashy'
$key = [Microsoft.Win32.Registry]::CurrentUser.OpenSubKey('Environment', $true)
$path = $key.GetValue('Path', '', 'DoNotExpandEnvironmentNames')
if (($path -split ';') -notcontains $dir) { $key.SetValue('Path', (@($path.TrimEnd(';'), $dir) -ne '') -join ';', 'ExpandString') }
$key.Close()
# Tell Windows the PATH changed, so new terminals pick it up:
[Environment]::SetEnvironmentVariable('STASHY_REFRESH', '1', 'User'); [Environment]::SetEnvironmentVariable('STASHY_REFRESH', $null, 'User')

It adds the folder to your own PATH only once and leaves every other entry untouched. Then open a new terminal.

Skip PATH entirely: call the app by its full path, for example & "$env:LOCALAPPDATA\Programs\Stashy\Stashy.exe" --help in PowerShell.

Reference

Every option.

stashy URL [URL ...] [options]. Options go in any order and combine freely, for example stashy URL -f mp3 -b 192 -o D:\Music.

OptionWhat it doesExample
URL [URL ...]One or more links to download. Same as the app's Download button.stashy https://youtu.be/aqz-KE-bpKQ
-d, --download URLDownload URL. The same as giving the link on its own; repeat it for several links.stashy -d URL1 -d URL2
-f, --format {mp4,mp3,m4a}What to save: MP4 video with sound (default), MP3 audio or M4A audio.stashy URL -f mp3
-q, --quality {best,2160,1440,1080,720,480,360}Video height for MP4. Default: best, the highest the video has.stashy URL -q 1080
-b, --bitrate {320,256,192,128}MP3 bitrate in kbps. Default: 320.stashy URL -f mp3 -b 192
-o, --out DIRFolder to save into. Default: Downloads\Stashy.stashy URL -o D:\Videos
--playlistDownload the whole playlist when the link is one.stashy PLAYLIST_URL --playlist
--cookies {chrome,edge,firefox,brave,opera}Use your browser's login, for videos you can only watch while signed in.stashy URL --cookies firefox
--infoPrint the title, site, length and available qualities without downloading.stashy URL --info
--jsonMachine-readable output: with --info, or one JSON line per finished download.stashy URL --info --json
--toolsShow the installed versions of yt-dlp, FFmpeg and Deno.stashy --tools
--setupDownload any missing tools (yt-dlp, FFmpeg and Deno).stashy --setup
--update-toolsUpdate yt-dlp, FFmpeg and Deno to their latest versions.stashy --update-tools
--check-updateCheck whether a newer version of Stashy is available.stashy --check-update
--quietNo progress bar; print only results and errors.stashy URL --quiet
-h, --helpShow the built-in help.stashy --help
-V, --versionShow the installed version.stashy --version

Links

Pass one link or several; they download one after another. Opening a link without a terminal, from a shortcut for example, opens the Stashy window with the link filled in instead.

Tools

The command line uses the same yt-dlp, FFmpeg and Deno as the app. If they're missing it stops with exit code 3; run stashy --setup once, and stashy --update-tools whenever a site stops working.

Exit codes

  • 0Everything worked.
  • 1A download or network error.
  • 2Bad arguments, like an unknown option or value.
  • 3The download tools are missing. Run stashy --setup.
Using it in a script

Stashy is a windowed app, so in a script, make the next line wait for it to finish. Either pipe its output (for example to Out-Host) and read $LASTEXITCODE, or use Start-Process -Wait. In Command Prompt, use start /wait. Use --json when another program reads the output.

Get-Content links.txt | ForEach-Object { stashy $_ -f mp3 --quiet | Out-Host }
if ($LASTEXITCODE -ne 0) { Write-Warning "The last download failed" }
start /wait stashy https://youtu.be/aqz-KE-bpKQ -q 720 -o D:\Videos

Every option also has the built-in help: run stashy --help.

Start stashing.

Free for Windows 10 & 11. Installs in a minute, keeps itself up to date.

Download for Windows

v1.0.019.4 MBWindows 10 & 11 · x64Free