├── .gitignore ├── LICENSE ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── disco.gif │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── assets │ ├── dice.png │ └── stitch.gif │ ├── components │ ├── image-pill.js │ ├── logo.js │ ├── setup-info.js │ └── track.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ ├── sections │ ├── audio.js │ ├── header.js │ ├── tracks.js │ └── video.js │ └── setupTests.js ├── disco_environment.yml ├── flask_app.py ├── minimal_disco.py ├── packages.txt ├── requirements.txt ├── server.py ├── setup.py ├── stable_diffusion_videos ├── __init__.py ├── app.py ├── flax_stable_diffusion_pipeline.py ├── image_generation.py ├── stable_diffusion_img2img_walk.py ├── stable_diffusion_pipeline.py └── upsampling.py ├── static ├── audio │ ├── Cruelsummer-TaylorSwift.m4a │ ├── Cruelsummer-TaylorSwift.mp4 │ ├── Down-JasonWalker.m4a │ ├── Down-JasonWalker.mp4 │ ├── Eyesonme-Faye.m4a │ ├── Eyesonme-Faye.mp4 │ ├── Moonlight-Henry.mp3 │ ├── Moonlight-Henry.mp4 │ ├── Photograph-EdSheeran.m4a │ ├── Photograph-EdSheeran.mp4 │ ├── SELENERS.mp4 │ ├── SELENERS.wav │ ├── TempleofTime.mp3 │ ├── TempleofTime.mp4 │ ├── baby_shark.m4a │ ├── baby_shark.mp4 │ ├── badidea.mp3 │ ├── badidea.mp4 │ ├── breathe_dom-fera.mp3 │ ├── breathe_dom-fera.mp4 │ ├── bridgerton.m4a │ ├── cant-catch-me-now_olivia-rodrigo.mp3 │ ├── cant-catch-me-now_olivia-rodrigo.mp4 │ ├── cardigan.mp3 │ ├── cardigan.mp4 │ ├── clairdelune.mp4 │ ├── clairdelune.wav │ ├── cruelsummer.mp3 │ ├── cruelsummer.mp4 │ ├── darling_halsey.mp3 │ ├── darling_halsey.mp4 │ ├── diamonds.m4a │ ├── driverslicense.m4a │ ├── fiftyfifty_cupid.mp3 │ ├── fiftyfifty_cupid.mp4 │ ├── gaga_babylon.mp3 │ ├── gaga_babylon.mp4 │ ├── hits-different_taylor-swift.mp3 │ ├── hits-different_taylor-swift.mp4 │ ├── industrybaby.m4a │ ├── lalaland.m4a │ ├── lexie_magician.mp3 │ ├── lexie_magician.mp4 │ ├── liar_icespice.mp3 │ ├── liar_icespice.mp4 │ ├── lizzopink.mp3 │ ├── lizzopink.mp4 │ ├── mariah.mp3 │ ├── mariah.mp4 │ ├── no-new-friends_labrinth.mp3 │ ├── no-new-friends_labrinth.mp4 │ ├── ny_short.m4a │ ├── ny_short.mp4 │ ├── ontheground.mp3 │ ├── ontheground.mp4 │ ├── photograph.mp3 │ ├── powerpuff-short.mp4 │ ├── powerpuff_short.m4a │ ├── round-here_tobe-nwigwe.mp3 │ ├── round-here_tobe-nwigwe.mp4 │ ├── sprinter_central-cee.mp3 │ ├── sprinter_central-cee.mp4 │ ├── starsalign.mp3 │ ├── starsalign.mp4 │ ├── takeitfromme.mp3 │ └── takeitfromme.mp4 ├── css │ └── landing_page.css ├── generations │ └── .gitkeep ├── images │ ├── dice.png │ ├── stitch.gif │ └── trash.png ├── previews │ └── .gitkeep └── scripts │ ├── gallery.js │ ├── tracks.js │ ├── waveform_controls.js │ └── wavesurfer.js-6.6.4 │ ├── .babelrc │ ├── .editorconfig │ ├── .esdoc.json │ ├── .eslintrc.js │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows │ │ ├── main.yml │ │ └── publish.yml │ ├── .gitignore │ ├── .htmlhintrc │ ├── .npmignore │ ├── .vscode │ └── launch.json │ ├── CHANGES.md │ ├── CNAME │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── appveyor.yml │ ├── assets │ ├── favicon.ico │ ├── readme.txt │ ├── wavesurfer-black-text.png │ ├── wavesurfer-black-text.svg │ ├── wavesurfer-black.png │ ├── wavesurfer-black.svg │ ├── wavesurfer-symbol.png │ ├── wavesurfer-symbol.svg │ ├── wavesurfer-white-text.png │ ├── wavesurfer-white-text.svg │ ├── wavesurfer-white.png │ └── wavesurfer-white.svg │ ├── bower.json │ ├── build-config │ ├── fragments │ │ ├── banner.js │ │ ├── common.js │ │ ├── dev.js │ │ ├── htmlinit.js │ │ ├── main.js │ │ ├── min.js │ │ ├── plugins.js │ │ └── prod.js │ ├── webpack.dev.htmlinit.js │ ├── webpack.dev.main.js │ ├── webpack.dev.plugins.js │ ├── webpack.prod.htmlinit.js │ ├── webpack.prod.htmlinit.min.js │ ├── webpack.prod.main.js │ ├── webpack.prod.main.min.js │ ├── webpack.prod.plugins.js │ └── webpack.prod.plugins.min.js │ ├── example │ ├── angular-material │ │ ├── index.html │ │ ├── main.css │ │ ├── main.js │ │ ├── md-player-audio.partial.html │ │ ├── md-player.partial.html │ │ └── wavesurfer.directive.js │ ├── angular │ │ ├── app.js │ │ └── index.html │ ├── annotation │ │ ├── annotations.json │ │ ├── app.css │ │ ├── app.js │ │ ├── index.html │ │ └── rashomon.json │ ├── audio-element │ │ ├── index.html │ │ └── main.js │ ├── bars │ │ ├── index.html │ │ └── main.js │ ├── css │ │ ├── ribbon.css │ │ └── style.css │ ├── cursor │ │ ├── index.html │ │ └── main.js │ ├── elan-wave-segment │ │ └── index.html │ ├── elan │ │ ├── app.js │ │ ├── css │ │ │ └── elan.css │ │ ├── index.html │ │ └── transcripts │ │ │ ├── 001z.mp3 │ │ │ └── 001z.xml │ ├── equalizer │ │ ├── index.html │ │ └── main.js │ ├── gradient-fill-styles │ │ ├── index.html │ │ └── main.js │ ├── html-init │ │ └── index.html │ ├── main.js │ ├── markers │ │ ├── app.js │ │ ├── index.html │ │ └── settings_icon.png │ ├── media-session │ │ ├── app.js │ │ └── index.html │ ├── media │ │ ├── demo-peaks.json │ │ ├── demo.wav │ │ ├── demo_video.mp4 │ │ ├── nasa.json │ │ ├── nasa.mp4 │ │ └── stereo.mp3 │ ├── mediaelement-webaudio │ │ ├── app.js │ │ ├── index.html │ │ └── stereo-peaks.json │ ├── microphone │ │ ├── app.js │ │ └── index.html │ ├── minimap-vertical │ │ ├── index.html │ │ └── main.js │ ├── minimap │ │ ├── app.js │ │ └── index.html │ ├── mute │ │ ├── app.js │ │ └── index.html │ ├── panner │ │ ├── index.html │ │ ├── main.js │ │ └── media.wav │ ├── playhead │ │ ├── app.js │ │ └── index.html │ ├── playlist │ │ ├── app.js │ │ └── index.html │ ├── plugin-system │ │ ├── app.js │ │ ├── custom-plugin │ │ │ └── CursorCustomPlugin.js │ │ └── index.html │ ├── regions │ │ ├── app.js │ │ └── index.html │ ├── rounded-bars │ │ ├── index.html │ │ └── main.js │ ├── rtl │ │ ├── index.html │ │ └── main.js │ ├── screenshot.png │ ├── spectrogram │ │ ├── app.js │ │ ├── hot-colormap.json │ │ └── index.html │ ├── split-channels │ │ ├── app.js │ │ └── index.html │ ├── split-wave-point-plot │ │ └── index.html │ ├── stretcher │ │ ├── app.js │ │ ├── index.html │ │ └── soundtouch.js │ ├── timeline-notches │ │ ├── index.html │ │ └── main.js │ ├── timeline │ │ ├── app.js │ │ └── index.html │ ├── trivia.js │ ├── vertical │ │ ├── index.html │ │ └── main.js │ ├── video-annotation-contentEditable-regions │ │ ├── index.html │ │ └── main.js │ ├── video-annotation │ │ ├── index.html │ │ └── main.js │ ├── video-element │ │ ├── index.html │ │ └── main.js │ └── zoom │ │ ├── index.html │ │ └── main.js │ ├── karma.conf.js │ ├── package.json │ ├── scripts │ └── release.sh │ ├── spec │ ├── drawer.spec.js │ ├── mediaelement-shared.js │ ├── mediaelement-webaudio.spec.js │ ├── mediaelement.spec.js │ ├── peakcache.spec.js │ ├── plugin-api.spec.js │ ├── support │ │ ├── demo.wav │ │ ├── stereo-peaks.json │ │ ├── stereo.mp3 │ │ ├── test.json │ │ └── test.txt │ ├── test-helpers.js │ ├── util.spec.js │ ├── wavesurfer.spec.js │ └── webaudio.spec.js │ ├── src │ ├── drawer.canvasentry.js │ ├── drawer.js │ ├── drawer.multicanvas.js │ ├── html-init.js │ ├── mediaelement-webaudio.js │ ├── mediaelement.js │ ├── peakcache.js │ ├── plugin │ │ ├── cursor │ │ │ └── index.js │ │ ├── elan │ │ │ └── index.js │ │ ├── markers │ │ │ └── index.js │ │ ├── mediasession │ │ │ └── index.js │ │ ├── microphone │ │ │ └── index.js │ │ ├── minimap │ │ │ └── index.js │ │ ├── playhead │ │ │ └── index.js │ │ ├── regions │ │ │ ├── index.js │ │ │ └── region.js │ │ ├── spectrogram │ │ │ ├── fft.js │ │ │ └── index.js │ │ └── timeline │ │ │ └── index.js │ ├── util │ │ ├── absMax.js │ │ ├── clamp.js │ │ ├── fetch.js │ │ ├── frame.js │ │ ├── get-id.js │ │ ├── index.js │ │ ├── max.js │ │ ├── min.js │ │ ├── observer.js │ │ ├── orientation.js │ │ ├── prevent-click.js │ │ ├── request-animation-frame.js │ │ ├── silence-mode.js │ │ └── style.js │ ├── wavesurfer.js │ └── webaudio.js │ └── yarn.lock └── templates ├── just_audio.html └── user_interface.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/disco.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/public/disco.gif -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/assets/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/assets/dice.png -------------------------------------------------------------------------------- /client/src/assets/stitch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/assets/stitch.gif -------------------------------------------------------------------------------- /client/src/components/image-pill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/components/image-pill.js -------------------------------------------------------------------------------- /client/src/components/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/components/logo.js -------------------------------------------------------------------------------- /client/src/components/setup-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/components/setup-info.js -------------------------------------------------------------------------------- /client/src/components/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/components/track.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/sections/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/sections/audio.js -------------------------------------------------------------------------------- /client/src/sections/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/sections/header.js -------------------------------------------------------------------------------- /client/src/sections/tracks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/sections/tracks.js -------------------------------------------------------------------------------- /client/src/sections/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/sections/video.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /disco_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/disco_environment.yml -------------------------------------------------------------------------------- /flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/flask_app.py -------------------------------------------------------------------------------- /minimal_disco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/minimal_disco.py -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/packages.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/server.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/setup.py -------------------------------------------------------------------------------- /stable_diffusion_videos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/__init__.py -------------------------------------------------------------------------------- /stable_diffusion_videos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/app.py -------------------------------------------------------------------------------- /stable_diffusion_videos/flax_stable_diffusion_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/flax_stable_diffusion_pipeline.py -------------------------------------------------------------------------------- /stable_diffusion_videos/image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/image_generation.py -------------------------------------------------------------------------------- /stable_diffusion_videos/stable_diffusion_img2img_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/stable_diffusion_img2img_walk.py -------------------------------------------------------------------------------- /stable_diffusion_videos/stable_diffusion_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/stable_diffusion_pipeline.py -------------------------------------------------------------------------------- /stable_diffusion_videos/upsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/stable_diffusion_videos/upsampling.py -------------------------------------------------------------------------------- /static/audio/Cruelsummer-TaylorSwift.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Cruelsummer-TaylorSwift.m4a -------------------------------------------------------------------------------- /static/audio/Cruelsummer-TaylorSwift.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Cruelsummer-TaylorSwift.mp4 -------------------------------------------------------------------------------- /static/audio/Down-JasonWalker.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Down-JasonWalker.m4a -------------------------------------------------------------------------------- /static/audio/Down-JasonWalker.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Down-JasonWalker.mp4 -------------------------------------------------------------------------------- /static/audio/Eyesonme-Faye.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Eyesonme-Faye.m4a -------------------------------------------------------------------------------- /static/audio/Eyesonme-Faye.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Eyesonme-Faye.mp4 -------------------------------------------------------------------------------- /static/audio/Moonlight-Henry.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Moonlight-Henry.mp3 -------------------------------------------------------------------------------- /static/audio/Moonlight-Henry.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Moonlight-Henry.mp4 -------------------------------------------------------------------------------- /static/audio/Photograph-EdSheeran.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Photograph-EdSheeran.m4a -------------------------------------------------------------------------------- /static/audio/Photograph-EdSheeran.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/Photograph-EdSheeran.mp4 -------------------------------------------------------------------------------- /static/audio/SELENERS.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/SELENERS.mp4 -------------------------------------------------------------------------------- /static/audio/SELENERS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/SELENERS.wav -------------------------------------------------------------------------------- /static/audio/TempleofTime.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/TempleofTime.mp3 -------------------------------------------------------------------------------- /static/audio/TempleofTime.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/TempleofTime.mp4 -------------------------------------------------------------------------------- /static/audio/baby_shark.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/baby_shark.m4a -------------------------------------------------------------------------------- /static/audio/baby_shark.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/baby_shark.mp4 -------------------------------------------------------------------------------- /static/audio/badidea.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/badidea.mp3 -------------------------------------------------------------------------------- /static/audio/badidea.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/badidea.mp4 -------------------------------------------------------------------------------- /static/audio/breathe_dom-fera.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/breathe_dom-fera.mp3 -------------------------------------------------------------------------------- /static/audio/breathe_dom-fera.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/breathe_dom-fera.mp4 -------------------------------------------------------------------------------- /static/audio/bridgerton.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/bridgerton.m4a -------------------------------------------------------------------------------- /static/audio/cant-catch-me-now_olivia-rodrigo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/cant-catch-me-now_olivia-rodrigo.mp3 -------------------------------------------------------------------------------- /static/audio/cant-catch-me-now_olivia-rodrigo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/cant-catch-me-now_olivia-rodrigo.mp4 -------------------------------------------------------------------------------- /static/audio/cardigan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/cardigan.mp3 -------------------------------------------------------------------------------- /static/audio/cardigan.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/cardigan.mp4 -------------------------------------------------------------------------------- /static/audio/clairdelune.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/clairdelune.mp4 -------------------------------------------------------------------------------- /static/audio/clairdelune.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/clairdelune.wav -------------------------------------------------------------------------------- /static/audio/cruelsummer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/cruelsummer.mp3 -------------------------------------------------------------------------------- /static/audio/cruelsummer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/cruelsummer.mp4 -------------------------------------------------------------------------------- /static/audio/darling_halsey.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/darling_halsey.mp3 -------------------------------------------------------------------------------- /static/audio/darling_halsey.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/darling_halsey.mp4 -------------------------------------------------------------------------------- /static/audio/diamonds.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/diamonds.m4a -------------------------------------------------------------------------------- /static/audio/driverslicense.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/driverslicense.m4a -------------------------------------------------------------------------------- /static/audio/fiftyfifty_cupid.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/fiftyfifty_cupid.mp3 -------------------------------------------------------------------------------- /static/audio/fiftyfifty_cupid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/fiftyfifty_cupid.mp4 -------------------------------------------------------------------------------- /static/audio/gaga_babylon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/gaga_babylon.mp3 -------------------------------------------------------------------------------- /static/audio/gaga_babylon.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/gaga_babylon.mp4 -------------------------------------------------------------------------------- /static/audio/hits-different_taylor-swift.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/hits-different_taylor-swift.mp3 -------------------------------------------------------------------------------- /static/audio/hits-different_taylor-swift.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/hits-different_taylor-swift.mp4 -------------------------------------------------------------------------------- /static/audio/industrybaby.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/industrybaby.m4a -------------------------------------------------------------------------------- /static/audio/lalaland.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/lalaland.m4a -------------------------------------------------------------------------------- /static/audio/lexie_magician.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/lexie_magician.mp3 -------------------------------------------------------------------------------- /static/audio/lexie_magician.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/lexie_magician.mp4 -------------------------------------------------------------------------------- /static/audio/liar_icespice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/liar_icespice.mp3 -------------------------------------------------------------------------------- /static/audio/liar_icespice.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/liar_icespice.mp4 -------------------------------------------------------------------------------- /static/audio/lizzopink.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/lizzopink.mp3 -------------------------------------------------------------------------------- /static/audio/lizzopink.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/lizzopink.mp4 -------------------------------------------------------------------------------- /static/audio/mariah.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/mariah.mp3 -------------------------------------------------------------------------------- /static/audio/mariah.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/mariah.mp4 -------------------------------------------------------------------------------- /static/audio/no-new-friends_labrinth.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/no-new-friends_labrinth.mp3 -------------------------------------------------------------------------------- /static/audio/no-new-friends_labrinth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/no-new-friends_labrinth.mp4 -------------------------------------------------------------------------------- /static/audio/ny_short.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/ny_short.m4a -------------------------------------------------------------------------------- /static/audio/ny_short.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/ny_short.mp4 -------------------------------------------------------------------------------- /static/audio/ontheground.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/ontheground.mp3 -------------------------------------------------------------------------------- /static/audio/ontheground.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/ontheground.mp4 -------------------------------------------------------------------------------- /static/audio/photograph.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/photograph.mp3 -------------------------------------------------------------------------------- /static/audio/powerpuff-short.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/powerpuff-short.mp4 -------------------------------------------------------------------------------- /static/audio/powerpuff_short.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/powerpuff_short.m4a -------------------------------------------------------------------------------- /static/audio/round-here_tobe-nwigwe.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/round-here_tobe-nwigwe.mp3 -------------------------------------------------------------------------------- /static/audio/round-here_tobe-nwigwe.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/round-here_tobe-nwigwe.mp4 -------------------------------------------------------------------------------- /static/audio/sprinter_central-cee.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/sprinter_central-cee.mp3 -------------------------------------------------------------------------------- /static/audio/sprinter_central-cee.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/sprinter_central-cee.mp4 -------------------------------------------------------------------------------- /static/audio/starsalign.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/starsalign.mp3 -------------------------------------------------------------------------------- /static/audio/starsalign.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/starsalign.mp4 -------------------------------------------------------------------------------- /static/audio/takeitfromme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/takeitfromme.mp3 -------------------------------------------------------------------------------- /static/audio/takeitfromme.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/audio/takeitfromme.mp4 -------------------------------------------------------------------------------- /static/css/landing_page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/css/landing_page.css -------------------------------------------------------------------------------- /static/generations/.gitkeep: -------------------------------------------------------------------------------- 1 | empty file to keep the directory 2 | -------------------------------------------------------------------------------- /static/images/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/images/dice.png -------------------------------------------------------------------------------- /static/images/stitch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/images/stitch.gif -------------------------------------------------------------------------------- /static/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/images/trash.png -------------------------------------------------------------------------------- /static/previews/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/scripts/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/gallery.js -------------------------------------------------------------------------------- /static/scripts/tracks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/tracks.js -------------------------------------------------------------------------------- /static/scripts/waveform_controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/waveform_controls.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.babelrc -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.editorconfig -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.esdoc.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.eslintrc.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [wavesurfer-js] 2 | -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.github/workflows/main.yml -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.github/workflows/publish.yml -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.gitignore -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.htmlhintrc -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.npmignore -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/.vscode/launch.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/CHANGES.md -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/CNAME: -------------------------------------------------------------------------------- 1 | wavesurfer-js.org 2 | -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/LICENSE -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/README.md -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/UPGRADE.md -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/appveyor.yml -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/favicon.ico -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/readme.txt -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black-text.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black-text.svg -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-black.svg -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-symbol.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-symbol.svg -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white-text.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white-text.svg -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/assets/wavesurfer-white.svg -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/bower.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/banner.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/common.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/dev.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/htmlinit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/htmlinit.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/min.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/fragments/plugins.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/fragments/prod.js: -------------------------------------------------------------------------------- 1 | /* eslint-env node */ 2 | 3 | module.exports = { 4 | devtool: 'source-map' 5 | }; 6 | -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.dev.htmlinit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.dev.htmlinit.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.dev.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.dev.main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.dev.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.dev.plugins.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.htmlinit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.htmlinit.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.htmlinit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.htmlinit.min.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.main.min.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.plugins.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.plugins.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/build-config/webpack.prod.plugins.min.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular-material/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular-material/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular-material/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular-material/main.css -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular-material/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular-material/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular-material/md-player-audio.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular-material/md-player-audio.partial.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular-material/md-player.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular-material/md-player.partial.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular-material/wavesurfer.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular-material/wavesurfer.directive.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/angular/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/annotation/annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/annotation/annotations.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/annotation/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/annotation/app.css -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/annotation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/annotation/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/annotation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/annotation/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/annotation/rashomon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/annotation/rashomon.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/audio-element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/audio-element/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/audio-element/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/audio-element/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/bars/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/bars/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/bars/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/bars/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/css/ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/css/ribbon.css -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/css/style.css -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/cursor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/cursor/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/cursor/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/cursor/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/elan-wave-segment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/elan-wave-segment/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/elan/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/elan/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/elan/css/elan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/elan/css/elan.css -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/elan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/elan/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/elan/transcripts/001z.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/elan/transcripts/001z.mp3 -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/elan/transcripts/001z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/elan/transcripts/001z.xml -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/equalizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/equalizer/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/equalizer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/equalizer/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/gradient-fill-styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/gradient-fill-styles/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/gradient-fill-styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/gradient-fill-styles/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/html-init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/html-init/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/markers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/markers/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/markers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/markers/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/markers/settings_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/markers/settings_icon.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media-session/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media-session/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media-session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media-session/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media/demo-peaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media/demo-peaks.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media/demo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media/demo.wav -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media/demo_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media/demo_video.mp4 -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media/nasa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media/nasa.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media/nasa.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media/nasa.mp4 -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/media/stereo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/media/stereo.mp3 -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/mediaelement-webaudio/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/mediaelement-webaudio/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/mediaelement-webaudio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/mediaelement-webaudio/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/mediaelement-webaudio/stereo-peaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/mediaelement-webaudio/stereo-peaks.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/microphone/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/microphone/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/microphone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/microphone/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/minimap-vertical/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/minimap-vertical/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/minimap-vertical/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/minimap-vertical/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/minimap/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/minimap/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/minimap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/minimap/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/mute/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/mute/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/mute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/mute/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/panner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/panner/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/panner/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/panner/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/panner/media.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/panner/media.wav -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/playhead/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/playhead/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/playhead/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/playhead/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/playlist/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/playlist/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/playlist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/playlist/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/plugin-system/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/plugin-system/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/plugin-system/custom-plugin/CursorCustomPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/plugin-system/custom-plugin/CursorCustomPlugin.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/plugin-system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/plugin-system/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/regions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/regions/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/regions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/regions/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/rounded-bars/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/rounded-bars/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/rounded-bars/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/rounded-bars/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/rtl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/rtl/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/rtl/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/rtl/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/screenshot.png -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/spectrogram/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/spectrogram/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/spectrogram/hot-colormap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/spectrogram/hot-colormap.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/spectrogram/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/spectrogram/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/split-channels/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/split-channels/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/split-channels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/split-channels/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/split-wave-point-plot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/split-wave-point-plot/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/stretcher/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/stretcher/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/stretcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/stretcher/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/stretcher/soundtouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/stretcher/soundtouch.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/timeline-notches/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/timeline-notches/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/timeline-notches/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/timeline-notches/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/timeline/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/timeline/app.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/timeline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/timeline/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/trivia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/trivia.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/vertical/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/vertical/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/vertical/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/vertical/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/video-annotation-contentEditable-regions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/video-annotation-contentEditable-regions/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/video-annotation-contentEditable-regions/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/video-annotation-contentEditable-regions/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/video-annotation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/video-annotation/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/video-annotation/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/video-annotation/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/video-element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/video-element/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/video-element/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/video-element/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/zoom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/zoom/index.html -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/example/zoom/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/example/zoom/main.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/karma.conf.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/package.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/scripts/release.sh -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/drawer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/drawer.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/mediaelement-shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/mediaelement-shared.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/mediaelement-webaudio.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/mediaelement-webaudio.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/mediaelement.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/mediaelement.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/peakcache.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/peakcache.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/plugin-api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/plugin-api.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/support/demo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/support/demo.wav -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/support/stereo-peaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/support/stereo-peaks.json -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/support/stereo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/support/stereo.mp3 -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/support/test.json: -------------------------------------------------------------------------------- 1 | [[0,1,2,3]] -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/support/test.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/test-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/test-helpers.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/util.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/wavesurfer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/wavesurfer.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/spec/webaudio.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/spec/webaudio.spec.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/drawer.canvasentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/drawer.canvasentry.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/drawer.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/drawer.multicanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/drawer.multicanvas.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/html-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/html-init.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/mediaelement-webaudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/mediaelement-webaudio.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/mediaelement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/mediaelement.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/peakcache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/peakcache.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/cursor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/cursor/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/elan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/elan/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/markers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/markers/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/mediasession/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/mediasession/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/microphone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/microphone/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/minimap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/minimap/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/playhead/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/playhead/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/regions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/regions/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/regions/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/regions/region.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/spectrogram/fft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/spectrogram/fft.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/spectrogram/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/spectrogram/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/plugin/timeline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/plugin/timeline/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/absMax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/absMax.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/clamp.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/fetch.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/frame.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/get-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/get-id.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/index.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/max.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/min.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/observer.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/orientation.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/prevent-click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/prevent-click.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/request-animation-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/request-animation-frame.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/silence-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/silence-mode.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/util/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/util/style.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/wavesurfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/wavesurfer.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/src/webaudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/src/webaudio.js -------------------------------------------------------------------------------- /static/scripts/wavesurfer.js-6.6.4/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/static/scripts/wavesurfer.js-6.6.4/yarn.lock -------------------------------------------------------------------------------- /templates/just_audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/templates/just_audio.html -------------------------------------------------------------------------------- /templates/user_interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellovivian/generative-disco/HEAD/templates/user_interface.html --------------------------------------------------------------------------------