├── .gitignore ├── LICENSE ├── README.md ├── demo ├── index.html ├── script.js └── styles.css ├── json ├── ar.json ├── bg.json ├── bho.json ├── bn.json ├── ca.json ├── cmn.json ├── cs.json ├── da.json ├── de.json ├── el.json ├── en.json ├── es.json ├── eu.json ├── fa.json ├── fi.json ├── filters │ ├── novelty.json │ └── veryLowQuality.json ├── fr.json ├── gl.json ├── he.json ├── hi.json ├── hr.json ├── hu.json ├── id.json ├── it.json ├── ja.json ├── kn.json ├── ko.json ├── localizedNames │ ├── apple.json │ └── full │ │ ├── en.json │ │ └── fr.json ├── mr.json ├── ms.json ├── nb.json ├── nl.json ├── pl.json ├── pt.json ├── ro.json ├── ru.json ├── sk.json ├── sl.json ├── sv.json ├── ta.json ├── te.json ├── th.json ├── tr.json ├── uk.json ├── vi.json ├── wuu.json └── yue.json └── voices.schema.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/demo/script.js -------------------------------------------------------------------------------- /demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/demo/styles.css -------------------------------------------------------------------------------- /json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ar.json -------------------------------------------------------------------------------- /json/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/bg.json -------------------------------------------------------------------------------- /json/bho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/bho.json -------------------------------------------------------------------------------- /json/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/bn.json -------------------------------------------------------------------------------- /json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ca.json -------------------------------------------------------------------------------- /json/cmn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/cmn.json -------------------------------------------------------------------------------- /json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/cs.json -------------------------------------------------------------------------------- /json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/da.json -------------------------------------------------------------------------------- /json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/de.json -------------------------------------------------------------------------------- /json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/el.json -------------------------------------------------------------------------------- /json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/en.json -------------------------------------------------------------------------------- /json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/es.json -------------------------------------------------------------------------------- /json/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/eu.json -------------------------------------------------------------------------------- /json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/fa.json -------------------------------------------------------------------------------- /json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/fi.json -------------------------------------------------------------------------------- /json/filters/novelty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/filters/novelty.json -------------------------------------------------------------------------------- /json/filters/veryLowQuality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/filters/veryLowQuality.json -------------------------------------------------------------------------------- /json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/fr.json -------------------------------------------------------------------------------- /json/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/gl.json -------------------------------------------------------------------------------- /json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/he.json -------------------------------------------------------------------------------- /json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/hi.json -------------------------------------------------------------------------------- /json/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/hr.json -------------------------------------------------------------------------------- /json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/hu.json -------------------------------------------------------------------------------- /json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/id.json -------------------------------------------------------------------------------- /json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/it.json -------------------------------------------------------------------------------- /json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ja.json -------------------------------------------------------------------------------- /json/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/kn.json -------------------------------------------------------------------------------- /json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ko.json -------------------------------------------------------------------------------- /json/localizedNames/apple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/localizedNames/apple.json -------------------------------------------------------------------------------- /json/localizedNames/full/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/localizedNames/full/en.json -------------------------------------------------------------------------------- /json/localizedNames/full/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/localizedNames/full/fr.json -------------------------------------------------------------------------------- /json/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/mr.json -------------------------------------------------------------------------------- /json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ms.json -------------------------------------------------------------------------------- /json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/nb.json -------------------------------------------------------------------------------- /json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/nl.json -------------------------------------------------------------------------------- /json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/pl.json -------------------------------------------------------------------------------- /json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/pt.json -------------------------------------------------------------------------------- /json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ro.json -------------------------------------------------------------------------------- /json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ru.json -------------------------------------------------------------------------------- /json/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/sk.json -------------------------------------------------------------------------------- /json/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/sl.json -------------------------------------------------------------------------------- /json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/sv.json -------------------------------------------------------------------------------- /json/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/ta.json -------------------------------------------------------------------------------- /json/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/te.json -------------------------------------------------------------------------------- /json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/th.json -------------------------------------------------------------------------------- /json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/tr.json -------------------------------------------------------------------------------- /json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/uk.json -------------------------------------------------------------------------------- /json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/vi.json -------------------------------------------------------------------------------- /json/wuu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/wuu.json -------------------------------------------------------------------------------- /json/yue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/json/yue.json -------------------------------------------------------------------------------- /voices.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HadrienGardeur/web-speech-recommended-voices/HEAD/voices.schema.json --------------------------------------------------------------------------------