Last active
February 10, 2025 17:26
-
-
Save mamemomonga/9a60ca8c0141964044a88c2264c61c2c to your computer and use it in GitHub Desktop.
冒頭の無音部分を良い感じにカットしてYouTubeからオーディオをMP3でダウンロードする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
exec yt-dlp -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 --postprocessor-args '-af silenceremove=start_periods=1:start_duration=0.1:start_threshold=-70dB:start_silence=1' -o "%(upload_date)s - %(title)s.%(ext)s" "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment