History
I initially created this website in 2016 as a hobby project. After starting my job at the Baltimore Neighborhood Indicators Alliance (BNIA), the site was set aside. Rediscovered in January 2024, I decided to give it a fresh update. Enjoy!
General Information
This site functions primarily as a media player. Your settings are saved in your local browser's memory. To keep changes permanently, please create an account.
Explore Tab
Discover new music and save YouTube links to your playlist.
Local Storage Tab
Upload music from your desktop and manage your library.
Creating a Playlist
Build your playlist with YouTube URLs. You can add tracks manually by entering the artist, title, and URL, or add multiple tracks from a YouTube playlist or channel. Here's how:
- Manually add tracks by entering their YouTube URL along with the artist and title information.
- Automatically add tracks from a YouTube playlist or channel:
- Navigate to the playlist or channel's video page.
- Ensure all desired songs are visible on the page.
- Open your browser's developer console with `Ctrl` + `Shift` + `C`.
- Enter the script (below) in the console to extract song information:
- Copy the console output into the playlist input field.
var els = document.getElementsByClassName('yt-simple-endpoint style-scope ytd-playlist-video-renderer');
var dataList = "title,id\n";
for (var i = 0; i < els.length; i++) {
var el = els[i];
var curId = el.href.split('?v=')[1].split('&list')[0];
dataList += (el.title + "," + curId + "\n");
}
console.log(dataList);
Note: Duplicate entries will not be resaved.