Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Demucs | 6,710 | 2 | a day 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 |
A Web App for Transcribing Songs
Load mp3, transcribe song, get the score.
Run the Transcribe Demo App in your Browser.
Firstly, create a new transcription project and select an audio file of the song you want to transcribe.
Then you can set basic song properties (like the BPM and time signature).
Next step is then splitting the song in song sections.
The app is a standalone React app using Webaudio APIs locally without any backend system.
transcribe/
└── .github/ (Github Action config)
└── .storybook/ (Storybook config)
└── .vscode/ (Visual Studio Code config)
└── doc/
├── diagrams/ (PlantUml diagrams and generation scripts)
└── public/ (Static app content)
└── src/
├── api/ (External interfaces)
├── components/ (React components)
├── model/ (Application business model)
├── pages/ (Application pages)
├── states/ (Application state definition and middleware based on Redux)
├── styles/ (CSS and theme definitions)
├── tests/ (Testing utilities)
├── util/ (Application utilities)
├── views/ (Application views)
├── index.tsx (Main Application Entry Point)
└── package.json (Build and script config)
└── tsconfig.json (Typescript compiler config)
The state management is based on Redux. It integrates Tone.js (for audio playback and sequencer) and Peaks.js (for waveform rendering and audio navigation).
A redux middleware is controlling the audio player and waveform as side-effects of state transitions.
See Storybook for Component Documentation.
See Build description in project wiki.
Version | Info |
---|---|
0.1 | First running version (see https://github.com/tscz/transcribe/projects/1) |
This project is licensed under the MIT License - see the LICENSE file for details