├── .dockerignore ├── .gitignore ├── .isort.cfg ├── .projectile ├── .tool-versions ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── etc ├── nabu_casa_sponsored.png ├── nabu_casa_sponsored.svg └── screenshot.jpg ├── export_dataset ├── __init__.py ├── __main__.py ├── models │ └── silero_vad.onnx ├── trim.py └── vad.py ├── mypy.ini ├── output └── .gitkeep ├── piper_recording_studio ├── __init__.py ├── __main__.py ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── fontawesome-all.min.css ├── img │ └── logo.png ├── js │ ├── wavesurfer.js │ ├── wavesurfer.microphone.min.js │ ├── wavesurfer.minimap.js │ ├── wavesurfer.regions.js │ └── wavesurfer.timeline.js ├── templates │ ├── done.html │ ├── index.html │ ├── record.html │ └── upload.html └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── prompts ├── Afrikaans (South Africa)_af-ZA │ └── SLR32.txt ├── Albanian (Albania)_sq-AL │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Arabic (Egypt)_ar-EG │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Arabic (Saudi Arabia)_ar-SA │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Basque (Spain)_eu-ES │ └── SLR76.txt ├── Bulgarian (Bulgaria)_bg-BG │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ ├── 4000000001_4000000300_CustomerService.txt │ ├── common_phrases.txt │ └── numbers.txt ├── Catalan (Spain)_ca-ES │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Chinese (Cantonese, Traditional)_zh-HK │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Chinese (Mandarin, Simplified)_zh-CN │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Chinese (Taiwanese Mandarin)_zh-TW │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Croatian (Croatia)_hr-HR │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Czech (Czech)_cs-CZ │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Danish (Denmark)_da-DK │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Dutch (Belgium)_nl-BE │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Dutch (Netherlands)_nl-NL │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── English (Australia)_en-AU │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── English (Canada)_en-CA │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── English (India)_en-IN │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── English (Ireland)_en-IE │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── English (United Kingdom)_en-GB │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── English (United States)_en-US │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Finnish (Finland)_fi-FI │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── French (Belgium)_fr-BE │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── French (Canada)_fr-CA │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── French (France)_fr-FR │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── French (Switzerland)_fr-CH │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── German (Austria)_de-AT │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── German (Germany)_de-DE │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── German (Switzerland)_de-CH │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Greek (Greece)_el-GR │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Hebrew (Israel)_he-IL │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Hindi (India)_hi-IN │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001-3000000300_Chat.txt │ └── 4000000001-4000000300_CustomerService.txt ├── Hungarian (Hungary)_hu-HU │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Indonesian (Indonesia)_id-ID │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Italian (Italy)_it-IT │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Japanese (Japan)_ja-JP │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Korean (Korea)_ko-KR │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Malay (Malaysia)_ms-MY │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Nepali (Nepal)_ne-NP │ └── sentence-collector.txt ├── Norwegian (Bokmål, Norway)_nb-NO │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Polish (Poland)_pl-PL │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Portuguese (Brazil)_pt-BR │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Portuguese (Portugal)_pt-PT │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Romanian (Romania)_ro-RO │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Russian (Russia)_ru-RU │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Serbian (Serbia)_rs_SR │ ├── 0000000000-0000000200.txt │ ├── brojevi-00-99-brojne-imenice.txt │ ├── brojevi-00-99-brojni-pridevi.txt │ ├── brojevi-00-99-osnovni-srednji.txt │ ├── brojevi-00-99-osnovni-zenski.txt │ ├── brojevi-00-99-osnovni.txt │ ├── brojevi-00-99-redni-muski.txt │ ├── brojevi-00-99-redni-srednji.txt │ ├── brojevi-00-99-redni-zenski-mnozina.txt │ ├── brojevi-00-99-redni-zenski.txt │ ├── brojevi-00-99-zbirni.txt │ ├── brojevi-hiljade-osnovni.txt │ ├── brojevi-milioni-osnovni.txt │ ├── brojevi-razlomci.txt │ ├── brojevi-stotine-osnovni.txt │ ├── razgovor-pozdravi.txt │ └── razgovor-vreme.txt ├── Slovak (Slovakia)_sk-SK │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Slovenian (Slovenia)_sl-SI │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Spanish (Mexico)_es-MX │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Spanish (Spain)_es-ES │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Swahili (Kenya)_sw-KE │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Swedish (Sweden)_sv-SE │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Tamil (India)_ta-IN │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001-3000000300_Chat.txt │ ├── 4000000001-4000000300_CustomerService.txt │ └── 4000000001-4000000300_CustomerService.txt.bak ├── Telugu (India)_te-IN │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001-3000000300_Chat.txt │ └── 4000000001-4000000300_CustomerService.txt ├── Test_test │ └── test.txt ├── Thai (Thailand)_th-TH │ ├── 0000000001_0200000100_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Turkish (Turkey)_tr-TR │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt ├── Vietnamese (Vietnam)_vi-VN │ ├── 0000000001_0300000050_General.txt │ ├── 3000000001_3000000300_Chat.txt │ └── 4000000001_4000000300_CustomerService.txt └── Welsh (United Kingdom)_cy-GB │ └── prompts.txt ├── requirements.txt ├── requirements_dev.txt ├── requirements_export.txt ├── script ├── find_complete ├── format ├── lint ├── run └── setup └── setup.cfg /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !requirements.txt 3 | !prompts/ 4 | !piper_recording_studio/ 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.projectile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/.projectile -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | python 3.9.16 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | docker build . -t rhasspy/piper-recording-studio 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/README.md -------------------------------------------------------------------------------- /etc/nabu_casa_sponsored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/etc/nabu_casa_sponsored.png -------------------------------------------------------------------------------- /etc/nabu_casa_sponsored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/etc/nabu_casa_sponsored.svg -------------------------------------------------------------------------------- /etc/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/etc/screenshot.jpg -------------------------------------------------------------------------------- /export_dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /export_dataset/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/export_dataset/__main__.py -------------------------------------------------------------------------------- /export_dataset/models/silero_vad.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/export_dataset/models/silero_vad.onnx -------------------------------------------------------------------------------- /export_dataset/trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/export_dataset/trim.py -------------------------------------------------------------------------------- /export_dataset/vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/export_dataset/vad.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/mypy.ini -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /piper_recording_studio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /piper_recording_studio/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/__main__.py -------------------------------------------------------------------------------- /piper_recording_studio/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/css/bootstrap.min.css -------------------------------------------------------------------------------- /piper_recording_studio/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /piper_recording_studio/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /piper_recording_studio/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/img/logo.png -------------------------------------------------------------------------------- /piper_recording_studio/js/wavesurfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/js/wavesurfer.js -------------------------------------------------------------------------------- /piper_recording_studio/js/wavesurfer.microphone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/js/wavesurfer.microphone.min.js -------------------------------------------------------------------------------- /piper_recording_studio/js/wavesurfer.minimap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/js/wavesurfer.minimap.js -------------------------------------------------------------------------------- /piper_recording_studio/js/wavesurfer.regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/js/wavesurfer.regions.js -------------------------------------------------------------------------------- /piper_recording_studio/js/wavesurfer.timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/js/wavesurfer.timeline.js -------------------------------------------------------------------------------- /piper_recording_studio/templates/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/templates/done.html -------------------------------------------------------------------------------- /piper_recording_studio/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/templates/index.html -------------------------------------------------------------------------------- /piper_recording_studio/templates/record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/templates/record.html -------------------------------------------------------------------------------- /piper_recording_studio/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/templates/upload.html -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /piper_recording_studio/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/piper_recording_studio/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /prompts/Afrikaans (South Africa)_af-ZA/SLR32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Afrikaans (South Africa)_af-ZA/SLR32.txt -------------------------------------------------------------------------------- /prompts/Albanian (Albania)_sq-AL/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Albanian (Albania)_sq-AL/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Albanian (Albania)_sq-AL/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Albanian (Albania)_sq-AL/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Albanian (Albania)_sq-AL/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Albanian (Albania)_sq-AL/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Arabic (Egypt)_ar-EG/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Arabic (Egypt)_ar-EG/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Arabic (Egypt)_ar-EG/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Arabic (Egypt)_ar-EG/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Arabic (Egypt)_ar-EG/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Arabic (Egypt)_ar-EG/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Arabic (Saudi Arabia)_ar-SA/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Arabic (Saudi Arabia)_ar-SA/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Arabic (Saudi Arabia)_ar-SA/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Arabic (Saudi Arabia)_ar-SA/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Arabic (Saudi Arabia)_ar-SA/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Arabic (Saudi Arabia)_ar-SA/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Basque (Spain)_eu-ES/SLR76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Basque (Spain)_eu-ES/SLR76.txt -------------------------------------------------------------------------------- /prompts/Bulgarian (Bulgaria)_bg-BG/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Bulgarian (Bulgaria)_bg-BG/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Bulgarian (Bulgaria)_bg-BG/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Bulgarian (Bulgaria)_bg-BG/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Bulgarian (Bulgaria)_bg-BG/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Bulgarian (Bulgaria)_bg-BG/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Bulgarian (Bulgaria)_bg-BG/common_phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Bulgarian (Bulgaria)_bg-BG/common_phrases.txt -------------------------------------------------------------------------------- /prompts/Bulgarian (Bulgaria)_bg-BG/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Bulgarian (Bulgaria)_bg-BG/numbers.txt -------------------------------------------------------------------------------- /prompts/Catalan (Spain)_ca-ES/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Catalan (Spain)_ca-ES/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Catalan (Spain)_ca-ES/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Catalan (Spain)_ca-ES/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Catalan (Spain)_ca-ES/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Catalan (Spain)_ca-ES/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Chinese (Cantonese, Traditional)_zh-HK/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Cantonese, Traditional)_zh-HK/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Chinese (Cantonese, Traditional)_zh-HK/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Cantonese, Traditional)_zh-HK/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Chinese (Cantonese, Traditional)_zh-HK/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Cantonese, Traditional)_zh-HK/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Chinese (Mandarin, Simplified)_zh-CN/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Mandarin, Simplified)_zh-CN/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Chinese (Mandarin, Simplified)_zh-CN/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Mandarin, Simplified)_zh-CN/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Chinese (Mandarin, Simplified)_zh-CN/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Mandarin, Simplified)_zh-CN/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Chinese (Taiwanese Mandarin)_zh-TW/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Taiwanese Mandarin)_zh-TW/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Chinese (Taiwanese Mandarin)_zh-TW/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Taiwanese Mandarin)_zh-TW/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Chinese (Taiwanese Mandarin)_zh-TW/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Chinese (Taiwanese Mandarin)_zh-TW/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Croatian (Croatia)_hr-HR/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Croatian (Croatia)_hr-HR/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Croatian (Croatia)_hr-HR/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Croatian (Croatia)_hr-HR/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Croatian (Croatia)_hr-HR/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Croatian (Croatia)_hr-HR/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Czech (Czech)_cs-CZ/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Czech (Czech)_cs-CZ/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Czech (Czech)_cs-CZ/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Czech (Czech)_cs-CZ/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Czech (Czech)_cs-CZ/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Czech (Czech)_cs-CZ/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Danish (Denmark)_da-DK/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Danish (Denmark)_da-DK/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Danish (Denmark)_da-DK/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Danish (Denmark)_da-DK/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Danish (Denmark)_da-DK/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Danish (Denmark)_da-DK/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Dutch (Belgium)_nl-BE/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Dutch (Belgium)_nl-BE/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Dutch (Belgium)_nl-BE/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Dutch (Belgium)_nl-BE/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Dutch (Belgium)_nl-BE/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Dutch (Belgium)_nl-BE/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Dutch (Netherlands)_nl-NL/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Dutch (Netherlands)_nl-NL/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Dutch (Netherlands)_nl-NL/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Dutch (Netherlands)_nl-NL/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Dutch (Netherlands)_nl-NL/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Dutch (Netherlands)_nl-NL/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/English (Australia)_en-AU/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Australia)_en-AU/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/English (Australia)_en-AU/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Australia)_en-AU/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/English (Australia)_en-AU/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Australia)_en-AU/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/English (Canada)_en-CA/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Canada)_en-CA/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/English (Canada)_en-CA/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Canada)_en-CA/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/English (Canada)_en-CA/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Canada)_en-CA/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/English (India)_en-IN/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (India)_en-IN/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/English (India)_en-IN/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (India)_en-IN/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/English (India)_en-IN/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (India)_en-IN/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/English (Ireland)_en-IE/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Ireland)_en-IE/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/English (Ireland)_en-IE/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Ireland)_en-IE/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/English (Ireland)_en-IE/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (Ireland)_en-IE/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/English (United Kingdom)_en-GB/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (United Kingdom)_en-GB/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/English (United Kingdom)_en-GB/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (United Kingdom)_en-GB/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/English (United Kingdom)_en-GB/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (United Kingdom)_en-GB/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/English (United States)_en-US/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (United States)_en-US/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/English (United States)_en-US/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (United States)_en-US/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/English (United States)_en-US/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/English (United States)_en-US/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Finnish (Finland)_fi-FI/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Finnish (Finland)_fi-FI/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Finnish (Finland)_fi-FI/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Finnish (Finland)_fi-FI/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Finnish (Finland)_fi-FI/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Finnish (Finland)_fi-FI/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/French (Belgium)_fr-BE/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Belgium)_fr-BE/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/French (Belgium)_fr-BE/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Belgium)_fr-BE/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/French (Belgium)_fr-BE/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Belgium)_fr-BE/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/French (Canada)_fr-CA/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Canada)_fr-CA/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/French (Canada)_fr-CA/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Canada)_fr-CA/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/French (Canada)_fr-CA/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Canada)_fr-CA/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/French (France)_fr-FR/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (France)_fr-FR/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/French (France)_fr-FR/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (France)_fr-FR/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/French (France)_fr-FR/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (France)_fr-FR/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/French (Switzerland)_fr-CH/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Switzerland)_fr-CH/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/French (Switzerland)_fr-CH/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Switzerland)_fr-CH/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/French (Switzerland)_fr-CH/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/French (Switzerland)_fr-CH/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/German (Austria)_de-AT/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Austria)_de-AT/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/German (Austria)_de-AT/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Austria)_de-AT/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/German (Austria)_de-AT/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Austria)_de-AT/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/German (Germany)_de-DE/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Germany)_de-DE/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/German (Germany)_de-DE/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Germany)_de-DE/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/German (Germany)_de-DE/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Germany)_de-DE/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/German (Switzerland)_de-CH/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Switzerland)_de-CH/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/German (Switzerland)_de-CH/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Switzerland)_de-CH/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/German (Switzerland)_de-CH/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/German (Switzerland)_de-CH/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Greek (Greece)_el-GR/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Greek (Greece)_el-GR/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Greek (Greece)_el-GR/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Greek (Greece)_el-GR/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Greek (Greece)_el-GR/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Greek (Greece)_el-GR/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Hebrew (Israel)_he-IL/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hebrew (Israel)_he-IL/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Hebrew (Israel)_he-IL/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hebrew (Israel)_he-IL/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Hebrew (Israel)_he-IL/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hebrew (Israel)_he-IL/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Hindi (India)_hi-IN/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hindi (India)_hi-IN/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Hindi (India)_hi-IN/3000000001-3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hindi (India)_hi-IN/3000000001-3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Hindi (India)_hi-IN/4000000001-4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hindi (India)_hi-IN/4000000001-4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Hungarian (Hungary)_hu-HU/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hungarian (Hungary)_hu-HU/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Hungarian (Hungary)_hu-HU/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hungarian (Hungary)_hu-HU/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Hungarian (Hungary)_hu-HU/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Hungarian (Hungary)_hu-HU/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Indonesian (Indonesia)_id-ID/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Indonesian (Indonesia)_id-ID/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Indonesian (Indonesia)_id-ID/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Indonesian (Indonesia)_id-ID/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Indonesian (Indonesia)_id-ID/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Indonesian (Indonesia)_id-ID/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Italian (Italy)_it-IT/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Italian (Italy)_it-IT/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Italian (Italy)_it-IT/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Italian (Italy)_it-IT/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Italian (Italy)_it-IT/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Italian (Italy)_it-IT/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Japanese (Japan)_ja-JP/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Japanese (Japan)_ja-JP/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Japanese (Japan)_ja-JP/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Japanese (Japan)_ja-JP/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Japanese (Japan)_ja-JP/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Japanese (Japan)_ja-JP/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Korean (Korea)_ko-KR/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Korean (Korea)_ko-KR/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Korean (Korea)_ko-KR/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Korean (Korea)_ko-KR/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Korean (Korea)_ko-KR/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Korean (Korea)_ko-KR/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Malay (Malaysia)_ms-MY/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Malay (Malaysia)_ms-MY/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Malay (Malaysia)_ms-MY/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Malay (Malaysia)_ms-MY/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Malay (Malaysia)_ms-MY/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Malay (Malaysia)_ms-MY/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Nepali (Nepal)_ne-NP/sentence-collector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Nepali (Nepal)_ne-NP/sentence-collector.txt -------------------------------------------------------------------------------- /prompts/Norwegian (Bokmål, Norway)_nb-NO/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Norwegian (Bokmål, Norway)_nb-NO/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Norwegian (Bokmål, Norway)_nb-NO/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Norwegian (Bokmål, Norway)_nb-NO/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Norwegian (Bokmål, Norway)_nb-NO/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Norwegian (Bokmål, Norway)_nb-NO/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Polish (Poland)_pl-PL/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Polish (Poland)_pl-PL/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Polish (Poland)_pl-PL/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Polish (Poland)_pl-PL/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Polish (Poland)_pl-PL/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Polish (Poland)_pl-PL/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Portuguese (Brazil)_pt-BR/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Portuguese (Brazil)_pt-BR/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Portuguese (Brazil)_pt-BR/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Portuguese (Brazil)_pt-BR/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Portuguese (Brazil)_pt-BR/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Portuguese (Brazil)_pt-BR/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Portuguese (Portugal)_pt-PT/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Portuguese (Portugal)_pt-PT/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Portuguese (Portugal)_pt-PT/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Portuguese (Portugal)_pt-PT/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Portuguese (Portugal)_pt-PT/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Portuguese (Portugal)_pt-PT/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Romanian (Romania)_ro-RO/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Romanian (Romania)_ro-RO/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Romanian (Romania)_ro-RO/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Romanian (Romania)_ro-RO/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Romanian (Romania)_ro-RO/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Romanian (Romania)_ro-RO/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Russian (Russia)_ru-RU/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Russian (Russia)_ru-RU/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Russian (Russia)_ru-RU/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Russian (Russia)_ru-RU/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Russian (Russia)_ru-RU/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Russian (Russia)_ru-RU/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/0000000000-0000000200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/0000000000-0000000200.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-brojne-imenice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-brojne-imenice.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-brojni-pridevi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-brojni-pridevi.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-osnovni-srednji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-osnovni-srednji.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-osnovni-zenski.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-osnovni-zenski.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-osnovni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-osnovni.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-muski.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-muski.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-srednji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-srednji.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-zenski-mnozina.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-zenski-mnozina.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-zenski.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-redni-zenski.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-zbirni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-00-99-zbirni.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-hiljade-osnovni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-hiljade-osnovni.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-milioni-osnovni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-milioni-osnovni.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-razlomci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-razlomci.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/brojevi-stotine-osnovni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/brojevi-stotine-osnovni.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/razgovor-pozdravi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/razgovor-pozdravi.txt -------------------------------------------------------------------------------- /prompts/Serbian (Serbia)_rs_SR/razgovor-vreme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Serbian (Serbia)_rs_SR/razgovor-vreme.txt -------------------------------------------------------------------------------- /prompts/Slovak (Slovakia)_sk-SK/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Slovak (Slovakia)_sk-SK/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Slovak (Slovakia)_sk-SK/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Slovak (Slovakia)_sk-SK/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Slovak (Slovakia)_sk-SK/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Slovak (Slovakia)_sk-SK/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Slovenian (Slovenia)_sl-SI/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Slovenian (Slovenia)_sl-SI/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Slovenian (Slovenia)_sl-SI/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Slovenian (Slovenia)_sl-SI/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Slovenian (Slovenia)_sl-SI/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Slovenian (Slovenia)_sl-SI/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Spanish (Mexico)_es-MX/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Spanish (Mexico)_es-MX/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Spanish (Mexico)_es-MX/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Spanish (Mexico)_es-MX/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Spanish (Mexico)_es-MX/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Spanish (Mexico)_es-MX/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Spanish (Spain)_es-ES/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Spanish (Spain)_es-ES/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Spanish (Spain)_es-ES/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Spanish (Spain)_es-ES/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Spanish (Spain)_es-ES/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Spanish (Spain)_es-ES/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Swahili (Kenya)_sw-KE/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Swahili (Kenya)_sw-KE/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Swahili (Kenya)_sw-KE/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Swahili (Kenya)_sw-KE/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Swahili (Kenya)_sw-KE/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Swahili (Kenya)_sw-KE/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Swedish (Sweden)_sv-SE/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Swedish (Sweden)_sv-SE/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Swedish (Sweden)_sv-SE/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Swedish (Sweden)_sv-SE/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Swedish (Sweden)_sv-SE/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Swedish (Sweden)_sv-SE/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Tamil (India)_ta-IN/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Tamil (India)_ta-IN/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Tamil (India)_ta-IN/3000000001-3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Tamil (India)_ta-IN/3000000001-3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Tamil (India)_ta-IN/4000000001-4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Tamil (India)_ta-IN/4000000001-4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Tamil (India)_ta-IN/4000000001-4000000300_CustomerService.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Tamil (India)_ta-IN/4000000001-4000000300_CustomerService.txt.bak -------------------------------------------------------------------------------- /prompts/Telugu (India)_te-IN/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Telugu (India)_te-IN/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Telugu (India)_te-IN/3000000001-3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Telugu (India)_te-IN/3000000001-3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Telugu (India)_te-IN/4000000001-4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Telugu (India)_te-IN/4000000001-4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Test_test/test.txt: -------------------------------------------------------------------------------- 1 | One prompt 2 | -------------------------------------------------------------------------------- /prompts/Thai (Thailand)_th-TH/0000000001_0200000100_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Thai (Thailand)_th-TH/0000000001_0200000100_General.txt -------------------------------------------------------------------------------- /prompts/Thai (Thailand)_th-TH/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Thai (Thailand)_th-TH/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Thai (Thailand)_th-TH/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Thai (Thailand)_th-TH/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Turkish (Turkey)_tr-TR/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Turkish (Turkey)_tr-TR/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Turkish (Turkey)_tr-TR/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Turkish (Turkey)_tr-TR/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Turkish (Turkey)_tr-TR/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Turkish (Turkey)_tr-TR/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Vietnamese (Vietnam)_vi-VN/0000000001_0300000050_General.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Vietnamese (Vietnam)_vi-VN/0000000001_0300000050_General.txt -------------------------------------------------------------------------------- /prompts/Vietnamese (Vietnam)_vi-VN/3000000001_3000000300_Chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Vietnamese (Vietnam)_vi-VN/3000000001_3000000300_Chat.txt -------------------------------------------------------------------------------- /prompts/Vietnamese (Vietnam)_vi-VN/4000000001_4000000300_CustomerService.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Vietnamese (Vietnam)_vi-VN/4000000001_4000000300_CustomerService.txt -------------------------------------------------------------------------------- /prompts/Welsh (United Kingdom)_cy-GB/prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/prompts/Welsh (United Kingdom)_cy-GB/prompts.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_export.txt: -------------------------------------------------------------------------------- 1 | onnxruntime>=1.11.0,<2 2 | numpy 3 | regex 4 | -------------------------------------------------------------------------------- /script/find_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/script/find_complete -------------------------------------------------------------------------------- /script/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/script/format -------------------------------------------------------------------------------- /script/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/script/lint -------------------------------------------------------------------------------- /script/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/script/run -------------------------------------------------------------------------------- /script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/script/setup -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhasspy/piper-recording-studio/HEAD/setup.cfg --------------------------------------------------------------------------------