├── .gitignore ├── LICENSE ├── README.md ├── README.template ├── VERSION ├── data.json └── data_to_md.py /.gitignore: -------------------------------------------------------------------------------- 1 | downloaded/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pettarin/forced-alignment-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pettarin/forced-alignment-tools/HEAD/README.md -------------------------------------------------------------------------------- /README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pettarin/forced-alignment-tools/HEAD/README.template -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.9 2 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pettarin/forced-alignment-tools/HEAD/data.json -------------------------------------------------------------------------------- /data_to_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pettarin/forced-alignment-tools/HEAD/data_to_md.py --------------------------------------------------------------------------------