-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathChatterbox integration.json
More file actions
1162 lines (1162 loc) · 27.2 KB
/
Chatterbox integration.json
File metadata and controls
1162 lines (1162 loc) · 27.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"id": "4a7cdb14-f535-4923-861b-59ba2c7ee043",
"revision": 0,
"last_node_id": 72,
"last_link_id": 121,
"nodes": [
{
"id": 46,
"type": "ChatterBoxEngineNode",
"pos": [
-1610,
2620
],
"size": [
270,
178
],
"flags": {},
"order": 0,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "TTS_engine",
"type": "TTS_ENGINE",
"links": [
101
]
}
],
"properties": {
"cnr_id": "tts_audio_suite",
"ver": "ee95cad1f155eceb1442723c7f351949b30361e3",
"Node name for S&R": "ChatterBoxEngineNode"
},
"widgets_values": [
"English",
"auto",
0.5,
0.8,
0.5,
"hmm ,, {seg} hmm ,,"
],
"color": "#222",
"bgcolor": "#000"
},
{
"id": 43,
"type": "PrimitiveStringMultiline",
"pos": [
-2260,
2140
],
"size": [
620,
1100
],
"flags": {},
"order": 1,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "STRING",
"type": "STRING",
"links": [
104
]
}
],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.40",
"Node name for S&R": "PrimitiveStringMultiline",
"widget_ue_connectable": {}
},
"widgets_values": [
"Welcome to our multilingual storytelling demonstration. Today we explore the advanced capabilities of modern text-to-speech technology with seamless character and language switching.\n\n[Narrator] In a bustling international café, conversations flow between languages and voices.[pause:2s] Let me tell you about what happened yesterday.\n\n[crestfallen_original] I was sitting at my usual table when I overheard [Alice] Guten Morgen! Wie geht es Ihnen heute? [crestfallen_original] The German woman's voice was so pleasant that [Bob] Hei! Hvordan har du det i dag? [crestfallen_original] Even the Norwegian gentleman couldn't help but join the conversation.\n\n[pause:1.5s][Alice] It's fascinating how [en:Alice] we can switch between languages so naturally, [de:Alice] aber manchmal ist es schwierig [en:Alice] to find the right words in each language.\n\n[crestfallen_original] The conversation continued as [Girl] Oh, I completely understand! [crestfallen_original] said a young woman nearby, [Girl] Sometimes I think in English but [de:Girl] meine Träume sind auf Deutsch [Girl] and it gets quite confusing!\n\n[pause:2s][Cowboy] Well partner, [crestfallen_original] interrupted a distinctive voice from the corner, [Cowboy] back in my day we had to learn languages the hard way. [crestfallen_original] The man's weathered face told stories of [Cowboy] countless adventures across different lands and cultures.\n\n[Bob] Det er veldig interessant! [crestfallen_original] he replied thoughtfully, [no:Bob] Men nå med moderne teknologi [en:Bob] we can preserve and share these voices across the world.\n\n[pause:1s][Old Man] You know, [crestfallen_original] began an elderly gentleman, [Old Man] I've lived through the transition from [no:Old Man] når vi bare hadde radio [en:Old Man] to this incredible digital age where [Old Man] voices can be recreated and shared instantly.\n\n[Alice] Das stimmt! [crestfallen_original] Alice nodded enthusiastically, [de:Alice] Meine Großmutter würde das nicht glauben [en:Alice] if she could see how we communicate today. [Alice] The technology bridges generations and cultures.\n\n[pause:2.5s][crestfallen_original] As the afternoon progressed, the conversation became even more animated. [Girl] Did you hear about the new developments? [crestfallen_original] she asked excitedly, [Girl] They say we can now capture the essence of any voice and [Girl] make it speak in multiple languages perfectly!\n\n[Cowboy] That's mighty impressive, [crestfallen_original] the cowboy drawled, [Cowboy] reminds me of those old radio shows where [Cowboy] one person would voice multiple characters. [crestfallen_original] His eyes twinkled with nostalgia.\n\n[pause:1s][Bob] Nøyaktig! [crestfallen_original] Bob agreed, [no:Bob] Det er som å ha et teaterensemble [en:Bob] right in your pocket. [Bob] The possibilities for storytelling are endless.\n\n[no:Alice] Det er utrolig! [crestfallen_original] Alice switched to Norwegian, [no:Alice] Vi kan nå fortelle historier på så mange måter [en:Alice] and reach audiences we never imagined before.\n\n[pause:3s][Narrator] The café slowly emptied as evening approached, but the conversation had sparked something special. [crestfallen_original] Each person left with [Old Man] a new appreciation for how technology [crestfallen_original] was preserving and expanding [Girl] the beautiful diversity of human speech [crestfallen_original] while bringing people together across linguistic barriers.\n\n[Cowboy] Until we meet again, partners, [crestfallen_original] the cowboy tipped his hat, [Cowboy] remember that every voice tells a story worth hearing.\n\n[pause:1.5s][Alice] Auf Wiedersehen! [Bob] Ha det bra! [Girl] See you all soon! [Old Man] Take care everyone! [crestfallen_original] And with that, the multicultural symphony of voices faded into the evening air.\n\n[pause:2s][Narrator] This is the power of modern voice technology. [pause:1s] Not just converting text to speech, but preserving the rich tapestry of human expression across languages, cultures, and generations. [pause:1s] Every voice matters, every language counts, and every story deserves to be heard.\n\n[pause:3s][crestfallen_original] The future of communication is here, and it speaks with the voices of humanity itself."
]
},
{
"id": 61,
"type": "MarkdownNote",
"pos": [
-1630,
2880
],
"size": [
350,
360
],
"flags": {},
"order": 2,
"mode": 0,
"inputs": [],
"outputs": [],
"properties": {},
"widgets_values": [
"# 🛡️ ChatterBox Crash Protection System\n\nChatterBox has a bug where text shorter than ~21 characters causes CUDA tensor errors that can crash ComfyUI. The crash protection system automatically pads short text segments to prevent these crashes.\n\n## How It Works\n\n- **Template**: `\"hmm ,, {seg} hmm ,,\"` (default)\n- **Trigger**: Activates when text segments are too short\n- **Process**: Replaces `{seg}` with original text: `\"hello\"` → `\"hmm ,, hello hmm ,,\"`\n\n## Configuration\n\nSet the crash protection template on the **ChatterBox Engine** node:\n\n- **Default**: `\"hmm ,, {seg} hmm ,,\"`\n- **Custom**: `\"Well, {seg}\"`, `\"...ummmmm {seg}\"`, `\"{seg}... yes... {seg}\"`\n- **Disable**: Leave empty string `\"\"`"
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 66,
"type": "Reroute",
"pos": [
-1430.9703369140625,
2433.110107421875
],
"size": [
75,
26
],
"flags": {},
"order": 18,
"mode": 0,
"inputs": [
{
"name": "",
"type": "*",
"widget": {
"name": "value"
},
"link": 109
}
],
"outputs": [
{
"name": "",
"type": "STRING",
"links": [
110
]
}
],
"properties": {
"showOutputText": false,
"horizontal": false
}
},
{
"id": 53,
"type": "Reroute",
"pos": [
-1435.39404296875,
2489.834228515625
],
"size": [
75,
26
],
"flags": {},
"order": 15,
"mode": 0,
"inputs": [
{
"name": "",
"type": "*",
"link": 104
}
],
"outputs": [
{
"name": "",
"type": "STRING",
"links": []
}
],
"properties": {
"showOutputText": false,
"horizontal": false
}
},
{
"id": 62,
"type": "MarkdownNote",
"pos": [
-2632.264404296875,
2189.00732421875
],
"size": [
340,
240
],
"flags": {},
"order": 3,
"mode": 0,
"inputs": [],
"outputs": [],
"properties": {},
"widgets_values": [
"## **❗ ❗ This is a LONG example with multi-character switching + language switching + pause system.**\n\nBe warned that connecting this text will take a long time to generate and will download and load multiple ChatterBox models "
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 54,
"type": "Reroute",
"pos": [
-1101.890625,
2431.052490234375
],
"size": [
75,
26
],
"flags": {},
"order": 20,
"mode": 0,
"inputs": [
{
"name": "",
"type": "*",
"widget": {
"name": "value"
},
"link": 110
}
],
"outputs": [
{
"name": "",
"type": "STRING",
"links": [
108
]
}
],
"properties": {
"showOutputText": false,
"horizontal": false
}
},
{
"id": 57,
"type": "MarkdownNote",
"pos": [
-939.9619750976562,
1553.8792724609375
],
"size": [
340,
240
],
"flags": {},
"order": 4,
"mode": 0,
"inputs": [],
"outputs": [],
"properties": {},
"widgets_values": [
"# **FROM v4 and up!**\n\nUnified nodes:\n- 🎤 **TTS Text**: Direct text-to-speech module \n- 🔄 **Voice Changer**: Voice transformation \n- 📺 **TTS SRT**: Subtitle-compatible TTS output \n\nThese nodes are now **engine-agnostic**, meaning you can plug in **Chatterbox**, **F5**, or future engines seamlessly.\n\n🔄 **Voice Changer** supports both **Chatterbox** and **VCR**, giving you more versatility in voice manipulation.\n"
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 56,
"type": "MarkdownNote",
"pos": [
-1363.54345703125,
1558.387451171875
],
"size": [
340,
240
],
"flags": {},
"order": 5,
"mode": 0,
"inputs": [],
"outputs": [],
"properties": {},
"widgets_values": [
"# 🎭 **Chatterbox Voice Tips**\n\n1- For **Chatterbox**, you can connect any audio from a **Load Audio Core** node directly for **zero-shot voice cloning**\n \n2- or use the **🎭 Character Voices** feature to load a narrator from your `Voices` folder.\n\n🎭 **Character Voices** can also be connected to the **Voice Changer** for dynamic voice cloning in Voice Changer when using Chatterbox Engine.\n"
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 60,
"type": "MarkdownNote",
"pos": [
-446.62701416015625,
1535.305419921875
],
"size": [
450,
250
],
"flags": {},
"order": 6,
"mode": 0,
"inputs": [],
"outputs": [],
"properties": {},
"widgets_values": [
"# Tips\n\n## General Use (Chatterbox TTS and Voice Agents):\n\n- The default settings (`exaggeration=0.5`, `cfg_weight=0.5`) work well for most prompts.\n- If the reference speaker has a fast speaking style, lowering `cfg_weight` to around `0.3` can improve pacing.\n\n## Expressive or Dramatic Speech:\n\n- Try lower `cfg_weight` values (e.g. ~`0.3`) and increase `exaggeration` to around `0.7` or higher.\n- Higher `exaggeration` tends to speed up speech; reducing `cfg_weight` helps compensate with slower, more deliberate pacing.\n"
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 35,
"type": "LoadAudio",
"pos": [
-1265.9169921875,
2734.278076171875
],
"size": [
270,
136
],
"flags": {},
"order": 7,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "AUDIO",
"type": "AUDIO",
"links": [
116
]
}
],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.39",
"Node name for S&R": "LoadAudio",
"widget_ue_connectable": {}
},
"widgets_values": [
"Clint_Eastwood CC3 (enhanced2).wav",
null,
null
]
},
{
"id": 34,
"type": "LoadAudio",
"pos": [
-1264.150146484375,
3006.59716796875
],
"size": [
270,
136
],
"flags": {},
"order": 8,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "AUDIO",
"type": "AUDIO",
"links": [
115
]
}
],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.39",
"Node name for S&R": "LoadAudio",
"widget_ue_connectable": {}
},
"widgets_values": [
"Aerith_original.wav",
null,
null
]
},
{
"id": 52,
"type": "Reroute",
"pos": [
-813.7050170898438,
2613.963623046875
],
"size": [
75,
26
],
"flags": {},
"order": 14,
"mode": 0,
"inputs": [
{
"name": "",
"type": "*",
"link": 101
}
],
"outputs": [
{
"name": "",
"type": "TTS_ENGINE",
"links": [
102,
121
]
}
],
"properties": {
"showOutputText": false,
"horizontal": false
}
},
{
"id": 47,
"type": "UnifiedTTSTextNode",
"pos": [
-657.041015625,
1982.4339599609375
],
"size": [
400,
324
],
"flags": {},
"order": 23,
"mode": 0,
"inputs": [
{
"name": "TTS_engine",
"type": "TTS_ENGINE",
"link": 102
},
{
"name": "opt_narrator",
"shape": 7,
"type": "*",
"link": 114
},
{
"name": "text",
"type": "STRING",
"widget": {
"name": "text"
},
"link": 108
}
],
"outputs": [
{
"name": "audio",
"type": "AUDIO",
"links": [
93
]
},
{
"name": "generation_info",
"type": "STRING",
"links": [
100
]
}
],
"properties": {
"cnr_id": "tts_audio_suite",
"ver": "ee95cad1f155eceb1442723c7f351949b30361e3",
"Node name for S&R": "UnifiedTTSTextNode"
},
"widgets_values": [
"Hello! This is unified TTS with character switching support.\n[Alice] Hi there! I'm Alice speaking with the selected TTS engine.\n[Bob] And I'm Bob! This works with any TTS engine.\nBack to the main narrator voice for the conclusion.",
"none",
1552347952,
"fixed",
true,
400,
"auto",
100,
true,
0
],
"color": "#223",
"bgcolor": "#335"
},
{
"id": 51,
"type": "CharacterVoicesNode",
"pos": [
-1180.4798583984375,
2132.017822265625
],
"size": [
232.96051025390625,
146.08004760742188
],
"flags": {},
"order": 9,
"mode": 0,
"inputs": [
{
"name": "opt_audio_input",
"shape": 7,
"type": "AUDIO",
"link": null
}
],
"outputs": [
{
"name": "opt_narrator",
"type": "NARRATOR_VOICE",
"links": [
114
]
},
{
"name": "character_name",
"type": "STRING",
"links": null
}
],
"properties": {
"cnr_id": "tts_audio_suite",
"ver": "ee95cad1f155eceb1442723c7f351949b30361e3",
"Node name for S&R": "CharacterVoicesNode"
},
"widgets_values": [
"voices_examples/David_Attenborough CC3.wav",
""
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 26,
"type": "LoadAudio",
"pos": [
-1154.0604248046875,
1933.3072509765625
],
"size": [
240,
136
],
"flags": {},
"order": 10,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "AUDIO",
"type": "AUDIO",
"links": []
}
],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.39",
"Node name for S&R": "LoadAudio",
"widget_ue_connectable": {}
},
"widgets_values": [
"Tony.mp3",
null,
null
]
},
{
"id": 65,
"type": "PrimitiveStringMultiline",
"pos": [
-1967.4971923828125,
1812.1561279296875
],
"size": [
310.7043762207031,
224.9416046142578
],
"flags": {},
"order": 11,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "STRING",
"type": "STRING",
"links": [
109
]
}
],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.40",
"Node name for S&R": "PrimitiveStringMultiline",
"widget_ue_connectable": {}
},
"widgets_values": [
"On Tuesdays, the pigeons held parliament. They debated the ethics of breadcrumbs and the metaphysics of flight. One particularly philosophical pigeon named Thistle believed gravity was just a suggestion. He once floated for three minutes straight, fueled by sheer conviction and a gust of rebellious wind."
]
},
{
"id": 69,
"type": "CharacterVoicesNode",
"pos": [
-935.7373046875,
2755.75244140625
],
"size": [
232.96051025390625,
146.08004760742188
],
"flags": {},
"order": 12,
"mode": 0,
"inputs": [
{
"name": "opt_audio_input",
"shape": 7,
"type": "AUDIO",
"link": null
}
],
"outputs": [
{
"name": "opt_narrator",
"type": "NARRATOR_VOICE",
"links": [
118
]
},
{
"name": "character_name",
"type": "STRING",
"links": null
}
],
"properties": {
"cnr_id": "tts_audio_suite",
"ver": "ee95cad1f155eceb1442723c7f351949b30361e3",
"Node name for S&R": "CharacterVoicesNode"
},
"widgets_values": [
"voices_examples/Clint_Eastwood CC3 (enhanced2).wav",
""
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 71,
"type": "Reroute",
"pos": [
-948.1080322265625,
2925.384765625
],
"size": [
75,
26
],
"flags": {},
"order": 16,
"mode": 0,
"inputs": [
{
"name": "",
"type": "*",
"link": 116
}
],
"outputs": [
{
"name": "",
"type": "AUDIO",
"links": null
}
],
"properties": {
"showOutputText": false,
"horizontal": false
},
"color": "#432",
"bgcolor": "#653"
},
{
"id": 70,
"type": "Reroute",
"pos": [
-947.085693359375,
2964.313720703125
],
"size": [
75,
26
],
"flags": {},
"order": 17,
"mode": 0,
"inputs": [
{
"name": "",
"type": "*",
"link": 115
}
],
"outputs": [
{
"name": "",
"type": "AUDIO",
"links": null
}
],
"properties": {
"showOutputText": false,
"horizontal": false
},
"color": "#432",
"bgcolor": "#653"
},
{
"id": 49,
"type": "PreviewAny",
"pos": [
-240.49069213867188,
3012.72412109375
],
"size": [
493.8410949707031,
203.50367736816406
],
"flags": {},
"order": 22,
"mode": 0,
"inputs": [
{
"name": "source",
"type": "*",
"link": 99
}
],
"outputs": [],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.57",
"Node name for S&R": "PreviewAny"
},
"widgets_values": []
},
{
"id": 48,
"type": "UnifiedVoiceChangerNode",
"pos": [
-572.5202026367188,
2863.7392578125
],
"size": [
273.111328125,
98
],
"flags": {},
"order": 19,
"mode": 0,
"inputs": [
{
"name": "TTS_engine",
"type": "TTS_ENGINE",
"link": 121
},
{
"name": "source_audio",
"type": "*",
"link": 118
},
{
"name": "narrator_target",
"type": "*",
"link": 117
}
],
"outputs": [
{
"name": "converted_audio",
"type": "AUDIO",
"links": [
96
]
},
{
"name": "conversion_info",
"type": "STRING",
"links": [
99
]
}
],
"properties": {
"cnr_id": "tts_audio_suite",
"ver": "ee95cad1f155eceb1442723c7f351949b30361e3",
"Node name for S&R": "UnifiedVoiceChangerNode"
},
"widgets_values": [
1
],
"color": "#223",
"bgcolor": "#335"
},
{
"id": 68,
"type": "CharacterVoicesNode",
"pos": [
-935.257568359375,
3076.891357421875
],
"size": [
232.96051025390625,
146.08004760742188
],
"flags": {},
"order": 13,
"mode": 0,
"inputs": [
{
"name": "opt_audio_input",
"shape": 7,
"type": "AUDIO",
"link": null
}
],
"outputs": [
{
"name": "opt_narrator",
"type": "NARRATOR_VOICE",
"links": [
117
]
},
{
"name": "character_name",
"type": "STRING",
"links": null
}
],
"properties": {
"cnr_id": "tts_audio_suite",
"ver": "ee95cad1f155eceb1442723c7f351949b30361e3",
"Node name for S&R": "CharacterVoicesNode"
},
"widgets_values": [
"voices_examples/female/female_02.wav",
""
],
"color": "#432",
"bgcolor": "#653"
},
{
"id": 36,
"type": "PreviewAudio",
"pos": [
-248.290771484375,
2867.75439453125
],
"size": [
499.4865417480469,
88
],
"flags": {},
"order": 21,
"mode": 0,
"inputs": [
{
"name": "audio",
"type": "AUDIO",
"link": 96
}
],
"outputs": [],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.39",
"Node name for S&R": "PreviewAudio",
"widget_ue_connectable": {}
},
"widgets_values": [],
"color": "#2a363b",
"bgcolor": "#3f5159"
},
{
"id": 15,
"type": "PreviewAudio",
"pos": [
-192.89453125,
1985.134521484375
],
"size": [
560,
88
],
"flags": {},
"order": 24,
"mode": 0,
"inputs": [
{
"name": "audio",
"type": "AUDIO",
"link": 93
}
],
"outputs": [],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.39",
"Node name for S&R": "PreviewAudio",
"widget_ue_connectable": {}
},
"widgets_values": [],
"color": "#2a363b",
"bgcolor": "#3f5159"
},
{
"id": 50,
"type": "PreviewAny",
"pos": [
-188.43724060058594,
2147.539794921875
],
"size": [
552.7586059570312,
174.5865936279297
],
"flags": {},
"order": 25,
"mode": 0,
"inputs": [
{
"name": "source",
"type": "*",
"link": 100
}
],
"outputs": [],
"properties": {
"cnr_id": "comfy-core",
"ver": "0.3.57",
"Node name for S&R": "PreviewAny"
},
"widgets_values": []
}
],
"links": [
[
93,
47,
0,
15,
0,
"AUDIO"
],
[
96,
48,
0,
36,
0,
"AUDIO"
],
[
99,
48,
1,
49,
0,
"*"
],
[
100,
47,
1,
50,
0,
"*"
],
[
101,
46,
0,
52,
0,
"*"
],
[
102,
52,
0,
47,
0,
"TTS_ENGINE"
],
[
104,
43,
0,
53,