├── .gitignore ├── LICENSE.txt ├── MFA_CONFIG ├── README.md ├── clean.sh ├── data ├── LANGS.txt ├── akuapem-twi.txt ├── arabic.txt ├── asante-twi.txt ├── chichewa.txt ├── ewe.txt ├── hausa.txt ├── kikuyu.txt ├── kurdi-sorani.txt ├── lingala.txt ├── luganda.txt ├── luo.txt ├── polish.txt ├── vietnamese.txt └── yoruba.txt ├── extra-preprocess ├── chichewa.sh ├── ewe.sh ├── hausa.sh ├── kikuyu.sh ├── luganda.sh ├── luo.sh └── yoruba.sh ├── grep-verse-from-textgrid.sh ├── join-with-org-verse.sh ├── make-dict.sh ├── parallelize.sh ├── run-biblica-splits-akuapem-twi.sh ├── run-biblica-splits-asante-twi.sh ├── run-biblica-splits-lingala.sh ├── run-post-alignment.sh ├── run-pre-alignment.sh ├── split-audio.sh ├── split_verse_akuapem-twi.py ├── split_verse_asante-twi.py └── split_verse_lingala.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MFA_CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/MFA_CONFIG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/clean.sh -------------------------------------------------------------------------------- /data/LANGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/LANGS.txt -------------------------------------------------------------------------------- /data/akuapem-twi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/akuapem-twi.txt -------------------------------------------------------------------------------- /data/arabic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/arabic.txt -------------------------------------------------------------------------------- /data/asante-twi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/asante-twi.txt -------------------------------------------------------------------------------- /data/chichewa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/chichewa.txt -------------------------------------------------------------------------------- /data/ewe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/ewe.txt -------------------------------------------------------------------------------- /data/hausa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/hausa.txt -------------------------------------------------------------------------------- /data/kikuyu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/kikuyu.txt -------------------------------------------------------------------------------- /data/kurdi-sorani.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/kurdi-sorani.txt -------------------------------------------------------------------------------- /data/lingala.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/lingala.txt -------------------------------------------------------------------------------- /data/luganda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/luganda.txt -------------------------------------------------------------------------------- /data/luo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/luo.txt -------------------------------------------------------------------------------- /data/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/polish.txt -------------------------------------------------------------------------------- /data/vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/vietnamese.txt -------------------------------------------------------------------------------- /data/yoruba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/data/yoruba.txt -------------------------------------------------------------------------------- /extra-preprocess/chichewa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/extra-preprocess/chichewa.sh -------------------------------------------------------------------------------- /extra-preprocess/ewe.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'I: No extra preprocessing needed for Ewe.' 4 | -------------------------------------------------------------------------------- /extra-preprocess/hausa.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'I: No extra preprocessing needed for Hausa.' 4 | -------------------------------------------------------------------------------- /extra-preprocess/kikuyu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/extra-preprocess/kikuyu.sh -------------------------------------------------------------------------------- /extra-preprocess/luganda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/extra-preprocess/luganda.sh -------------------------------------------------------------------------------- /extra-preprocess/luo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'I: No extra preprocessing needed for Luo.' 4 | -------------------------------------------------------------------------------- /extra-preprocess/yoruba.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'I: No extra preprocessing needed for Yoruba.' 4 | -------------------------------------------------------------------------------- /grep-verse-from-textgrid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/grep-verse-from-textgrid.sh -------------------------------------------------------------------------------- /join-with-org-verse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/join-with-org-verse.sh -------------------------------------------------------------------------------- /make-dict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/make-dict.sh -------------------------------------------------------------------------------- /parallelize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/parallelize.sh -------------------------------------------------------------------------------- /run-biblica-splits-akuapem-twi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/run-biblica-splits-akuapem-twi.sh -------------------------------------------------------------------------------- /run-biblica-splits-asante-twi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/run-biblica-splits-asante-twi.sh -------------------------------------------------------------------------------- /run-biblica-splits-lingala.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/run-biblica-splits-lingala.sh -------------------------------------------------------------------------------- /run-post-alignment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/run-post-alignment.sh -------------------------------------------------------------------------------- /run-pre-alignment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/run-pre-alignment.sh -------------------------------------------------------------------------------- /split-audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/split-audio.sh -------------------------------------------------------------------------------- /split_verse_akuapem-twi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/split_verse_akuapem-twi.py -------------------------------------------------------------------------------- /split_verse_asante-twi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/split_verse_asante-twi.py -------------------------------------------------------------------------------- /split_verse_lingala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coqui-ai/open-bible-scripts/HEAD/split_verse_lingala.py --------------------------------------------------------------------------------