├── .gitignore ├── LICENSE ├── README.md ├── camtest.html ├── images ├── 20140902livebeats.png ├── Thumbs.db ├── block.png └── g200kg160x80.png ├── index.html ├── livebeats-demo.html ├── livebeats.html ├── peer.min.js ├── samples ├── IMreverbs1.rar ├── IMreverbs1 │ ├── Five Columns Long.wav │ ├── Five Columns.wav │ ├── French 18th Century Salon.wav │ ├── Going Home.wav │ ├── In The Silo Revised.wav │ ├── Narrow Bumpy Space.wav │ ├── Nice Drum Room.wav │ ├── Parking Garage.wav │ ├── Rays.wav │ ├── Trig Room.wav │ └── license.txt ├── chh.wav ├── kick.wav ├── kick2.wav └── snare.wav ├── vj_beatstep.js ├── vj_cam.js ├── vj_camformantgl.js ├── vj_camgl.js ├── vj_dropgl.js ├── vj_dropgl2.js ├── vj_graph.js ├── vj_matrix.js ├── vj_simplewave.js ├── vj_txt.js ├── vj_wave.js ├── vj_wavegl.js └── vjpluginspec.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/README.md -------------------------------------------------------------------------------- /camtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/camtest.html -------------------------------------------------------------------------------- /images/20140902livebeats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/images/20140902livebeats.png -------------------------------------------------------------------------------- /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/images/Thumbs.db -------------------------------------------------------------------------------- /images/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/images/block.png -------------------------------------------------------------------------------- /images/g200kg160x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/images/g200kg160x80.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/index.html -------------------------------------------------------------------------------- /livebeats-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/livebeats-demo.html -------------------------------------------------------------------------------- /livebeats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/livebeats.html -------------------------------------------------------------------------------- /peer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/peer.min.js -------------------------------------------------------------------------------- /samples/IMreverbs1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1.rar -------------------------------------------------------------------------------- /samples/IMreverbs1/Five Columns Long.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Five Columns Long.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Five Columns.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Five Columns.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/French 18th Century Salon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/French 18th Century Salon.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Going Home.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Going Home.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/In The Silo Revised.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/In The Silo Revised.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Narrow Bumpy Space.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Narrow Bumpy Space.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Nice Drum Room.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Nice Drum Room.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Parking Garage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Parking Garage.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Rays.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Rays.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/Trig Room.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/Trig Room.wav -------------------------------------------------------------------------------- /samples/IMreverbs1/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/IMreverbs1/license.txt -------------------------------------------------------------------------------- /samples/chh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/chh.wav -------------------------------------------------------------------------------- /samples/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/kick.wav -------------------------------------------------------------------------------- /samples/kick2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/kick2.wav -------------------------------------------------------------------------------- /samples/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/samples/snare.wav -------------------------------------------------------------------------------- /vj_beatstep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_beatstep.js -------------------------------------------------------------------------------- /vj_cam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_cam.js -------------------------------------------------------------------------------- /vj_camformantgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_camformantgl.js -------------------------------------------------------------------------------- /vj_camgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_camgl.js -------------------------------------------------------------------------------- /vj_dropgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_dropgl.js -------------------------------------------------------------------------------- /vj_dropgl2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_dropgl2.js -------------------------------------------------------------------------------- /vj_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_graph.js -------------------------------------------------------------------------------- /vj_matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_matrix.js -------------------------------------------------------------------------------- /vj_simplewave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_simplewave.js -------------------------------------------------------------------------------- /vj_txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_txt.js -------------------------------------------------------------------------------- /vj_wave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_wave.js -------------------------------------------------------------------------------- /vj_wavegl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vj_wavegl.js -------------------------------------------------------------------------------- /vjpluginspec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g200kg/LiveBeats/HEAD/vjpluginspec.html --------------------------------------------------------------------------------