├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bugreport.md │ ├── featurerequest.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── prepare_python │ │ └── action.yml └── workflows │ ├── build-docs.yml │ ├── build-engine-container.yml │ ├── build-engine.yml │ ├── build-latest-dev.yml │ ├── build-latest-engine-container.yml │ ├── test-engine-container.yml │ ├── test-engine-package.yml │ ├── test-issue-freshness.yml │ ├── test-merge-gatekeeper.yml │ ├── test-security.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LGPL_LICENSE ├── LICENSE ├── README.md ├── docs ├── VOICEVOX音声合成エンジンとの連携.md ├── api │ └── .gitkeep ├── res │ └── マルチエンジン概念図.svg ├── リソースファイルのURLとfilemap.md └── 用語集.md ├── engine_manifest.json ├── pyproject.toml ├── requirements-build.txt ├── requirements-dev.txt ├── requirements.txt ├── resources ├── character_info │ ├── 35b2c544-660e-401e-b503-0e14c635303a │ │ ├── icons │ │ │ └── 8.png │ │ ├── metas.json │ │ ├── policy.md │ │ ├── portrait.png │ │ ├── portraits │ │ │ └── 8.png │ │ └── voice_samples │ │ │ ├── 8_001.wav │ │ │ ├── 8_002.wav │ │ │ └── 8_003.wav │ ├── 388f246b-8c41-4ac1-8e2d-5d79f3ff56d9 │ │ ├── icons │ │ │ ├── 1.png │ │ │ ├── 3.png │ │ │ ├── 5.png │ │ │ └── 7.png │ │ ├── metas.json │ │ ├── policy.md │ │ ├── portrait.png │ │ ├── portraits │ │ │ └── 3.png │ │ └── voice_samples │ │ │ ├── 1_001.wav │ │ │ ├── 1_002.wav │ │ │ ├── 1_003.wav │ │ │ ├── 3_001.wav │ │ │ ├── 3_002.wav │ │ │ ├── 3_003.wav │ │ │ ├── 5_001.wav │ │ │ ├── 5_002.wav │ │ │ ├── 5_003.wav │ │ │ ├── 7_001.wav │ │ │ ├── 7_002.wav │ │ │ └── 7_003.wav │ ├── 7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff │ │ ├── icons │ │ │ ├── 0.png │ │ │ ├── 2.png │ │ │ ├── 4.png │ │ │ └── 6.png │ │ ├── metas.json │ │ ├── policy.md │ │ ├── portrait.png │ │ ├── portraits │ │ │ ├── 0.png │ │ │ ├── 2.png │ │ │ ├── 4.png │ │ │ └── 6.png │ │ └── voice_samples │ │ │ ├── 0_001.wav │ │ │ ├── 0_002.wav │ │ │ ├── 0_003.wav │ │ │ ├── 2_001.wav │ │ │ ├── 2_002.wav │ │ │ ├── 2_003.wav │ │ │ ├── 4_001.wav │ │ │ ├── 4_002.wav │ │ │ ├── 4_003.wav │ │ │ ├── 6_001.wav │ │ │ ├── 6_002.wav │ │ │ └── 6_003.wav │ └── b1a81618-b27b-40d2-b0ea-27a9ad408c4b │ │ ├── icons │ │ └── 9.png │ │ ├── metas.json │ │ ├── policy.md │ │ ├── portrait.png │ │ └── voice_samples │ │ ├── 9_001.wav │ │ ├── 9_002.wav │ │ └── 9_003.wav ├── default.csv ├── engine_manifest_assets │ ├── dependency_licenses.json │ ├── downloadable_libraries.json │ ├── icon.png │ ├── terms_of_service.md │ └── update_infos.json └── setting_ui_template.html ├── run.py ├── run.spec ├── test ├── __init__.py ├── benchmark │ ├── engine_preparation.py │ └── speed │ │ ├── character.py │ │ ├── request.py │ │ └── utility.py ├── conftest.py ├── e2e │ ├── __snapshots__ │ │ ├── test_characters.ambr │ │ ├── test_characters │ │ │ ├── test_喋れるキャラクターの情報をURLで取得できる[35b2c544-660e-401e-b503-0e14c635303a].json │ │ │ ├── test_喋れるキャラクターの情報をURLで取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json │ │ │ ├── test_喋れるキャラクターの情報をURLで取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json │ │ │ ├── test_喋れるキャラクターの情報を取得できる[35b2c544-660e-401e-b503-0e14c635303a].json │ │ │ ├── test_喋れるキャラクターの情報を取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json │ │ │ ├── test_喋れるキャラクターの情報を取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json │ │ │ ├── test_喋れるキャラクター一覧が取得できる.json │ │ │ ├── test_歌えるキャラクターの情報をURLで取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json │ │ │ ├── test_歌えるキャラクターの情報をURLで取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json │ │ │ ├── test_歌えるキャラクターの情報をURLで取得できる[b1a81618-b27b-40d2-b0ea-27a9ad408c4b].json │ │ │ ├── test_歌えるキャラクターの情報を取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json │ │ │ ├── test_歌えるキャラクターの情報を取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json │ │ │ ├── test_歌えるキャラクターの情報を取得できる[b1a81618-b27b-40d2-b0ea-27a9ad408c4b].json │ │ │ └── test_歌えるキャラクター一覧が取得できる.json │ │ ├── test_missing_core │ │ │ └── test_missing_core_422.json │ │ ├── test_missing_engine │ │ │ └── test_missing_tts_engine_422.json │ │ ├── test_openapi │ │ │ └── test_OpenAPIの形が変わっていないことを確認.json │ │ ├── test_sing.ambr │ │ └── test_tts.ambr │ ├── conftest.py │ ├── single_api │ │ ├── engine_info │ │ │ ├── __snapshots__ │ │ │ │ ├── test_core_versions │ │ │ │ │ └── test_get_core_versions_200.json │ │ │ │ ├── test_engine_manifest │ │ │ │ │ └── test_get_engine_manifest_200.json │ │ │ │ ├── test_supported_devices │ │ │ │ │ └── test_get_supported_devices_200.json │ │ │ │ └── test_version │ │ │ │ │ └── test_get_version_200.json │ │ │ ├── test_core_versions.py │ │ │ ├── test_engine_manifest.py │ │ │ ├── test_supported_devices.py │ │ │ └── test_version.py │ │ ├── morphing │ │ │ ├── __snapshots__ │ │ │ │ ├── test_morphable_targets │ │ │ │ │ └── test_post_morphable_targets_200.json │ │ │ │ └── test_synthesis_morphing │ │ │ │ │ └── test_post_synthesis_morphing_422.json │ │ │ ├── test_morphable_targets.py │ │ │ └── test_synthesis_morphing.py │ │ ├── portal_page │ │ │ ├── __snapshots__ │ │ │ │ └── test_get_root.ambr │ │ │ └── test_get_root.py │ │ ├── preset │ │ │ ├── __snapshots__ │ │ │ │ ├── test_add_preset │ │ │ │ │ ├── test_post_add_preset_200.json │ │ │ │ │ └── test_post_add_preset_422.json │ │ │ │ ├── test_delete_preset.ambr │ │ │ │ ├── test_delete_preset │ │ │ │ │ └── test_post_delete_preset_422.json │ │ │ │ ├── test_presets │ │ │ │ │ └── test_get_presets_200.json │ │ │ │ └── test_update_preset │ │ │ │ │ ├── test_post_update_preset_200.json │ │ │ │ │ └── test_post_update_preset_422.json │ │ │ ├── test_add_preset.py │ │ │ ├── test_delete_preset.py │ │ │ ├── test_presets.py │ │ │ └── test_update_preset.py │ │ ├── setting │ │ │ ├── __snapshots__ │ │ │ │ ├── test_setting_api.ambr │ │ │ │ └── test_setting_api │ │ │ │ │ └── test_post_setting_422.json │ │ │ └── test_setting_api.py │ │ ├── speaker │ │ │ ├── __snapshots__ │ │ │ │ ├── test_singer_info │ │ │ │ │ ├── test_get_singer_info_200.json │ │ │ │ │ ├── test_get_singer_info_404.json │ │ │ │ │ └── test_get_singer_info_with_url_200.json │ │ │ │ ├── test_singers │ │ │ │ │ └── test_get_singers_200.json │ │ │ │ ├── test_speaker_info │ │ │ │ │ ├── test_get_speaker_info_200.json │ │ │ │ │ ├── test_get_speaker_info_404.json │ │ │ │ │ └── test_get_speaker_info_with_url_200.json │ │ │ │ └── test_speakers │ │ │ │ │ └── test_get_speakers_200.json │ │ │ ├── test_singer_info.py │ │ │ ├── test_singers.py │ │ │ ├── test_speaker_info.py │ │ │ └── test_speakers.py │ │ ├── tts_pipeline │ │ │ ├── __snapshots__ │ │ │ │ ├── test_accent_phrases │ │ │ │ │ ├── test_post_accent_phrases_200.json │ │ │ │ │ └── test_post_accent_phrases_enable_katakana_english_200.json │ │ │ │ ├── test_audio_query │ │ │ │ │ ├── test_post_audio_query_200.json │ │ │ │ │ └── test_post_audio_query_enable_katakana_english_200.json │ │ │ │ ├── test_audio_query_from_preset │ │ │ │ │ ├── test_post_audio_query_from_preset_200.json │ │ │ │ │ └── test_post_audio_query_from_preset_422.json │ │ │ │ ├── test_cancellable_synthesis.ambr │ │ │ │ ├── test_connect_waves.ambr │ │ │ │ ├── test_connect_waves │ │ │ │ │ └── test_post_connect_waves_422.json │ │ │ │ ├── test_frame_synthesis.ambr │ │ │ │ ├── test_initialize_speaker.ambr │ │ │ │ ├── test_is_initialized_speaker │ │ │ │ │ └── test_get_is_initialized_speaker_200.json │ │ │ │ ├── test_mora_data │ │ │ │ │ └── test_post_mora_data_200.json │ │ │ │ ├── test_mora_length │ │ │ │ │ └── test_post_mora_length_200.json │ │ │ │ ├── test_mora_pitch │ │ │ │ │ └── test_post_mora_pitch_200.json │ │ │ │ ├── test_multi_synthesis.ambr │ │ │ │ ├── test_sing_frame_audio_query │ │ │ │ │ ├── test_post_sing_frame_audio_query_200.json │ │ │ │ │ └── test_post_sing_old_frame_audio_query_200.json │ │ │ │ ├── test_sing_frame_f0 │ │ │ │ │ └── test_post_sing_frame_f0_200.json │ │ │ │ ├── test_sing_frame_volume │ │ │ │ │ └── test_post_sing_frame_volume_200.json │ │ │ │ ├── test_synthesis.ambr │ │ │ │ └── test_validate_kana │ │ │ │ │ ├── test_post_validate_kana_200.json │ │ │ │ │ ├── test_post_validate_kana_400.json │ │ │ │ │ └── test_post_validate_kana_422.json │ │ │ ├── test_accent_phrases.py │ │ │ ├── test_audio │ │ │ │ ├── sample1.wav │ │ │ │ └── sample2.wav │ │ │ ├── test_audio_query.py │ │ │ ├── test_audio_query_from_preset.py │ │ │ ├── test_cancellable_synthesis.py │ │ │ ├── test_connect_waves.py │ │ │ ├── test_frame_synthesis.py │ │ │ ├── test_initialize_speaker.py │ │ │ ├── test_is_initialized_speaker.py │ │ │ ├── test_mora_data.py │ │ │ ├── test_mora_length.py │ │ │ ├── test_mora_pitch.py │ │ │ ├── test_multi_synthesis.py │ │ │ ├── test_sing_frame_audio_query.py │ │ │ ├── test_sing_frame_f0.py │ │ │ ├── test_sing_frame_volume.py │ │ │ ├── test_synthesis.py │ │ │ └── test_validate_kana.py │ │ ├── user_dict │ │ │ ├── __snapshots__ │ │ │ │ ├── test_import_user_dict.ambr │ │ │ │ ├── test_import_user_dict │ │ │ │ │ ├── test_post_import_user_dict_422.json │ │ │ │ │ └── test_post_import_user_dict_contents.json │ │ │ │ ├── test_user_dict_api │ │ │ │ │ └── test_get_user_dict_200.json │ │ │ │ ├── test_user_dict_word.ambr │ │ │ │ └── test_user_dict_word │ │ │ │ │ ├── test_delete_user_dict_word_422.json │ │ │ │ │ ├── test_delete_user_dict_word_contents.json │ │ │ │ │ ├── test_post_user_dict_word_200.json │ │ │ │ │ ├── test_post_user_dict_word_422.json │ │ │ │ │ ├── test_put_user_dict_word_422.json │ │ │ │ │ └── test_put_user_dict_word_contents.json │ │ │ ├── test_import_user_dict.py │ │ │ ├── test_user_dict_api.py │ │ │ └── test_user_dict_word.py │ │ └── utils.py │ ├── test_characters.py │ ├── test_disable_api.py │ ├── test_missing_core.py │ ├── test_missing_engine.py │ ├── test_openapi.py │ ├── test_sing.py │ └── test_tts.py ├── unit │ ├── library │ │ ├── test_library_manager.py │ │ └── vvlib_manifest.json │ ├── preset │ │ ├── presets-test-1.yaml │ │ ├── presets-test-2.yaml │ │ ├── presets-test-3.yaml │ │ ├── presets-test-4.yaml │ │ └── test_preset.py │ ├── resource_manager │ │ ├── test_resource_manager.py │ │ ├── with_filemap │ │ │ ├── dummy.png │ │ │ ├── dummy.txt │ │ │ ├── dummy.wav │ │ │ ├── dummy_same_binary.wav │ │ │ └── filemap.json │ │ └── without_filemap │ │ │ ├── dummy.png │ │ │ ├── dummy.txt │ │ │ ├── dummy.wav │ │ │ └── dummy_same_binary.wav │ ├── setting │ │ ├── setting-test-load-1.yaml │ │ ├── setting-test-load-2.yaml │ │ ├── setting-test-load-3.yaml │ │ └── test_setting.py │ ├── test_core_initializer.py │ ├── test_core_version_utility.py │ ├── test_metas_store.py │ ├── test_mock_tts_engine.py │ ├── test_utility │ │ ├── test_utility_hash_big_ndarray.py │ │ └── test_utility_round_floats.py │ ├── tools │ │ └── test_generate_docker_image_names.py │ ├── tts_pipeline │ │ ├── __snapshots__ │ │ │ └── test_tts_engine │ │ │ │ ├── test_mocked_create_accent_phrases_from_kana_output.json │ │ │ │ ├── test_mocked_create_accent_phrases_output.json │ │ │ │ ├── test_mocked_create_phoneme_and_f0_and_volume_output[query].json │ │ │ │ ├── test_mocked_create_volume_from_phoneme_and_f0_output.json │ │ │ │ ├── test_mocked_frame_synthesize_wave_output[wave].json │ │ │ │ ├── test_mocked_synthesize_wave_output.json │ │ │ │ ├── test_mocked_update_length_and_pitch_output.json │ │ │ │ ├── test_mocked_update_length_output.json │ │ │ │ └── test_mocked_update_pitch_output.json │ │ ├── test_connect_base64_waves.py │ │ ├── test_kana_converter.py │ │ ├── test_katakana_english.py │ │ ├── test_mora_mapping.py │ │ ├── test_njd_feature_processor.py │ │ ├── test_phoneme.py │ │ ├── test_text_analyzer.py │ │ ├── test_tts_engine.py │ │ ├── test_tts_engines.py │ │ ├── test_wave_synthesizer.py │ │ └── tts_utils.py │ ├── user_dict │ │ ├── test_user_dict.py │ │ ├── test_user_dict_model.py │ │ └── test_word_types.py │ └── utility │ │ └── test_text_utility.py └── utility.py ├── tools ├── __init__.py ├── build_and_push_multi_platform_docker_images.bash ├── check_release_build.py ├── codesign.bash ├── create_venv_and_generate_licenses.bash ├── generate_docker_image_names.py ├── generate_filemap.py ├── generate_licenses.py ├── get_cost_candidates.py ├── licenses │ ├── cuda │ │ └── EULA.txt │ ├── cudnn │ │ └── LICENSE │ ├── mpg123 │ │ └── COPYING │ ├── open_jtalk │ │ ├── COPYING │ │ ├── mecab-naist-jdic │ │ │ └── COPYING │ │ └── mecab │ │ │ └── COPYING │ └── world │ │ └── LICENSE.txt ├── make_docs.py ├── merge_engine_manifest.py ├── merge_update_infos.py ├── modify_pyinstaller.bash └── process_voicevox_resource.bash ├── uv.lock └── voicevox_engine ├── __init__.py ├── app ├── application.py ├── dependencies.py ├── global_exceptions.py ├── middlewares.py ├── openapi_schema.py └── routers │ ├── character.py │ ├── engine_info.py │ ├── library.py │ ├── morphing.py │ ├── portal_page.py │ ├── preset.py │ ├── setting.py │ ├── tts_pipeline.py │ └── user_dict.py ├── cancellable_engine.py ├── core ├── core_adapter.py ├── core_initializer.py └── core_wrapper.py ├── dev ├── core │ └── mock.py ├── song_engine │ └── mock.py └── tts_engine │ └── mock.py ├── engine_manifest.py ├── library ├── library_manager.py └── model.py ├── metas ├── Metas.py └── MetasStore.py ├── model.py ├── morphing ├── model.py └── morphing.py ├── preset ├── model.py └── preset_manager.py ├── resource_manager.py ├── setting ├── model.py └── setting_manager.py ├── tts_pipeline ├── audio_postprocessing.py ├── connect_base64_waves.py ├── kana_converter.py ├── katakana_english.py ├── model.py ├── mora_mapping.py ├── njd_feature_processor.py ├── phoneme.py ├── song_engine.py ├── text_analyzer.py └── tts_engine.py ├── user_dict ├── model.py ├── user_dict_manager.py └── user_dict_word.py └── utility ├── core_version_utility.py ├── error_utility.py ├── file_utility.py ├── path_utility.py ├── runtime_utility.py └── text_utility.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @VOICEVOX/main-reviewer 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/ISSUE_TEMPLATE/bugreport.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/featurerequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/ISSUE_TEMPLATE/featurerequest.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/prepare_python/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/actions/prepare_python/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/build-engine-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/build-engine-container.yml -------------------------------------------------------------------------------- /.github/workflows/build-engine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/build-engine.yml -------------------------------------------------------------------------------- /.github/workflows/build-latest-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/build-latest-dev.yml -------------------------------------------------------------------------------- /.github/workflows/build-latest-engine-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/build-latest-engine-container.yml -------------------------------------------------------------------------------- /.github/workflows/test-engine-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/test-engine-container.yml -------------------------------------------------------------------------------- /.github/workflows/test-engine-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/test-engine-package.yml -------------------------------------------------------------------------------- /.github/workflows/test-issue-freshness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/test-issue-freshness.yml -------------------------------------------------------------------------------- /.github/workflows/test-merge-gatekeeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/test-merge-gatekeeper.yml -------------------------------------------------------------------------------- /.github/workflows/test-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/test-security.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/Dockerfile -------------------------------------------------------------------------------- /LGPL_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/LGPL_LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/README.md -------------------------------------------------------------------------------- /docs/VOICEVOX音声合成エンジンとの連携.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/docs/VOICEVOX音声合成エンジンとの連携.md -------------------------------------------------------------------------------- /docs/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/res/マルチエンジン概念図.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/docs/res/マルチエンジン概念図.svg -------------------------------------------------------------------------------- /docs/リソースファイルのURLとfilemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/docs/リソースファイルのURLとfilemap.md -------------------------------------------------------------------------------- /docs/用語集.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/docs/用語集.md -------------------------------------------------------------------------------- /engine_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/engine_manifest.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/requirements-build.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/icons/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/icons/8.png -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/metas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/metas.json -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/policy.md: -------------------------------------------------------------------------------- 1 | dummy3 policy 2 | 3 | https://voicevox.hiroshiba.jp/ 4 | -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/portrait.png -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/portraits/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/portraits/8.png -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/voice_samples/8_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/voice_samples/8_001.wav -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/voice_samples/8_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/voice_samples/8_002.wav -------------------------------------------------------------------------------- /resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/voice_samples/8_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/35b2c544-660e-401e-b503-0e14c635303a/voice_samples/8_003.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/1.png -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/3.png -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/5.png -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/icons/7.png -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/metas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/metas.json -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/policy.md: -------------------------------------------------------------------------------- 1 | dummy2 policy 2 | 3 | https://voicevox.hiroshiba.jp/ 4 | -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/portrait.png -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/portraits/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/portraits/3.png -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/1_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/1_001.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/1_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/1_002.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/1_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/1_003.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/3_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/3_001.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/3_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/3_002.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/3_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/3_003.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/5_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/5_001.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/5_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/5_002.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/5_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/5_003.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/7_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/7_001.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/7_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/7_002.wav -------------------------------------------------------------------------------- /resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/7_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/voice_samples/7_003.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/0.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/2.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/4.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/icons/6.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/metas.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/policy.md: -------------------------------------------------------------------------------- 1 | dummy1 policy 2 | 3 | https://voicevox.hiroshiba.jp/ 4 | -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portrait.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/0.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/2.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/4.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/portraits/6.png -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/0_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/0_001.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/0_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/0_002.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/0_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/0_003.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/2_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/2_001.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/2_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/2_002.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/2_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/2_003.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/4_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/4_001.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/4_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/4_002.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/4_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/4_003.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/6_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/6_001.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/6_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/6_002.wav -------------------------------------------------------------------------------- /resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/6_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/voice_samples/6_003.wav -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/icons/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/icons/9.png -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/metas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/metas.json -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/policy.md: -------------------------------------------------------------------------------- 1 | dummy4 policy 2 | 3 | https://voicevox.hiroshiba.jp/ 4 | -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/portrait.png -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/voice_samples/9_001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/voice_samples/9_001.wav -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/voice_samples/9_002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/voice_samples/9_002.wav -------------------------------------------------------------------------------- /resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/voice_samples/9_003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/character_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/voice_samples/9_003.wav -------------------------------------------------------------------------------- /resources/default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/default.csv -------------------------------------------------------------------------------- /resources/engine_manifest_assets/dependency_licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/engine_manifest_assets/dependency_licenses.json -------------------------------------------------------------------------------- /resources/engine_manifest_assets/downloadable_libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/engine_manifest_assets/downloadable_libraries.json -------------------------------------------------------------------------------- /resources/engine_manifest_assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/engine_manifest_assets/icon.png -------------------------------------------------------------------------------- /resources/engine_manifest_assets/terms_of_service.md: -------------------------------------------------------------------------------- 1 | dummy teams of service -------------------------------------------------------------------------------- /resources/engine_manifest_assets/update_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/engine_manifest_assets/update_infos.json -------------------------------------------------------------------------------- /resources/setting_ui_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/resources/setting_ui_template.html -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/run.py -------------------------------------------------------------------------------- /run.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/run.spec -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | """VOICEVOX ENGINE のテスト。""" 2 | -------------------------------------------------------------------------------- /test/benchmark/engine_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/benchmark/engine_preparation.py -------------------------------------------------------------------------------- /test/benchmark/speed/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/benchmark/speed/character.py -------------------------------------------------------------------------------- /test/benchmark/speed/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/benchmark/speed/request.py -------------------------------------------------------------------------------- /test/benchmark/speed/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/benchmark/speed/utility.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters.ambr -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報をURLで取得できる[35b2c544-660e-401e-b503-0e14c635303a].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報をURLで取得できる[35b2c544-660e-401e-b503-0e14c635303a].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報をURLで取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報をURLで取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報をURLで取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報をURLで取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報を取得できる[35b2c544-660e-401e-b503-0e14c635303a].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報を取得できる[35b2c544-660e-401e-b503-0e14c635303a].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報を取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報を取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報を取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクターの情報を取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_喋れるキャラクター一覧が取得できる.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_喋れるキャラクター一覧が取得できる.json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報をURLで取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報をURLで取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報をURLで取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報をURLで取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報をURLで取得できる[b1a81618-b27b-40d2-b0ea-27a9ad408c4b].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報をURLで取得できる[b1a81618-b27b-40d2-b0ea-27a9ad408c4b].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報を取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報を取得できる[388f246b-8c41-4ac1-8e2d-5d79f3ff56d9].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報を取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報を取得できる[7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報を取得できる[b1a81618-b27b-40d2-b0ea-27a9ad408c4b].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクターの情報を取得できる[b1a81618-b27b-40d2-b0ea-27a9ad408c4b].json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_characters/test_歌えるキャラクター一覧が取得できる.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_characters/test_歌えるキャラクター一覧が取得できる.json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_missing_core/test_missing_core_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "バージョン 4.0.4 のコアが見つかりません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_missing_engine/test_missing_tts_engine_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "バージョン 4.0.4 のコアが見つかりません。" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_openapi/test_OpenAPIの形が変わっていないことを確認.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/__snapshots__/test_openapi/test_OpenAPIの形が変わっていないことを確認.json -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_sing.ambr: -------------------------------------------------------------------------------- 1 | # serializer version: 1 2 | # name: test_楽譜とキャラクターIDから音声を合成できる 3 | 'MD5:1c385210acba238994604a8cee96aee3' 4 | # --- 5 | -------------------------------------------------------------------------------- /test/e2e/__snapshots__/test_tts.ambr: -------------------------------------------------------------------------------- 1 | # serializer version: 1 2 | # name: test_テキストとキャラクターIDから音声を合成できる 3 | 'MD5:8f7ddc461c68542d4d8ef4cd5c54ca82' 4 | # --- 5 | -------------------------------------------------------------------------------- /test/e2e/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/conftest.py -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/__snapshots__/test_core_versions/test_get_core_versions_200.json: -------------------------------------------------------------------------------- 1 | [ 2 | "0.0.0" 3 | ] 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/__snapshots__/test_engine_manifest/test_get_engine_manifest_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/engine_info/__snapshots__/test_engine_manifest/test_get_engine_manifest_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/__snapshots__/test_supported_devices/test_get_supported_devices_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/engine_info/__snapshots__/test_supported_devices/test_get_supported_devices_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/__snapshots__/test_version/test_get_version_200.json: -------------------------------------------------------------------------------- 1 | "latest" 2 | -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/test_core_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/engine_info/test_core_versions.py -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/test_engine_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/engine_info/test_engine_manifest.py -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/test_supported_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/engine_info/test_supported_devices.py -------------------------------------------------------------------------------- /test/e2e/single_api/engine_info/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/engine_info/test_version.py -------------------------------------------------------------------------------- /test/e2e/single_api/morphing/__snapshots__/test_morphable_targets/test_post_morphable_targets_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/morphing/__snapshots__/test_morphable_targets/test_post_morphable_targets_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/morphing/__snapshots__/test_synthesis_morphing/test_post_synthesis_morphing_422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/morphing/__snapshots__/test_synthesis_morphing/test_post_synthesis_morphing_422.json -------------------------------------------------------------------------------- /test/e2e/single_api/morphing/test_morphable_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/morphing/test_morphable_targets.py -------------------------------------------------------------------------------- /test/e2e/single_api/morphing/test_synthesis_morphing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/morphing/test_synthesis_morphing.py -------------------------------------------------------------------------------- /test/e2e/single_api/portal_page/__snapshots__/test_get_root.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/portal_page/__snapshots__/test_get_root.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/portal_page/test_get_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/portal_page/test_get_root.py -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_add_preset/test_post_add_preset_200.json: -------------------------------------------------------------------------------- 1 | 9999 2 | -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_add_preset/test_post_add_preset_422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/__snapshots__/test_add_preset/test_post_add_preset_422.json -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_delete_preset.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/__snapshots__/test_delete_preset.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_delete_preset/test_post_delete_preset_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "削除対象のプリセットが存在しません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_presets/test_get_presets_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/__snapshots__/test_presets/test_get_presets_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_update_preset/test_post_update_preset_200.json: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/e2e/single_api/preset/__snapshots__/test_update_preset/test_post_update_preset_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "更新先のプリセットが存在しません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/preset/test_add_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/test_add_preset.py -------------------------------------------------------------------------------- /test/e2e/single_api/preset/test_delete_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/test_delete_preset.py -------------------------------------------------------------------------------- /test/e2e/single_api/preset/test_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/test_presets.py -------------------------------------------------------------------------------- /test/e2e/single_api/preset/test_update_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/preset/test_update_preset.py -------------------------------------------------------------------------------- /test/e2e/single_api/setting/__snapshots__/test_setting_api.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/setting/__snapshots__/test_setting_api.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/setting/__snapshots__/test_setting_api/test_post_setting_422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/setting/__snapshots__/test_setting_api/test_post_setting_422.json -------------------------------------------------------------------------------- /test/e2e/single_api/setting/test_setting_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/setting/test_setting_api.py -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_singer_info/test_get_singer_info_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/__snapshots__/test_singer_info/test_get_singer_info_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_singer_info/test_get_singer_info_404.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "該当するキャラクターが見つかりません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_singer_info/test_get_singer_info_with_url_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/__snapshots__/test_singer_info/test_get_singer_info_with_url_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_singers/test_get_singers_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/__snapshots__/test_singers/test_get_singers_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_speaker_info/test_get_speaker_info_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/__snapshots__/test_speaker_info/test_get_speaker_info_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_speaker_info/test_get_speaker_info_404.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "該当するキャラクターが見つかりません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_speaker_info/test_get_speaker_info_with_url_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/__snapshots__/test_speaker_info/test_get_speaker_info_with_url_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/__snapshots__/test_speakers/test_get_speakers_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/__snapshots__/test_speakers/test_get_speakers_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/test_singer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/test_singer_info.py -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/test_singers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/test_singers.py -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/test_speaker_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/test_speaker_info.py -------------------------------------------------------------------------------- /test/e2e/single_api/speaker/test_speakers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/speaker/test_speakers.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_accent_phrases/test_post_accent_phrases_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_accent_phrases/test_post_accent_phrases_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_accent_phrases/test_post_accent_phrases_enable_katakana_english_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_accent_phrases/test_post_accent_phrases_enable_katakana_english_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query/test_post_audio_query_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query/test_post_audio_query_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query/test_post_audio_query_enable_katakana_english_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query/test_post_audio_query_enable_katakana_english_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query_from_preset/test_post_audio_query_from_preset_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query_from_preset/test_post_audio_query_from_preset_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_audio_query_from_preset/test_post_audio_query_from_preset_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "該当するプリセットIDが見つかりません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_cancellable_synthesis.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_cancellable_synthesis.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_connect_waves.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_connect_waves.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_connect_waves/test_post_connect_waves_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "wavファイルが含まれていません" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_frame_synthesis.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_frame_synthesis.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_initialize_speaker.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_initialize_speaker.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_is_initialized_speaker/test_get_is_initialized_speaker_200.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_mora_data/test_post_mora_data_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_mora_data/test_post_mora_data_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_mora_length/test_post_mora_length_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_mora_length/test_post_mora_length_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_mora_pitch/test_post_mora_pitch_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_mora_pitch/test_post_mora_pitch_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_multi_synthesis.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_multi_synthesis.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_audio_query/test_post_sing_frame_audio_query_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_audio_query/test_post_sing_frame_audio_query_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_audio_query/test_post_sing_old_frame_audio_query_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_audio_query/test_post_sing_old_frame_audio_query_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_f0/test_post_sing_frame_f0_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_f0/test_post_sing_frame_f0_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_volume/test_post_sing_frame_volume_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_sing_frame_volume/test_post_sing_frame_volume_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_synthesis.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_synthesis.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_validate_kana/test_post_validate_kana_200.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_validate_kana/test_post_validate_kana_400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_validate_kana/test_post_validate_kana_400.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/__snapshots__/test_validate_kana/test_post_validate_kana_422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/__snapshots__/test_validate_kana/test_post_validate_kana_422.json -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_accent_phrases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_accent_phrases.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_audio/sample1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_audio/sample1.wav -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_audio/sample2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_audio/sample2.wav -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_audio_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_audio_query.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_audio_query_from_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_audio_query_from_preset.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_cancellable_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_cancellable_synthesis.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_connect_waves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_connect_waves.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_frame_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_frame_synthesis.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_initialize_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_initialize_speaker.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_is_initialized_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_is_initialized_speaker.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_mora_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_mora_data.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_mora_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_mora_length.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_mora_pitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_mora_pitch.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_multi_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_multi_synthesis.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_sing_frame_audio_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_sing_frame_audio_query.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_sing_frame_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_sing_frame_f0.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_sing_frame_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_sing_frame_volume.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_synthesis.py -------------------------------------------------------------------------------- /test/e2e/single_api/tts_pipeline/test_validate_kana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/tts_pipeline/test_validate_kana.py -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_import_user_dict.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_import_user_dict.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_import_user_dict/test_post_import_user_dict_422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_import_user_dict/test_post_import_user_dict_422.json -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_import_user_dict/test_post_import_user_dict_contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_import_user_dict/test_post_import_user_dict_contents.json -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_api/test_get_user_dict_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_user_dict_api/test_get_user_dict_200.json -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word.ambr -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_delete_user_dict_word_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "IDに該当するワードが見つかりませんでした" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_delete_user_dict_word_contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_delete_user_dict_word_contents.json -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_post_user_dict_word_200.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_post_user_dict_word_422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_post_user_dict_word_422.json -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_put_user_dict_word_422.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "UUIDに該当するワードが見つかりませんでした" 3 | } 4 | -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_put_user_dict_word_contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/__snapshots__/test_user_dict_word/test_put_user_dict_word_contents.json -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/test_import_user_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/test_import_user_dict.py -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/test_user_dict_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/test_user_dict_api.py -------------------------------------------------------------------------------- /test/e2e/single_api/user_dict/test_user_dict_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/user_dict/test_user_dict_word.py -------------------------------------------------------------------------------- /test/e2e/single_api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/single_api/utils.py -------------------------------------------------------------------------------- /test/e2e/test_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_characters.py -------------------------------------------------------------------------------- /test/e2e/test_disable_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_disable_api.py -------------------------------------------------------------------------------- /test/e2e/test_missing_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_missing_core.py -------------------------------------------------------------------------------- /test/e2e/test_missing_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_missing_engine.py -------------------------------------------------------------------------------- /test/e2e/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_openapi.py -------------------------------------------------------------------------------- /test/e2e/test_sing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_sing.py -------------------------------------------------------------------------------- /test/e2e/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/e2e/test_tts.py -------------------------------------------------------------------------------- /test/unit/library/test_library_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/library/test_library_manager.py -------------------------------------------------------------------------------- /test/unit/library/vvlib_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/library/vvlib_manifest.json -------------------------------------------------------------------------------- /test/unit/preset/presets-test-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/preset/presets-test-1.yaml -------------------------------------------------------------------------------- /test/unit/preset/presets-test-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/preset/presets-test-2.yaml -------------------------------------------------------------------------------- /test/unit/preset/presets-test-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/preset/presets-test-3.yaml -------------------------------------------------------------------------------- /test/unit/preset/presets-test-4.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/preset/test_preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/preset/test_preset.py -------------------------------------------------------------------------------- /test/unit/resource_manager/test_resource_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/test_resource_manager.py -------------------------------------------------------------------------------- /test/unit/resource_manager/with_filemap/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/with_filemap/dummy.png -------------------------------------------------------------------------------- /test/unit/resource_manager/with_filemap/dummy.txt: -------------------------------------------------------------------------------- 1 | DUMMY-TEXT 2 | -------------------------------------------------------------------------------- /test/unit/resource_manager/with_filemap/dummy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/with_filemap/dummy.wav -------------------------------------------------------------------------------- /test/unit/resource_manager/with_filemap/dummy_same_binary.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/with_filemap/dummy_same_binary.wav -------------------------------------------------------------------------------- /test/unit/resource_manager/with_filemap/filemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/with_filemap/filemap.json -------------------------------------------------------------------------------- /test/unit/resource_manager/without_filemap/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/without_filemap/dummy.png -------------------------------------------------------------------------------- /test/unit/resource_manager/without_filemap/dummy.txt: -------------------------------------------------------------------------------- 1 | DUMMY-TEXT 2 | -------------------------------------------------------------------------------- /test/unit/resource_manager/without_filemap/dummy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/without_filemap/dummy.wav -------------------------------------------------------------------------------- /test/unit/resource_manager/without_filemap/dummy_same_binary.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/resource_manager/without_filemap/dummy_same_binary.wav -------------------------------------------------------------------------------- /test/unit/setting/setting-test-load-1.yaml: -------------------------------------------------------------------------------- 1 | allow_origin: null 2 | cors_policy_mode: localapps 3 | -------------------------------------------------------------------------------- /test/unit/setting/setting-test-load-2.yaml: -------------------------------------------------------------------------------- 1 | allow_origin: null 2 | cors_policy_mode: all 3 | -------------------------------------------------------------------------------- /test/unit/setting/setting-test-load-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/setting/setting-test-load-3.yaml -------------------------------------------------------------------------------- /test/unit/setting/test_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/setting/test_setting.py -------------------------------------------------------------------------------- /test/unit/test_core_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/test_core_initializer.py -------------------------------------------------------------------------------- /test/unit/test_core_version_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/test_core_version_utility.py -------------------------------------------------------------------------------- /test/unit/test_metas_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/test_metas_store.py -------------------------------------------------------------------------------- /test/unit/test_mock_tts_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/test_mock_tts_engine.py -------------------------------------------------------------------------------- /test/unit/test_utility/test_utility_hash_big_ndarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/test_utility/test_utility_hash_big_ndarray.py -------------------------------------------------------------------------------- /test/unit/test_utility/test_utility_round_floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/test_utility/test_utility_round_floats.py -------------------------------------------------------------------------------- /test/unit/tools/test_generate_docker_image_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tools/test_generate_docker_image_names.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_accent_phrases_from_kana_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_accent_phrases_from_kana_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_accent_phrases_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_accent_phrases_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_phoneme_and_f0_and_volume_output[query].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_phoneme_and_f0_and_volume_output[query].json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_volume_from_phoneme_and_f0_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_create_volume_from_phoneme_and_f0_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_frame_synthesize_wave_output[wave].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_frame_synthesize_wave_output[wave].json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_synthesize_wave_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_synthesize_wave_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_update_length_and_pitch_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_update_length_and_pitch_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_update_length_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_update_length_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_update_pitch_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/__snapshots__/test_tts_engine/test_mocked_update_pitch_output.json -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_connect_base64_waves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_connect_base64_waves.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_kana_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_kana_converter.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_katakana_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_katakana_english.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_mora_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_mora_mapping.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_njd_feature_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_njd_feature_processor.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_phoneme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_phoneme.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_text_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_text_analyzer.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_tts_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_tts_engine.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_tts_engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_tts_engines.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/test_wave_synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/test_wave_synthesizer.py -------------------------------------------------------------------------------- /test/unit/tts_pipeline/tts_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/tts_pipeline/tts_utils.py -------------------------------------------------------------------------------- /test/unit/user_dict/test_user_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/user_dict/test_user_dict.py -------------------------------------------------------------------------------- /test/unit/user_dict/test_user_dict_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/user_dict/test_user_dict_model.py -------------------------------------------------------------------------------- /test/unit/user_dict/test_word_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/user_dict/test_word_types.py -------------------------------------------------------------------------------- /test/unit/utility/test_text_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/unit/utility/test_text_utility.py -------------------------------------------------------------------------------- /test/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/test/utility.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | """VOICEVOX ENGINEのCIで使用するスクリプト""" 2 | -------------------------------------------------------------------------------- /tools/build_and_push_multi_platform_docker_images.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/build_and_push_multi_platform_docker_images.bash -------------------------------------------------------------------------------- /tools/check_release_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/check_release_build.py -------------------------------------------------------------------------------- /tools/codesign.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/codesign.bash -------------------------------------------------------------------------------- /tools/create_venv_and_generate_licenses.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/create_venv_and_generate_licenses.bash -------------------------------------------------------------------------------- /tools/generate_docker_image_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/generate_docker_image_names.py -------------------------------------------------------------------------------- /tools/generate_filemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/generate_filemap.py -------------------------------------------------------------------------------- /tools/generate_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/generate_licenses.py -------------------------------------------------------------------------------- /tools/get_cost_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/get_cost_candidates.py -------------------------------------------------------------------------------- /tools/licenses/cuda/EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/cuda/EULA.txt -------------------------------------------------------------------------------- /tools/licenses/cudnn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/cudnn/LICENSE -------------------------------------------------------------------------------- /tools/licenses/mpg123/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/mpg123/COPYING -------------------------------------------------------------------------------- /tools/licenses/open_jtalk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/open_jtalk/COPYING -------------------------------------------------------------------------------- /tools/licenses/open_jtalk/mecab-naist-jdic/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/open_jtalk/mecab-naist-jdic/COPYING -------------------------------------------------------------------------------- /tools/licenses/open_jtalk/mecab/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/open_jtalk/mecab/COPYING -------------------------------------------------------------------------------- /tools/licenses/world/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/licenses/world/LICENSE.txt -------------------------------------------------------------------------------- /tools/make_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/make_docs.py -------------------------------------------------------------------------------- /tools/merge_engine_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/merge_engine_manifest.py -------------------------------------------------------------------------------- /tools/merge_update_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/merge_update_infos.py -------------------------------------------------------------------------------- /tools/modify_pyinstaller.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/modify_pyinstaller.bash -------------------------------------------------------------------------------- /tools/process_voicevox_resource.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/tools/process_voicevox_resource.bash -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/uv.lock -------------------------------------------------------------------------------- /voicevox_engine/__init__.py: -------------------------------------------------------------------------------- 1 | """VOICEVOX ENGINE。""" 2 | 3 | __version__ = "latest" 4 | -------------------------------------------------------------------------------- /voicevox_engine/app/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/application.py -------------------------------------------------------------------------------- /voicevox_engine/app/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/dependencies.py -------------------------------------------------------------------------------- /voicevox_engine/app/global_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/global_exceptions.py -------------------------------------------------------------------------------- /voicevox_engine/app/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/middlewares.py -------------------------------------------------------------------------------- /voicevox_engine/app/openapi_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/openapi_schema.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/character.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/engine_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/engine_info.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/library.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/morphing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/morphing.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/portal_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/portal_page.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/preset.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/setting.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/tts_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/tts_pipeline.py -------------------------------------------------------------------------------- /voicevox_engine/app/routers/user_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/app/routers/user_dict.py -------------------------------------------------------------------------------- /voicevox_engine/cancellable_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/cancellable_engine.py -------------------------------------------------------------------------------- /voicevox_engine/core/core_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/core/core_adapter.py -------------------------------------------------------------------------------- /voicevox_engine/core/core_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/core/core_initializer.py -------------------------------------------------------------------------------- /voicevox_engine/core/core_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/core/core_wrapper.py -------------------------------------------------------------------------------- /voicevox_engine/dev/core/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/dev/core/mock.py -------------------------------------------------------------------------------- /voicevox_engine/dev/song_engine/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/dev/song_engine/mock.py -------------------------------------------------------------------------------- /voicevox_engine/dev/tts_engine/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/dev/tts_engine/mock.py -------------------------------------------------------------------------------- /voicevox_engine/engine_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/engine_manifest.py -------------------------------------------------------------------------------- /voicevox_engine/library/library_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/library/library_manager.py -------------------------------------------------------------------------------- /voicevox_engine/library/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/library/model.py -------------------------------------------------------------------------------- /voicevox_engine/metas/Metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/metas/Metas.py -------------------------------------------------------------------------------- /voicevox_engine/metas/MetasStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/metas/MetasStore.py -------------------------------------------------------------------------------- /voicevox_engine/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/model.py -------------------------------------------------------------------------------- /voicevox_engine/morphing/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/morphing/model.py -------------------------------------------------------------------------------- /voicevox_engine/morphing/morphing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/morphing/morphing.py -------------------------------------------------------------------------------- /voicevox_engine/preset/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/preset/model.py -------------------------------------------------------------------------------- /voicevox_engine/preset/preset_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/preset/preset_manager.py -------------------------------------------------------------------------------- /voicevox_engine/resource_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/resource_manager.py -------------------------------------------------------------------------------- /voicevox_engine/setting/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/setting/model.py -------------------------------------------------------------------------------- /voicevox_engine/setting/setting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/setting/setting_manager.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/audio_postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/audio_postprocessing.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/connect_base64_waves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/connect_base64_waves.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/kana_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/kana_converter.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/katakana_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/katakana_english.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/model.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/mora_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/mora_mapping.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/njd_feature_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/njd_feature_processor.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/phoneme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/phoneme.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/song_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/song_engine.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/text_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/text_analyzer.py -------------------------------------------------------------------------------- /voicevox_engine/tts_pipeline/tts_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/tts_pipeline/tts_engine.py -------------------------------------------------------------------------------- /voicevox_engine/user_dict/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/user_dict/model.py -------------------------------------------------------------------------------- /voicevox_engine/user_dict/user_dict_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/user_dict/user_dict_manager.py -------------------------------------------------------------------------------- /voicevox_engine/user_dict/user_dict_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/user_dict/user_dict_word.py -------------------------------------------------------------------------------- /voicevox_engine/utility/core_version_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/utility/core_version_utility.py -------------------------------------------------------------------------------- /voicevox_engine/utility/error_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/utility/error_utility.py -------------------------------------------------------------------------------- /voicevox_engine/utility/file_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/utility/file_utility.py -------------------------------------------------------------------------------- /voicevox_engine/utility/path_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/utility/path_utility.py -------------------------------------------------------------------------------- /voicevox_engine/utility/runtime_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/utility/runtime_utility.py -------------------------------------------------------------------------------- /voicevox_engine/utility/text_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOICEVOX/voicevox_nemo_engine/HEAD/voicevox_engine/utility/text_utility.py --------------------------------------------------------------------------------