mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2024-12-27 20:38:12 +01:00
7 lines
275 B
Bash
7 lines
275 B
Bash
#!/bin/bash
|
|
|
|
# Verbosity and settings that you pretty much just always are going to want.
|
|
alias \
|
|
yt="yt-dlp --embed-metadata -i" \
|
|
yta="yt -x -f bestaudio/best -o '%(uploader)s - %(title)s [%(id)s].%(ext)s'" \
|
|
ytmp3="yta --audio-format mp3 --audio-quality 192K"
|