├── .Rhistory ├── .gitignore ├── LICENSE.txt ├── README.md ├── curio_original ├── audio.html └── main.js ├── examples ├── curiosity.html └── index.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 └── wav ├── paris.wav └── spectrogram_demo_doorknock_mono.wav /.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/README.md -------------------------------------------------------------------------------- /curio_original/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/curio_original/audio.html -------------------------------------------------------------------------------- /curio_original/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/curio_original/main.js -------------------------------------------------------------------------------- /examples/curiosity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/examples/curiosity.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/examples/index.html -------------------------------------------------------------------------------- /static/css/audio-annotator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/css/audio-annotator.css -------------------------------------------------------------------------------- /static/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/css/materialize.min.css -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static/img/paris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/img/paris.jpg -------------------------------------------------------------------------------- /static/img/task-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/img/task-interface.png -------------------------------------------------------------------------------- /static/js/colormap/colormap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/colormap/colormap.min.js -------------------------------------------------------------------------------- /static/js/colormap/gen_colormap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/colormap/gen_colormap.js -------------------------------------------------------------------------------- /static/js/colormap/gen_colormap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/colormap/gen_colormap.sh -------------------------------------------------------------------------------- /static/js/lib/jquery-2.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/lib/jquery-2.2.3.min.js -------------------------------------------------------------------------------- /static/js/lib/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/lib/materialize.min.js -------------------------------------------------------------------------------- /static/js/lib/wavesurfer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/lib/wavesurfer.min.js -------------------------------------------------------------------------------- /static/js/lib/wavesurfer.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/lib/wavesurfer.min.js.map -------------------------------------------------------------------------------- /static/js/lib/wavesurfer.spectrogram.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/lib/wavesurfer.spectrogram.min.js -------------------------------------------------------------------------------- /static/js/src/annotation_stages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/annotation_stages.js -------------------------------------------------------------------------------- /static/js/src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/components.js -------------------------------------------------------------------------------- /static/js/src/hidden_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/hidden_image.js -------------------------------------------------------------------------------- /static/js/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/main.js -------------------------------------------------------------------------------- /static/js/src/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/message.js -------------------------------------------------------------------------------- /static/js/src/wavesurfer.drawer.extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/wavesurfer.drawer.extended.js -------------------------------------------------------------------------------- /static/js/src/wavesurfer.labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/wavesurfer.labels.js -------------------------------------------------------------------------------- /static/js/src/wavesurfer.regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/js/src/wavesurfer.regions.js -------------------------------------------------------------------------------- /static/json/paris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/json/paris.json -------------------------------------------------------------------------------- /static/json/sample_curiosity_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/json/sample_curiosity_data.json -------------------------------------------------------------------------------- /static/json/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/json/sample_data.json -------------------------------------------------------------------------------- /static/wav/paris.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/wav/paris.wav -------------------------------------------------------------------------------- /static/wav/spectrogram_demo_doorknock_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrowdCurio/audio-annotator/HEAD/static/wav/spectrogram_demo_doorknock_mono.wav --------------------------------------------------------------------------------