Skip to content

Instantly share code, notes, and snippets.

@kaplas
Created May 4, 2020 06:29
Show Gist options
  • Save kaplas/1c961e7364f228d9644edf605b8709de to your computer and use it in GitHub Desktop.
Save kaplas/1c961e7364f228d9644edf605b8709de to your computer and use it in GitHub Desktop.
Convert a Youtube channel into a podcast

Convert a Youtube channel into a podcast

Requirements

  • youtube-dl

Step 1: Download all videos of a channel as 64 kbps mono mp3s

youtube-dl \
    --extract-audio --audio-format mp3 --audio-quality 64 --postprocessor-args "-ac 1" \
    -o "%(upload_date)s-%(title)s-%(id)s.%(ext)s" \
    <channel URL here>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment