set_rip : quickly dl a dj set with LQ / 360p video and HQ audio

Created: 2026-07-23 18:37:17 | Last updated: 2026-07-23 18:39:26 | Status: Public

set_rip.ps1

quickly dl a dj set with LQ / 360p video and HQ audio

This posh script assumes yt-dlp.exe is in your path

$url = (Read-Host "Paste URL").Trim() -replace '^\[|\]$|[()<>"'']', ''

if ($url -match '(?:v=|youtu\.be/|shorts/|embed/|live/)([A-Za-z0-9_-]{11})') {
    $id = $Matches[1]
} elseif ($url -match '([A-Za-z0-9_-]{11})') {
    $id = $Matches[1]
} else {
    Write-Error "No video ID found."
    exit 1
}

yt-dlp -f "bv[height<=360][ext=mp4]+ba[ext=m4a]/b[height<=360]" "https://www.youtube.com/watch?v=$id"