├── .gitignore ├── README.md ├── html ├── static │ ├── css │ │ ├── audio-annotator.css │ │ └── materialize.min.css │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── img │ │ ├── paris.jpg │ │ └── task-interface.png │ ├── js │ │ ├── colormap │ │ │ ├── colormap.min.js │ │ │ ├── gen_colormap.js │ │ │ └── gen_colormap.sh │ │ ├── lib │ │ │ ├── jquery-2.2.3.min.js │ │ │ ├── materialize.min.js │ │ │ ├── wavesurfer.min.js │ │ │ ├── wavesurfer.min.js.map │ │ │ └── wavesurfer.spectrogram.min.js │ │ └── src │ │ │ ├── annotation_stages.js │ │ │ ├── components.js │ │ │ ├── hidden_image.js │ │ │ ├── main.js │ │ │ ├── message.js │ │ │ ├── wavesurfer.drawer.extended.js │ │ │ ├── wavesurfer.labels.js │ │ │ └── wavesurfer.regions.js │ └── json │ │ ├── paris.json │ │ ├── sample_curiosity_data.json │ │ └── sample_data.json └── templates │ └── index.html ├── pyinstaller.sh ├── release ├── audio-annotator-mac-v1.0.zip ├── audio-annotator-mac-v1.1.zip ├── audio-annotator-mac-v1.2.zip ├── audio-annotator-win-v1.0.zip ├── audio-annotator-win-v1.1.zip └── audio-annotator-win-v1.2.zip ├── run.py ├── run_pyinstaller.spec ├── server ├── __init__.py ├── base.py ├── file_utils.py ├── get_task.py └── post_ret.py └── wavs └── test ├── d815927106414d5693f4c0a2c292c546.wav └── paris.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/README.md -------------------------------------------------------------------------------- /html/static/css/audio-annotator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/css/audio-annotator.css -------------------------------------------------------------------------------- /html/static/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/css/materialize.min.css -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /html/static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /html/static/img/paris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/img/paris.jpg -------------------------------------------------------------------------------- /html/static/img/task-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/img/task-interface.png -------------------------------------------------------------------------------- /html/static/js/colormap/colormap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/colormap/colormap.min.js -------------------------------------------------------------------------------- /html/static/js/colormap/gen_colormap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/colormap/gen_colormap.js -------------------------------------------------------------------------------- /html/static/js/colormap/gen_colormap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/colormap/gen_colormap.sh -------------------------------------------------------------------------------- /html/static/js/lib/jquery-2.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/lib/jquery-2.2.3.min.js -------------------------------------------------------------------------------- /html/static/js/lib/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/lib/materialize.min.js -------------------------------------------------------------------------------- /html/static/js/lib/wavesurfer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/lib/wavesurfer.min.js -------------------------------------------------------------------------------- /html/static/js/lib/wavesurfer.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/lib/wavesurfer.min.js.map -------------------------------------------------------------------------------- /html/static/js/lib/wavesurfer.spectrogram.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/lib/wavesurfer.spectrogram.min.js -------------------------------------------------------------------------------- /html/static/js/src/annotation_stages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/annotation_stages.js -------------------------------------------------------------------------------- /html/static/js/src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/components.js -------------------------------------------------------------------------------- /html/static/js/src/hidden_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/hidden_image.js -------------------------------------------------------------------------------- /html/static/js/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/main.js -------------------------------------------------------------------------------- /html/static/js/src/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/message.js -------------------------------------------------------------------------------- /html/static/js/src/wavesurfer.drawer.extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/wavesurfer.drawer.extended.js -------------------------------------------------------------------------------- /html/static/js/src/wavesurfer.labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/wavesurfer.labels.js -------------------------------------------------------------------------------- /html/static/js/src/wavesurfer.regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/js/src/wavesurfer.regions.js -------------------------------------------------------------------------------- /html/static/json/paris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/json/paris.json -------------------------------------------------------------------------------- /html/static/json/sample_curiosity_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/json/sample_curiosity_data.json -------------------------------------------------------------------------------- /html/static/json/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/static/json/sample_data.json -------------------------------------------------------------------------------- /html/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/html/templates/index.html -------------------------------------------------------------------------------- /pyinstaller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/pyinstaller.sh -------------------------------------------------------------------------------- /release/audio-annotator-mac-v1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/release/audio-annotator-mac-v1.0.zip -------------------------------------------------------------------------------- /release/audio-annotator-mac-v1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/release/audio-annotator-mac-v1.1.zip -------------------------------------------------------------------------------- /release/audio-annotator-mac-v1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/release/audio-annotator-mac-v1.2.zip -------------------------------------------------------------------------------- /release/audio-annotator-win-v1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/release/audio-annotator-win-v1.0.zip -------------------------------------------------------------------------------- /release/audio-annotator-win-v1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/release/audio-annotator-win-v1.1.zip -------------------------------------------------------------------------------- /release/audio-annotator-win-v1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/release/audio-annotator-win-v1.2.zip -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/run.py -------------------------------------------------------------------------------- /run_pyinstaller.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/run_pyinstaller.spec -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/server/__init__.py -------------------------------------------------------------------------------- /server/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/server/base.py -------------------------------------------------------------------------------- /server/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/server/file_utils.py -------------------------------------------------------------------------------- /server/get_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/server/get_task.py -------------------------------------------------------------------------------- /server/post_ret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/server/post_ret.py -------------------------------------------------------------------------------- /wavs/test/d815927106414d5693f4c0a2c292c546.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/wavs/test/d815927106414d5693f4c0a2c292c546.wav -------------------------------------------------------------------------------- /wavs/test/paris.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vell001/audio-annotator/HEAD/wavs/test/paris.wav --------------------------------------------------------------------------------