dots


dots / config / .local / bin
xxwhirlpool  ·  2026-03-04

ytmp3

 1#!/usr/bin/env bash
 2#
 3# lazy ass way to get my idol MP3s
 4
 5if [[ $# -eq 0 ]]; then
 6	echo "Usage: ytmp3 [URL]"
 7	exit 1
 8fi
 9
10yt-dlp -f ba -x --audio-format mp3 -o "%(title)s.%(ext)s" "$1"