├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE.md ├── README.md ├── example ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── Project.xml ├── assets │ ├── data │ │ └── data-goes-here.txt │ ├── images │ │ └── images-go-here.txt │ ├── music │ │ ├── catStuck.ogg │ │ ├── medlyForAGamer.ogg │ │ ├── music-goes-here.txt │ │ └── shoreline.ogg │ └── sounds │ │ └── sounds-go-here.txt ├── hmm.json ├── hxformat.json └── source │ ├── AssetPaths.hx │ ├── Main.hx │ ├── PlayState.hx │ └── Visualizer.hx ├── haxelib.json ├── hmm.json └── src └── funkin └── vis ├── AudioBuffer.hx ├── AudioClip.hx ├── LogHelper.hx ├── Scaling.hx ├── _internal └── html5 │ └── AnalyzerNode.hx ├── audioclip └── frontends │ └── LimeAudioClip.hx └── dsp ├── Complex.hx ├── FFT.hx ├── OffsetArray.hx ├── README.md ├── RecentPeakFinder.hx ├── Signal.hx └── SpectralAnalyzer.hx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/README.md -------------------------------------------------------------------------------- /example/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/.vscode/extensions.json -------------------------------------------------------------------------------- /example/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/.vscode/launch.json -------------------------------------------------------------------------------- /example/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/.vscode/settings.json -------------------------------------------------------------------------------- /example/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/.vscode/tasks.json -------------------------------------------------------------------------------- /example/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/Project.xml -------------------------------------------------------------------------------- /example/assets/data/data-goes-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/assets/images/images-go-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/assets/music/catStuck.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/assets/music/catStuck.ogg -------------------------------------------------------------------------------- /example/assets/music/medlyForAGamer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/assets/music/medlyForAGamer.ogg -------------------------------------------------------------------------------- /example/assets/music/music-goes-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/assets/music/shoreline.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/assets/music/shoreline.ogg -------------------------------------------------------------------------------- /example/assets/sounds/sounds-go-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/hmm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/hmm.json -------------------------------------------------------------------------------- /example/hxformat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/hxformat.json -------------------------------------------------------------------------------- /example/source/AssetPaths.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/source/AssetPaths.hx -------------------------------------------------------------------------------- /example/source/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/source/Main.hx -------------------------------------------------------------------------------- /example/source/PlayState.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/source/PlayState.hx -------------------------------------------------------------------------------- /example/source/Visualizer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/example/source/Visualizer.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/haxelib.json -------------------------------------------------------------------------------- /hmm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/hmm.json -------------------------------------------------------------------------------- /src/funkin/vis/AudioBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/AudioBuffer.hx -------------------------------------------------------------------------------- /src/funkin/vis/AudioClip.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/AudioClip.hx -------------------------------------------------------------------------------- /src/funkin/vis/LogHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/LogHelper.hx -------------------------------------------------------------------------------- /src/funkin/vis/Scaling.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/Scaling.hx -------------------------------------------------------------------------------- /src/funkin/vis/_internal/html5/AnalyzerNode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/_internal/html5/AnalyzerNode.hx -------------------------------------------------------------------------------- /src/funkin/vis/audioclip/frontends/LimeAudioClip.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/audioclip/frontends/LimeAudioClip.hx -------------------------------------------------------------------------------- /src/funkin/vis/dsp/Complex.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/Complex.hx -------------------------------------------------------------------------------- /src/funkin/vis/dsp/FFT.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/FFT.hx -------------------------------------------------------------------------------- /src/funkin/vis/dsp/OffsetArray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/OffsetArray.hx -------------------------------------------------------------------------------- /src/funkin/vis/dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/README.md -------------------------------------------------------------------------------- /src/funkin/vis/dsp/RecentPeakFinder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/RecentPeakFinder.hx -------------------------------------------------------------------------------- /src/funkin/vis/dsp/Signal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/Signal.hx -------------------------------------------------------------------------------- /src/funkin/vis/dsp/SpectralAnalyzer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkinCrew/funkVis/HEAD/src/funkin/vis/dsp/SpectralAnalyzer.hx --------------------------------------------------------------------------------