-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support verbio speech * wip * update speech version * update verb specification
- Loading branch information
Showing
8 changed files
with
212 additions
and
15 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
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,14 @@ | ||
module.exports = [ | ||
{ name: 'US English', value: 'en-US' }, | ||
{ name: 'British English', value: 'en-GB' }, | ||
{ name: 'LATAM Spanish', value: 'en-USes-419' }, | ||
{ name: 'Spanish', value: 'es' }, | ||
{ name: 'Catalan', value: 'ca-ES', version: 'v2' }, | ||
{ name: 'Brazilian Portuguese', value: 'pt-BR' }, | ||
{ name: 'French', value: 'fr', version: 'v1' }, | ||
{ name: 'Canadian French', value: 'fr-CA', version: 'v1' }, | ||
{ name: 'German', value: 'de', version: 'v1' }, | ||
{ name: 'Italian', value: 'it', version: 'v1' }, | ||
{ name: 'Turkish', value: 'tr', version: 'v1' }, | ||
{ name: 'Japanese', value: 'ja', version: 'v1' }, | ||
]; |
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,62 @@ | ||
module.exports = [ | ||
{ | ||
value: 'en-US', | ||
name: 'US English', | ||
voices: [ | ||
{ | ||
value: 'tommy_en_us', | ||
name: 'Tommy-Male', | ||
}, | ||
], | ||
}, | ||
{ | ||
value: 'es-ES', | ||
name: 'Castilian Spanish', | ||
voices: [ | ||
{ | ||
value: 'david_es_es', | ||
name: 'David-Male', | ||
}, | ||
], | ||
}, | ||
{ | ||
value: 'es-PE', | ||
name: 'Peruvian Spanish', | ||
voices: [ | ||
{ | ||
value: 'miguel_es_pe', | ||
name: 'Miguel-Male', | ||
}, | ||
], | ||
}, | ||
{ | ||
value: 'es-PE', | ||
name: 'Peruvian Spanish', | ||
voices: [ | ||
{ | ||
value: 'luz_es_pe', | ||
name: 'Luz-Female', | ||
}, | ||
], | ||
}, | ||
{ | ||
value: 'pt-BR', | ||
name: 'Brazilian Portuguese', | ||
voices: [ | ||
{ | ||
value: 'bel_pt_br', | ||
name: 'Bel-Female', | ||
}, | ||
], | ||
}, | ||
{ | ||
value: 'ca-ES', | ||
name: 'Catalan', | ||
voices: [ | ||
{ | ||
value: 'anna_ca', | ||
name: 'Anna-Female', | ||
}, | ||
], | ||
}, | ||
]; |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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