最后活跃于 2 weeks ago

This bash script downloads a video from YouTube and convert it to MP3.

airikr 修订了这个 Gist 2 weeks ago. 转到此修订

没有任何变更

airikr 修订了这个 Gist 2 weeks ago. 转到此修订

没有任何变更

airikr 修订了这个 Gist 2 weeks ago. 转到此修订

3 files changed, 14 insertions

preview-files.jpg(文件已创建)

Binary file changes are not shown

preview-terminal.jpg(文件已创建)

Binary file changes are not shown

ytdlp.sh(文件已创建)

@@ -0,0 +1,14 @@
1 + #!/bin/bash
2 + yt-dlp \
3 + --check-formats \
4 + --progress \
5 + --ignore-errors \
6 + --write-info-json \
7 + --add-metadata \
8 + --audio-format "mp3" \
9 + --extract-audio \
10 + --format bestaudio/best \
11 + --embed-thumbnail \
12 + --restrict-filenames \
13 + --concurrent-fragments 3 \
14 + -o "/path/to/audio/%(uploader)s/%(upload_date>%Y-%m-%d)s - %(title)s (%(id)s).%(ext)s" "$1"
上一页 下一页