├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── bin ├── csv2hdf5 ├── prepare.sh └── vocoto ├── requirements.txt ├── soundstore ├── convert.py ├── enrich.py ├── tocsv.py └── utils │ ├── __init__.py │ ├── helpers.py │ └── tree.py └── voice.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/README.md -------------------------------------------------------------------------------- /bin/csv2hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/bin/csv2hdf5 -------------------------------------------------------------------------------- /bin/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/bin/prepare.sh -------------------------------------------------------------------------------- /bin/vocoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/bin/vocoto -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/requirements.txt -------------------------------------------------------------------------------- /soundstore/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/soundstore/convert.py -------------------------------------------------------------------------------- /soundstore/enrich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/soundstore/enrich.py -------------------------------------------------------------------------------- /soundstore/tocsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/soundstore/tocsv.py -------------------------------------------------------------------------------- /soundstore/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /soundstore/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/soundstore/utils/helpers.py -------------------------------------------------------------------------------- /soundstore/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/soundstore/utils/tree.py -------------------------------------------------------------------------------- /voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/voice-corpus-tool/HEAD/voice.py --------------------------------------------------------------------------------