Father
Professional
- Messages
- 2,602
- Reaction score
- 866
- Points
- 113
This is working on:
- Android(Termux)
- MacOS
- Linux
On android download termux from playstore.
Single MP3:
Playlist:
Replace the links.
Save mp3 to sdcard
(Open File Explorer In Root Of Your Android Device Should Be Downloaded MP3 Files)
SHARE AND SUPPORT US
- Android(Termux)
- MacOS
- Linux
On android download termux from playstore.
Code:
$ apt install wget python python-pip -y
$ wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/youtube-dl
$ chmod a+rx /usr/local/bin/youtube-dl
$ pip install youtube-dl
$ apt install youtube-dl
Single MP3:
Code:
$ youtube-dl -v -x --embed-thumbnail --audio-format mp3 https://www.youtube.com/watch?v=YTHr7gxwYUQ
Playlist:
Code:
$ youtube-dl -x --audio-format mp3 --playlist-start 1 --playlist-end 14 https://www.youtube.com/watch?v=PTVgUrRNM7E&list=PLoyUcIQiGLsVWzXL7RONZJycQX4U1CsCR
Replace the links.
Save mp3 to sdcard
Code:
$ termux-setup-storage
$ mv -v *.mp3 /sdcard/
(Open File Explorer In Root Of Your Android Device Should Be Downloaded MP3 Files)
SHARE AND SUPPORT US