-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Segu <[email protected]> Co-authored-by: Hiroshiba <[email protected]>
- Loading branch information
1 parent
bf7448d
commit 1223a09
Showing
7 changed files
with
152 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...lib/src/main/java/jp/hiroshiba/voicevoxcore/SpeakerSupportPermittedSynthesisMorphing.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package jp.hiroshiba.voicevoxcore; | ||
|
||
import com.google.gson.annotations.Expose; | ||
|
||
/** モーフィング機能への対応。 */ | ||
public enum SpeakerSupportPermittedSynthesisMorphing { | ||
/** 全て許可。 */ | ||
@Expose | ||
ALL, | ||
|
||
/** 同じ話者内でのみ許可。 */ | ||
@Expose | ||
SELF_ONLY, | ||
|
||
/** 全て禁止。 */ | ||
@Expose | ||
NOTHING, | ||
} |
18 changes: 18 additions & 0 deletions
18
...x_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/SpeakerSupportedFeatures.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package jp.hiroshiba.voicevoxcore; | ||
|
||
import com.google.gson.annotations.Expose; | ||
import com.google.gson.annotations.SerializedName; | ||
import jakarta.annotation.Nonnull; | ||
|
||
/** 話者の対応機能。 */ | ||
public class SpeakerSupportedFeatures { | ||
/** モーフィング機能への対応。 */ | ||
@SerializedName("permitted_synthesis_morphing") | ||
@Expose | ||
@Nonnull | ||
SpeakerSupportPermittedSynthesisMorphing permittedSynthesisMorphing; | ||
|
||
SpeakerSupportedFeatures() { | ||
this.permittedSynthesisMorphing = SpeakerSupportPermittedSynthesisMorphing.NOTHING; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters