initial commit

This commit is contained in:
mr0xb 2025-12-05 14:16:17 -05:00
commit 62156a1d85
9 changed files with 68 additions and 0 deletions

4
media/yt-audio Executable file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
exec youtube-dl \
--ignore-errors --output "%(title)s.%(ext)s" \
--extract-audio --audio-format mp3 "$@"

3
media/yt-transcribe Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
cd ~/Downloads || exit
yt-dlp --write-auto-sub --sub-lang en --skip-download "$1" -o "yt-transcription.%(ext)s"