Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Bokeh | 17,418 | 2,936 | 617 | 16 hours ago | 136 | July 05, 2022 | 698 | bsd-3-clause | Python | |
Interactive Data Visualization in the browser, from Python | ||||||||||
Vim Devicons | 5,163 | 2 months ago | 56 | mit | Vim Script | |||||
Adds file type icons to Vim plugins such as: NERDTree, vim-airline, CtrlP, unite, Denite, lightline, vim-startify and many more | ||||||||||
Sqliteviz | 1,672 | a month ago | 27 | apache-2.0 | JavaScript | |||||
Instant offline SQL-powered data visualisation in your browser | ||||||||||
Heartrate | 1,318 | 3 | a year ago | 4 | November 13, 2021 | 4 | mit | Python | ||
Simple real time visualisation of the execution of a Python program. | ||||||||||
See | 717 | 7 | 12 | a day ago | 16 | October 03, 2021 | 43 | gpl-3.0 | R | |
:art: Visualisation toolbox for beautiful and publication-ready figures | ||||||||||
Android Audio Visualizer | 557 | 10 months ago | 1 | January 04, 2022 | 16 | apache-2.0 | Java | |||
:musical_score: :musical_keyboard: :musical_note: Audio visualisation for android MediaPlayer :sound: | ||||||||||
Python Opengl | 538 | 9 months ago | 21 | other | HTML | |||||
An open access book on Python, OpenGL and Scientific Visualization, Nicolas P. Rougier, 2018 | ||||||||||
Spectralizer | 521 | a year ago | 12 | gpl-2.0 | C++ | |||||
Audio visualizer plugin for obs-studio | ||||||||||
Leaflet Velocity | 475 | 11 | 7 | 16 days ago | 34 | February 21, 2022 | 14 | other | JavaScript | |
Visualise velocity data on a leaflet layer | ||||||||||
Clinker | 409 | 2 | 3 months ago | 25 | October 26, 2021 | 31 | mit | Python | ||
Gene cluster comparison figure generator |
I am working on computer generated music and wanted to have a visualizer for midi files. This web app allows to easily import a midi and vizualize the following:
Can also toggle to include Drums track or not
Notes: it's a WIP. Chords have been filtered out
Install python dependencies (pip for mido, git clone and pip -e for MidiStructurer) then
git clone https://github.com/Wally869/VisualMidi
cd VisualMidi
npm install
// start electron app
npm start
// Can also start in webonly mode
npm run startwebonly
Python:
Javascript:
There is no set colors for the plots. Colors are chosen at random when needed by the ColorPool in jsfiles/frontside.js
If you want to specify your own color set, override the colors attribute of the ColorPool class
class ColorPool {
constructor() {
this.colors = [];
}
getColor(id) {
while (id > this.colors.length - 1) {
this.colors.push(randomColorString());
}
return this.colors[id];
}
}