Created
October 21, 2020 12:17
-
-
Save rdapaz/53e3d2a050cbba513157caa441c1b485 to your computer and use it in GitHub Desktop.
Download youtube video as mp3
This file contains hidden or 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
# Note to future self... | |
# Preparatory Steps | |
# ----------------- | |
# pip3 install youtube-dl | |
# sudo apt-get install ffmpeg | |
url=https://www.youtube.com/watch?v=b9fUdJdlExU | |
youtube-dl -F $url | |
# This gives list of available formats | |
youtube-dl -f 140 $url | |
# Say if file was downloaded as input.m4a | |
# Convert it to mp3 with: | |
ffmpeg -i input.m4a music.mp3 | |
# That's it!!! Enjoy! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment