Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spotify Downloader | 11,674 | 2 | 2 | 7 days ago | 64 | June 27, 2022 | 10 | mit | Python | |
Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found). | ||||||||||
Ytmdl | 2,706 | 2 months ago | 56 | March 15, 2022 | 15 | mit | Python | |||
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. | ||||||||||
Apple Music Js | 1,792 | 5 months ago | 14 | mit | JavaScript | |||||
A music streaming service built from the ground up using React & Redux | ||||||||||
Soundscrape | 1,273 | 6 | 2 years ago | 81 | November 22, 2020 | 53 | mit | Python | ||
SoundCloud (and Bandcamp and Mixcloud) downloader in Python. | ||||||||||
Auxio | 1,139 | 2 days ago | 44 | gpl-3.0 | Kotlin | |||||
A simple, rational music player for android | ||||||||||
Ytmusicapi | 1,056 | 16 | 5 days ago | 45 | May 10, 2022 | 7 | mit | Python | ||
Unofficial API for YouTube Music | ||||||||||
Lyricsgenius | 726 | 15 | 13 | 6 months ago | 46 | April 18, 2021 | 36 | mit | Python | |
Download song lyrics and metadata from Genius.com 🎶🎤 | ||||||||||
Viberr | 531 | 3 years ago | 12 | HTML | ||||||
Viberr is an application that let's you upload, store, and play all of your music from the cloud. | ||||||||||
Deezer Downloader | 402 | 10 days ago | 17 | mit | Python | |||||
Download music from Deezer with a nice front end | ||||||||||
Soundsea | 374 | 4 years ago | 6 | Java | ||||||
Download songs with metadata by entering song's title |
Built by Tanner Villarete
Connect with me on LinkedIn! I'll be graduating soon ;)
Turns out, pretty dang far. This web app was my attempt at mimicking Apple's iOS music app, and I think I've come pretty close!
Check out a live demo here
I'm in my fourth year of college, and it's been super cool to see how much I've improved and continue to improve all aspects of programming.
The API is hosted on a Raspberry Pi, and it's kept private (but still accessible if you try) so that it doesn't get overloaded. If you're interested in building your own backend to plug into this tool, here's what my database and endpoints look like:
There are six required columns:
name
: The name of the songartist
: The artist namealbum
: The album nametrack
: The index of the song relative to the album (To order songs in an album)url
: A URL to the audio fileartwork
: A URL to the album artwork imagemysql> use music;
Database changed
mysql> desc tracks;
+------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| created_at | timestamp | YES | | NULL | |
| updated_at | timestamp | YES | | NULL | |
| name | varchar(255) | NO | | NULL | |
| artist | varchar(255) | NO | | NULL | |
| album | varchar(255) | NO | | NULL | |
| track | int(11) | NO | | NULL | |
| url | varchar(255) | NO | | NULL | |
| artwork | varchar(255) | NO | | NULL | |
+------------+------------------+------+-----+---------+----------------+
9 rows in set (0.05 sec)
The backend is built with PHP using the Laravel ORM. I only needed a few API endpoints to get this working:
/albums
- Returns a list of all album names with their corresponding artist/album/{album}
- Returns a list of songs from a specified album/artists
- Returns a list of all artists/artist/{artist}
- Returns a list of all albums from a specific artistFeel free to reach out if you have questions!
To run this app locally, clone the project (or download it as a zip and unzip it to a directory), navigate to the root directory with a command prompt or terminal (where the package.json file is located), and run npm install to download the necessary dependencies onto your local machine.
Inside the root directory, you can run some built-in commands:
npm start
Runs the app in development mode.
Open http://localhost:3000 to view it in the browser.
The page will automatically reload if you make changes to the code.
You will see the build errors and lint warnings in the console.
npm run build
Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed.