Debdeep Banerjee commited on
Commit
2aef696
·
1 Parent(s): b358a50

fix: completely change voices for Dorothy, Harold, and Marcus

Browse files
Files changed (1) hide show
  1. pipeline/profiles.py +13 -15
pipeline/profiles.py CHANGED
@@ -16,7 +16,6 @@ PROFILES: dict[str, dict] = {
16
  "display_name": "Lumi",
17
  "label": "Lumi · Your Guide",
18
  "portrait": "lumi.png",
19
- # af_sky: bright and youthful. Speed 1.1 for energetic guide feel.
20
  "kokoro_voice": "af_sky",
21
  "kokoro_speed": 1.1,
22
  "edge_voice": "en-US-JennyNeural",
@@ -31,14 +30,14 @@ PROFILES: dict[str, dict] = {
31
  "display_name": "Dorothy",
32
  "label": "Dorothy · Elderly Black woman, 70",
33
  "portrait": "dorothy.png",
34
- # af_bella: warm and round. Speed 1.0 for natural elderly warmth.
35
- "kokoro_voice": "af_bella",
36
  "kokoro_speed": 1.0,
37
- "edge_voice": "en-US-MichelleNeural",
38
  "rate": "-2%",
39
  "pitch": "+0Hz",
40
  "description": "a wise, nurturing elderly woman with a warm and caring heart",
41
- "voice": "af_bella", "speed": 1.0,
42
  },
43
 
44
  "harold": {
@@ -46,14 +45,14 @@ PROFILES: dict[str, dict] = {
46
  "display_name": "Harold",
47
  "label": "Harold · Elderly White man, 70",
48
  "portrait": "harold.png",
49
- # Use a distinct British male voice from Edge for clear elderly gentleman feel.
50
  "kokoro_voice": None,
51
  "kokoro_speed": 1.0,
52
- "edge_voice": "en-GB-ThomasNeural",
53
- "rate": "-5%",
54
  "pitch": "-2Hz",
55
- "description": "a gentle, patient, and distinguished elderly British gentleman",
56
- "voice": "en-GB-ThomasNeural", "speed": 1.0,
57
  },
58
 
59
  "marcus": {
@@ -61,14 +60,14 @@ PROFILES: dict[str, dict] = {
61
  "display_name": "Marcus",
62
  "label": "Marcus · Young Black man, 25",
63
  "portrait": "marcus.png",
64
- # Use DavisNeural: energetic and youthful.
65
  "kokoro_voice": None,
66
  "kokoro_speed": 1.0,
67
- "edge_voice": "en-US-DavisNeural",
68
- "rate": "+8%",
69
  "pitch": "+0Hz",
70
  "description": "a warm, energetic young man who is upbeat, encouraging, and friendly",
71
- "voice": "en-US-DavisNeural", "speed": 1.0,
72
  },
73
 
74
  "priya": {
@@ -90,7 +89,6 @@ PROFILES: dict[str, dict] = {
90
  "display_name": "Carlos",
91
  "label": "Carlos · Middle-aged Latino man, 45",
92
  "portrait": "carlos.png",
93
- # ChristopherNeural: calm, knowledgeable, and professional advisor voice.
94
  "kokoro_voice": None,
95
  "kokoro_speed": 1.0,
96
  "edge_voice": "en-US-ChristopherNeural",
 
16
  "display_name": "Lumi",
17
  "label": "Lumi · Your Guide",
18
  "portrait": "lumi.png",
 
19
  "kokoro_voice": "af_sky",
20
  "kokoro_speed": 1.1,
21
  "edge_voice": "en-US-JennyNeural",
 
30
  "display_name": "Dorothy",
31
  "label": "Dorothy · Elderly Black woman, 70",
32
  "portrait": "dorothy.png",
33
+ # Completely new voice: Monica (US) - warmer and more mature.
34
+ "kokoro_voice": None,
35
  "kokoro_speed": 1.0,
36
+ "edge_voice": "en-US-MonicaNeural",
37
  "rate": "-2%",
38
  "pitch": "+0Hz",
39
  "description": "a wise, nurturing elderly woman with a warm and caring heart",
40
+ "voice": "en-US-MonicaNeural", "speed": 1.0,
41
  },
42
 
43
  "harold": {
 
45
  "display_name": "Harold",
46
  "label": "Harold · Elderly White man, 70",
47
  "portrait": "harold.png",
48
+ # Completely new voice: William (Australian) - calm, distinguished, elderly gentleman feel.
49
  "kokoro_voice": None,
50
  "kokoro_speed": 1.0,
51
+ "edge_voice": "en-AU-WilliamNeural",
52
+ "rate": "-4%",
53
  "pitch": "-2Hz",
54
+ "description": "a gentle, patient, and distinguished elderly gentleman",
55
+ "voice": "en-AU-WilliamNeural", "speed": 1.0,
56
  },
57
 
58
  "marcus": {
 
60
  "display_name": "Marcus",
61
  "label": "Marcus · Young Black man, 25",
62
  "portrait": "marcus.png",
63
+ # Completely new voice: Ryan (British) - youthful, clean, and energetic.
64
  "kokoro_voice": None,
65
  "kokoro_speed": 1.0,
66
+ "edge_voice": "en-GB-RyanNeural",
67
+ "rate": "+4%",
68
  "pitch": "+0Hz",
69
  "description": "a warm, energetic young man who is upbeat, encouraging, and friendly",
70
+ "voice": "en-GB-RyanNeural", "speed": 1.0,
71
  },
72
 
73
  "priya": {
 
89
  "display_name": "Carlos",
90
  "label": "Carlos · Middle-aged Latino man, 45",
91
  "portrait": "carlos.png",
 
92
  "kokoro_voice": None,
93
  "kokoro_speed": 1.0,
94
  "edge_voice": "en-US-ChristopherNeural",