Skip to content

Instantly share code, notes, and snippets.

@mamemomonga
Last active February 10, 2025 17:26
Show Gist options
  • Save mamemomonga/9a60ca8c0141964044a88c2264c61c2c to your computer and use it in GitHub Desktop.
Save mamemomonga/9a60ca8c0141964044a88c2264c61c2c to your computer and use it in GitHub Desktop.
冒頭の無音部分を良い感じにカットしてYouTubeからオーディオをMP3でダウンロードする
#!/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