Skip to content

Instantly share code, notes, and snippets.

@bhumit070
Last active August 21, 2026 05:36
Show Gist options
  • Select an option

  • Save bhumit070/05ed98b1e2b78c18d9b4850139953e29 to your computer and use it in GitHub Desktop.

Select an option

Save bhumit070/05ed98b1e2b78c18d9b4850139953e29 to your computer and use it in GitHub Desktop.
yt-dlp audio download
yt-dlp \
--download-sections "*00:00:08-inf" \
-f "bestaudio" \
-x \
--audio-format m4a \
--embed-metadata \
--embed-thumbnail \
--convert-thumbnails jpg \
--add-metadata \
--cookies-from-browser chrome \
-o "%(title)s.%(ext)s" \
"<URL>"
yt-dlp \
-f "bestaudio" \
-x \
--audio-format m4a \
--embed-metadata \
--embed-thumbnail \
--convert-thumbnails jpg \
--cookies-from-browser chrome \
-o "%(playlist_index)02d - %(title)s.%(ext)s" \
"<PLAYLIST_URL>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment