Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Side by Side Diff: chrome/browser/resources/chromeos/speech_synthesis/manifest.json

Issue 167893003: Update tts to include new voices (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fix Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 // NOTE: Keep two json files in this directory in sync. The only difference 2 // NOTE: Keep two json files in this directory in sync. The only difference
3 // should be incognito:split in Guest mode version. 3 // should be incognito:split in Guest mode version.
4 "name": "Chrome OS built-in text-to-speech extension", 4 "name": "US English Female Text-to-speech (by Google)",
Nico 2014/02/19 00:45:50 "US English"? Looks like it has many more language
Zachary Kuznia 2014/02/19 01:02:48 I'll change this to the old name
5 "version": "0.0.2", 5 "version": "2.1.1",
6 "description": "Text-to-speech (TTS) voice extension using Native Client techn ology.", 6 "description": "This is a high-quality text-to-speech (TTS) voice extension th at runs in your browser using Native Client technology.",
7 "manifest_version": 2, 7 "manifest_version": 2,
8 "background": { 8 "background": {
9 "scripts": [ 9 "scripts": [
10 "voice_data_hmm_de-DE.js", 10 "voice_data_hmm_de-DE_2.js",
11 "voice_data_hmm_en-GB.js", 11 "voice_data_hmm_en-GB_2.js",
12 "voice_data_hmm_en-US.js", 12 "voice_data_hmm_en-IN_2.js",
13 "voice_data_hmm_es-ES.js", 13 "voice_data_hmm_en-US_2.js",
14 "voice_data_hmm_fr-FR.js", 14 "voice_data_hmm_es-ES_2.js",
15 "voice_data_hmm_it-IT.js", 15 "voice_data_hmm_es-US_2.js",
16 "voice_data_hmm_fr-FR_2.js",
17 "voice_data_hmm_it-IT_2.js",
18 "voice_data_hmm_ko-KR_2.js",
19 "voice_data_hmm_pt-BR_2.js",
Nico 2014/02/19 00:45:50 I don't see these files checked in, I suppose that
Zachary Kuznia 2014/02/19 01:02:48 This has to be different from the old one so that
16 "tts_controller.js", 20 "tts_controller.js",
17 "tts_main.js" 21 "tts_main.js"
18 ] 22 ]
19 }, 23 },
20 "permissions": [ 24 "permissions": [
21 "ttsEngine", 25 "ttsEngine",
22 "unlimitedStorage" 26 "unlimitedStorage"
23 ], 27 ],
24 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDlKEJseIIbKFyX0BCWNYOWlPEUt1IxBv IoW1PI7DTmipbwyVr3s2EprewYdtr9hCO5Yzs5w/ai1Xnhet5PLAsMje6ZP0Kvq0tlVfaYF8oQHBPF+i fx31RBT7Cn+ZVKLq1fxrwzY063GVhW+CAr06Ar8YRFXtFoC4FHlUNDIoSb4wIDAQAB", 28 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDlKEJseIIbKFyX0BCWNYOWlPEUt1IxBv IoW1PI7DTmipbwyVr3s2EprewYdtr9hCO5Yzs5w/ai1Xnhet5PLAsMje6ZP0Kvq0tlVfaYF8oQHBPF+i fx31RBT7Cn+ZVKLq1fxrwzY063GVhW+CAr06Ar8YRFXtFoC4FHlUNDIoSb4wIDAQAB",
25 "tts_engine": { 29 "tts_engine": {
26 "voices": [ 30 "voices": [
27 { 31 {
28 "voice_name": "Chrome OS French", 32 "voice_name": "German Female TTS (by Google)",
33 "lang": "de-DE",
34 "gender": "female",
35 "event_types": [ "start", "word", "end", "error" ]
36 },
37 {
38 "voice_name": "GB English Female TTS (by Google)",
39 "lang": "en-GB",
40 "gender": "female",
41 "event_types": [ "start", "word", "end", "error" ]
42 },
43 {
44 "voice_name": "Indian English Female TTS (by Google)",
45 "lang": "en-IN",
46 "gender": "female",
47 "event_types": [ "start", "word", "end", "error" ]
48 },
49 {
50 "voice_name": "US English Female TTS (by Google)",
51 "lang": "en-US",
52 "gender": "female",
53 "event_types": [ "start", "word", "end", "error" ]
54 },
55 {
56 "voice_name": "Spanish Female TTS (by Google)",
57 "lang": "es-ES",
58 "gender": "female",
59 "event_types": [ "start", "word", "end", "error" ]
60 },
61 {
62 "voice_name": "US Spanish Female TTS (by Google)",
63 "lang": "es-US",
64 "gender": "female",
65 "event_types": [ "start", "word", "end", "error" ]
66 },
67 {
68 "voice_name": "French Female TTS (by Google)",
29 "lang": "fr-FR", 69 "lang": "fr-FR",
30 "gender": "female", 70 "gender": "female",
31 "event_types": [ "start", "word", "end", "error" ] 71 "event_types": [ "start", "word", "end", "error" ]
32 }, 72 },
33 { 73 {
34 "voice_name": "Chrome OS German", 74 "voice_name": "Italian Female TTS (by Google)",
35 "lang": "de-DE",
36 "gender": "female",
37 "event_types": [ "start", "word", "end", "error" ]
38 },
39 {
40 "voice_name": "Chrome OS Italian",
41 "lang": "it-IT", 75 "lang": "it-IT",
42 "gender": "female", 76 "gender": "female",
43 "event_types": [ "start", "word", "end", "error" ] 77 "event_types": [ "start", "word", "end", "error" ]
44 }, 78 },
45 { 79 {
46 "voice_name": "Chrome OS US English", 80 "voice_name": "Korean Female TTS (by Google)",
47 "lang": "en-US", 81 "lang": "ko-KR",
48 "gender": "female", 82 "gender": "female",
49 "event_types": [ "start", "word", "end", "error" ] 83 "event_types": [ "start", "word", "end", "error" ]
50 }, 84 },
51 { 85 {
52 "voice_name": "Chrome OS British English", 86 "voice_name": "Brazilian Portuguese Female TTS (by Google)",
53 "lang": "en-GB", 87 "lang": "pt-BR",
54 "gender": "female",
55 "event_types": [ "start", "word", "end", "error" ]
56 },
57 {
58 "voice_name": "Chrome OS Spanish",
59 "lang": "es-ES",
60 "gender": "female", 88 "gender": "female",
61 "event_types": [ "start", "word", "end", "error" ] 89 "event_types": [ "start", "word", "end", "error" ]
62 } 90 }
63 ] 91 ]
92 },
93 "icons": {
94 "128": "google-tts-128.png",
95 "16": "google-tts-16.png",
96 "256": "google-tts-256.png",
97 "48": "google-tts-48.png"
64 } 98 }
65 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698