All Projects β†’ insaiyancvk β†’ pymusicdl

insaiyancvk / pymusicdl

Licence: MIT license
Download songs based on song name/ YouTube playlist/ Spotify playlist /album

Programming Languages

python
139335 projects - #7 most used programming language
Batchfile
5799 projects
shell
77523 projects

Projects that are alternatives of or similar to pymusicdl

youtubly-android
An android app to download πŸ“Ή videos and 🎢 songs from youtube to phone internal storage. In a nutshell NewPipe for just audio.
Stars: ✭ 24 (-41.46%)
Mutual labels:  songs, youtube-dl, youtube-downloader
easyYoutubeDL
A manager for automating download lists based on youtube-dl
Stars: ✭ 21 (-48.78%)
Mutual labels:  youtube-dl, youtube-downloader, youtube-playlist
audius
🎧 A cross-platform app for downloading songs from YouTube and Spotify
Stars: ✭ 19 (-53.66%)
Mutual labels:  download-songs, album-art, music-downloader
yt
Fine-tuning the use of youtube-dl for audio and videophiles
Stars: ✭ 39 (-4.88%)
Mutual labels:  youtube-dl, youtube-downloader, download-songs
Youtub.ly Android
An android app to download πŸ“Ή videos and songs from youtube to phone internal storage
Stars: ✭ 17 (-58.54%)
Mutual labels:  songs, youtube-dl, youtube-downloader
yt-videos-list
Create and **automatically** update a list of all videos on a YouTube channel (in txt/csv/md form) via YouTube bot with end-to-end web scraping - no API tokens required. Multi-threaded support for YouTube videos list updates.
Stars: ✭ 64 (+56.1%)
Mutual labels:  youtube-dl, youtube-downloader, youtube-playlist
Youtube Downloader For Macos
Simple menu bar app to download YouTube movies on your Mac
Stars: ✭ 185 (+351.22%)
Mutual labels:  youtube-dl, youtube-downloader
Youtube Mp3 Downloader
Extract music from YouTube videos
Stars: ✭ 187 (+356.1%)
Mutual labels:  youtube-dl, youtube-downloader
gropple
Server and bookmarklet to download files via youtube-dl directly from your browser. Cross platform single binary installation, web browser configurable.
Stars: ✭ 33 (-19.51%)
Mutual labels:  youtube-dl, youtube-downloader
Youtubedl Android
youtube-dl for android
Stars: ✭ 235 (+473.17%)
Mutual labels:  youtube-dl, youtube-downloader
Dvd
Download videos from anywhere
Stars: ✭ 114 (+178.05%)
Mutual labels:  youtube-dl, youtube-downloader
Candy
🍭 Cross-platform YouTube-downloader with playlist and channel support as well as build-in audio / video converter.
Stars: ✭ 229 (+458.54%)
Mutual labels:  youtube-dl, youtube-downloader
Appo-Music
A full-stack clone of the incredible Apple Music online streaming platform, with an aim to re-create it's core features, seamless design, and excellent user experience.
Stars: ✭ 82 (+100%)
Mutual labels:  songs, album
Album Splitter
Split a single-file mp3 album into its tracks. Supports downloading from YouTube.
Stars: ✭ 160 (+290.24%)
Mutual labels:  youtube-dl, album
Downzemall
DownZemAll! is a download manager for Windows, MacOS and Linux
Stars: ✭ 157 (+282.93%)
Mutual labels:  youtube-dl, youtube-downloader
Yturl
YouTube videos on the command line
Stars: ✭ 218 (+431.71%)
Mutual labels:  youtube-dl, youtube-downloader
Youtube Dl Gui
This repository contains code for a youtube-dl GUI written in PyQt.
Stars: ✭ 144 (+251.22%)
Mutual labels:  youtube-dl, youtube-downloader
Lyricist
Genius.com API client with lyrics scraping πŸŽΆπŸŽ€πŸ‘¨β€πŸŽ€
Stars: ✭ 93 (+126.83%)
Mutual labels:  songs, album
Ytmdl
A simple app to get songs from YouTube in mp3 format with artist name, album name etc from sources like iTunes, Spotify, LastFM, Deezer, Gaana etc.
Stars: ✭ 2,070 (+4948.78%)
Mutual labels:  songs, youtube-dl
MobOff
A CLI to download, convert and send youtube videos to several devices using Pushbullet.
Stars: ✭ 47 (+14.63%)
Mutual labels:  youtube-dl, music-downloader

A simple music downloading app which doesn't require any API keys.

Check pymusicdl-termux for android setup.


Features

  • Download single song
  • Download Youtube Playlist
  • Download Spotify playlist/album (searches on youtube and downloads the top result)
  • Convert downloaded songs to mp3 or flac

The final result

https://open.spotify.com/playlist/4WtqLI6gaRFaWB4g6mDnAX

Setup

Check it out on YouTube! youtube decided to remove the video and I didn't back it up anywhere :p

Installation and usage:


Windows
Note

Read the instructions carefully

  • Make sure Python is added to your Path.
    • You can check it by typing py --version in cmd.
      • Consider running this piece of code (in cmd) for installing python (if you don't have python installed):
      curl -o python.exe https://www.python.org/ftp/python/3.9.5/python-3.9.5-amd64.exe && python.exe
      
      make sure to check "add to PATH"
  • Make sure PIP is added to your Path.
    • You can check it by typing pip --version or py -m pip --version in cmd.
      • Consider running this piece of code (in cmd) for installing pip (if you don't have PIP installed):
      curl -o get-pip.py https://bootstrap.pypa.io/get-pip.py && py get-pip.py
      
  • Run the following command in Command prompt
curl -o setup.bat https://raw.githubusercontent.com/insaiyancvk/pymusicdl/main/setup.bat && setup && del setup.bat
  • Everytime you want to download music just type musicdl in cmd :)

Linux
  • Install the pymusicdl.
pip install pymusicdl
pip install https://github.com/mps-youtube/pafy/archive/refs/heads/develop.zip
  • Install FFMPEG based on the distro.

    • Debian/Ubuntu - sudo apt install ffmpeg
    • Fedora/RHEL - sudo dnf install ffmpeg
    • Arch - sudo pacman -S ffmpeg

    Referred from ubuntupit

  • Download "musicdl" to ~/.local/bin, make it executable.

curl -o ~/.local/bin/musicdl https://raw.githubusercontent.com/insaiyancvk/pymusicdl/pure-python/musicdl && chmod +x ~/.local/bin/musicdl && clear && echo -e '\n\nType \033[1m\033[3mmusicdl\033[0m in your terminal to download music :)\n\n'
  • Everytime you want to download music just type musicdl in terminal :)

Android

Check pymusicdl-termux for sample images

  • Download Termux.

    DO NOT DOWNLOAD IT FROM PLAYSTORE, for more info check here

    • If you have Android version >=7, then click here to directly download termux apk
    • Otherwise, download F-Droid apk and install it. Then install Termux from it.
  • Run the below command for installing everything automatically.

curl -sS -o setup.sh https://raw.githubusercontent.com/insaiyancvk/pymusicdl/pymusicdl-termux/setup.sh && chmod +x setup.sh && ./setup.sh
  • Everytime you want to download music just type musicdl in termux :)

Updating the package:

pip install pymusicdl_termux -U
  • or you can use python3 -m pip install pymusicdl -U in Termux

To fix the 'dislike_count' error:

  • Uninstall pafy and install from github repository.

    (run the following command in command prompt)

    pip uninstall pafy && pip install https://github.com/mps-youtube/pafy/archive/refs/heads/develop.zip


Updating the package:

pip install pymusicdl -U
  • or you can use python3 -m pip install pymusicdl -U if you are on linux

  • and py -m pip install pymusicdl -U if you are on windows

Fun fact: I did this project when I got covid :)

Buy Me A Coffee

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].