Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Demucs | 6,726 | 2 | 8 days ago | 15 | December 07, 2022 | 226 | mit | Python | ||
Code for the paper Hybrid Spectrogram and Waveform Source Separation | ||||||||||
Invoke | 28 | 6 years ago | JavaScript | |||||||
Invoke is a full stack web application inspired by SoundCloud. It utilizes Ruby on Rails on the backend, a PostgreSQL database, and React.js with a Redux architectural framework on the frontend. | ||||||||||
Soundmap | 24 | 10 years ago | 1 | CSS | ||||||
A heatmap for songs | ||||||||||
Sawteeth | 12 | 3 years ago | 22 | C++ | ||||||
A sound synthetizer, tracker and replayer, similar to AHX. | ||||||||||
Soundcloud2 | 12 | 2 years ago | 4 | JavaScript | ||||||
SoundCloud-2 is a clone of SoundCloud built using Rails, PostgreSQL, React, Redux, HTML5, CSS3, CSS, AWS, Wavesurfer.js and Webpack. | ||||||||||
Sound Macleod | 7 | 5 years ago | JavaScript | |||||||
A full-stack web app for music sharing inspired by SoundCloud | ||||||||||
Getfunkt | 5 | 7 years ago | JavaScript | |||||||
Transcribe | 3 | 2 years ago | 39 | mit | TypeScript | |||||
A Web App for Transcribing Songs | ||||||||||
Lyrictor | 2 | a month ago | 11 | gpl-3.0 | TypeScript | |||||
Web lyric editor | ||||||||||
Thunder | 2 | 9 years ago | Ruby | |||||||
A Rails / Backbone.js clone of the popular music sharing site Soundcloud |
GetFunkt is a full-stack web application inspired by SoundCloud. The backend is built with Ruby on Rails; the database is PostgreSQL, and the frontend is done in React.js with a Flux framework.
GetFunkt is a single-page app, which allows for seamless audio playback throughout navigation. The audio player is rendered in the parent component, allowing other components to render without disrupting the user experience.
In the database, Songs
are stored in one table, with a user_id
column denoting the owner of the song (i.e. the user that uploaded it to the site). Each Song
object has an audio file and an image file (album art), making combined use of Paperclip, Figaro, and Amazon Web Services.
Upon login, the router redirects to the user's Stream
, which is an index of songs that either belong to the user or that the user has liked
. From there, the user may navigate to the Discover
feed, which, for the purposes of this small-scale demo, is every song in the database that the current user does not own or does not currently like. This can be easily scaled by returning a small number of randomly chosen songs, by returning songs based on a shared attribute (such as artist or genre), or by returning songs from users that the current user follows.
Users may also visit other users' pages, which list the songs that that user has uploaded.
Songs may be uploaded via the Upload
link at the top of the page. Users must input a title, artist, audio file, and image file to successfully upload a song to GetFunkt.
Users may also edit and delete their own songs directly in their Stream.
Users can play a song by clicking on its album art, title, or artist. Songs can be switched simply by clicking another song. The basic audio controller at the bottom of the page provides play, pause, tracking, and volume capabilities.
In the future, I'd like to implement user following, search functionality (directly searching by song title, as well as by artist/user/tag/genre), and waveforms. Most of this can be done with no further tools than the app already makes use of, but for waveforms I plan to either use an external JS library or use Canvas.