Last active
December 8, 2022 15:55
-
-
Save mattantonelli/7904e616e70377fcdafb48f7a3799e54 to your computer and use it in GitHub Desktop.
youtube-dl audio only
This file contains 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
# List all available formats and download specific audio-only format | |
youtube-dl -F https://www.youtube.com/watch?v=xFjpTF4-PgI | |
youtube-dl -f 140 https://www.youtube.com/watch?v=xFjpTF4-PgI | |
# Download and convert to audio-only format | |
youtube-dl -x --audio-format m4a https://www.youtube.com/watch?v=xFjpTF4-PgI |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment