diff --git a/README.md b/README.md index e74c926e5..7bed025f6 100644 --- a/README.md +++ b/README.md @@ -369,7 +369,7 @@ curl -s \ > audio.wav ``` -スコアの`key`は MIDI 番号です。 +楽譜の`key`は MIDI 番号です。 `lyric`は歌詞で、任意の文字列を指定できますが、エンジンによってはひらがな・カタカナ1モーラ以外の文字列はエラーになることがあります。 フレームレートはデフォルトが 93.75Hz で、エンジンマニフェストの`frame_rate`で取得できます。 1つ目のノートは無音である必要があります。 diff --git "a/test/e2e/__snapshots__/test_openapi/test_OpenAPI\343\201\256\345\275\242\343\201\214\345\244\211\343\202\217\343\201\243\343\201\246\343\201\204\343\201\252\343\201\204\343\201\223\343\201\250\343\202\222\347\242\272\350\252\215.json" "b/test/e2e/__snapshots__/test_openapi/test_OpenAPI\343\201\256\345\275\242\343\201\214\345\244\211\343\202\217\343\201\243\343\201\246\343\201\204\343\201\252\343\201\204\343\201\223\343\201\250\343\202\222\347\242\272\350\252\215.json" index 4001df4f2..6b3d253eb 100644 --- "a/test/e2e/__snapshots__/test_openapi/test_OpenAPI\343\201\256\345\275\242\343\201\214\345\244\211\343\202\217\343\201\243\343\201\246\343\201\204\343\201\252\343\201\204\343\201\223\343\201\250\343\202\222\347\242\272\350\252\215.json" +++ "b/test/e2e/__snapshots__/test_openapi/test_OpenAPI\343\201\256\345\275\242\343\201\214\345\244\211\343\202\217\343\201\243\343\201\246\343\201\204\343\201\252\343\201\204\343\201\223\343\201\250\343\202\222\347\242\272\350\252\215.json" @@ -2607,7 +2607,7 @@ "description": "Validation Error" } }, - "summary": "スコア・歌唱音声合成用のクエリからフレームごとの音量を得る", + "summary": "楽譜・歌唱音声合成用のクエリからフレームごとの音量を得る", "tags": [ "クエリ編集" ] diff --git a/test/e2e/__snapshots__/test_sing.ambr b/test/e2e/__snapshots__/test_sing.ambr index befdd6cca..0f1bbef0a 100644 --- a/test/e2e/__snapshots__/test_sing.ambr +++ b/test/e2e/__snapshots__/test_sing.ambr @@ -1,4 +1,4 @@ # serializer version: 1 -# name: test_スコアとキャラクターIDから音声を合成できる +# name: test_楽譜とキャラクターIDから音声を合成できる 'MD5:1c385210acba238994604a8cee96aee3' # --- diff --git a/test/e2e/test_sing.py b/test/e2e/test_sing.py index dedd8351b..517d7a13c 100644 --- a/test/e2e/test_sing.py +++ b/test/e2e/test_sing.py @@ -8,10 +8,10 @@ from syrupy.assertion import SnapshotAssertion -def test_スコアとキャラクターIDから音声を合成できる( +def test_楽譜とキャラクターIDから音声を合成できる( client: TestClient, snapshot: SnapshotAssertion ) -> None: - # スコアとキャラクター ID から FrameAudioQuery を生成する + # 楽譜とキャラクター ID から FrameAudioQuery を生成する score = { "notes": [ {"key": None, "frame_length": 10, "lyric": ""}, diff --git a/voicevox_engine/app/routers/tts_pipeline.py b/voicevox_engine/app/routers/tts_pipeline.py index 989dd70c5..ec6d868d2 100644 --- a/voicevox_engine/app/routers/tts_pipeline.py +++ b/voicevox_engine/app/routers/tts_pipeline.py @@ -414,7 +414,7 @@ def sing_frame_audio_query( @router.post( "/sing_frame_volume", tags=["クエリ編集"], - summary="スコア・歌唱音声合成用のクエリからフレームごとの音量を得る", + summary="楽譜・歌唱音声合成用のクエリからフレームごとの音量を得る", ) def sing_frame_volume( score: Score, diff --git a/voicevox_engine/tts_pipeline/tts_engine.py b/voicevox_engine/tts_pipeline/tts_engine.py index ea0f250ff..c3c9c2b72 100644 --- a/voicevox_engine/tts_pipeline/tts_engine.py +++ b/voicevox_engine/tts_pipeline/tts_engine.py @@ -606,7 +606,7 @@ def create_sing_phoneme_and_f0_and_volume( score: Score, style_id: StyleId, ) -> tuple[list[FramePhoneme], list[float], list[float]]: - """歌声合成用のスコア・スタイルIDに基づいてフレームごとの音素・音高・音量を生成する""" + """歌声合成用の楽譜・スタイルIDに基づいてフレームごとの音素・音高・音量を生成する""" notes = score.notes (