Skip to content

Instantly share code, notes, and snippets.

@Olshansk
Created August 16, 2025 19:35
Show Gist options
  • Save Olshansk/05037d54e86d3615c07685b044d2f4d2 to your computer and use it in GitHub Desktop.
Save Olshansk/05037d54e86d3615c07685b044d2f4d2 to your computer and use it in GitHub Desktop.
Convert any YouTube Video to a Podcast on your phone in 3 steps
  1. Find your YouTube video and downlaod it using yt-dlp:
yt-dlp -o full_video.mp4 "https://www.youtube.com/watch?v=REPLACE_ME_WITH_YOUR_YOUTUBE_VIDE_ID"
  1. Convert it to an audio file using ffmpeg:
ffmpeg -i full_video.mp4.webm -vn -acodec mp3 output_audio.mp3
  1. Upload it to snipd via their upload tool at upload.snipd.com/

Disclaimer: I'm a paying user of snipd but have no affiliations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment