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
|
<?php return [
'version' => '1.0',
'info' => ['style' => 'ROA', 'product' => 'AIPodcast', 'version' => '2025-02-28'],
'directories' => ['PodcastTaskResultQuery', 'PodcastTaskSubmit'],
'components' => [
'schemas' => [],
],
'apis' => [
'PodcastTaskResultQuery' => [
'summary' => 'Query the result of an AI podcast generation task.',
'path' => '/podcast/task',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'consumes' => ['application/json'],
'produces' => ['application/json'],
'operationType' => 'read',
'systemTags' => ['operationType' => 'none', 'riskType' => 'none', 'chargeType' => 'free'],
'parameters' => [
[
'name' => 'workspaceId',
'in' => 'formData',
'schema' => ['description' => 'The ID of the Model Studio workspace.', 'type' => 'string', 'required' => true, 'example' => 'llm-ep8ba0dr6seiddri', 'title' => ''],
],
[
'name' => 'taskId',
'in' => 'formData',
'schema' => ['description' => 'The unique task identifier.', 'type' => 'string', 'required' => true, 'example' => '63c4e0eaab3b4c0db208ecafa990e8d1'."\n", 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response body.',
'title' => 'Schema of Response ',
'type' => 'object',
'properties' => [
'code' => ['description' => 'The response status code.', 'type' => 'string', 'example' => '"success"', 'title' => ''],
'message' => ['description' => 'The response message.', 'type' => 'string', 'example' => '"success"', 'title' => ''],
'requestId' => ['description' => 'The request ID, used to trace an API call.', 'type' => 'string', 'example' => 'C38F034D-7F36-531C-95AC-0C752F80E840', 'title' => ''],
'success' => ['description' => 'Indicates whether the request was successful. Valid values: `true` and `false`.', 'type' => 'boolean', 'default' => 'true', 'example' => 'True', 'title' => ''],
'httpStatusCode' => ['description' => 'The HTTP status code.', 'type' => 'string', 'example' => '200', 'title' => ''],
'data' => [
'description' => 'The response data.',
'type' => 'object',
'properties' => [
'taskId' => ['description' => 'The unique task ID.', 'type' => 'string', 'example' => '63c4e0eaab3b4c0db208ecafa990e8d1'."\n", 'title' => ''],
'taskStatus' => ['description' => 'The task status.'."\n"
."\n"
.'- `PENDING`: The task is pending.'."\n"
."\n"
.'- `RUNNING`: The task is running.'."\n"
."\n"
.'- `SUCCEEDED`: The task was successful.'."\n"
."\n"
.'- `INVALID`: The task is invalid.'."\n"
."\n"
.'- `FAILED`: The task failed.'."\n"
."\n"
.'- `UNKNOWN`: The task status is unknown.', 'type' => 'string', 'example' => 'SUCCEEDED', 'title' => ''],
'script' => ['description' => 'The podcast script, without interactive enhancements.', 'type' => 'string', 'example' => '"[{\\"text\\": \\"听众朋友们,晚上好!今天咱们聊聊最近大家都很关心的一个话题——甲流来袭,我们该怎么应对?\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"嗯,这个话题确实挺重要。甲流听起来有点吓人,但其实只要科学防护,就不用太担心。\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"没错,先给大家科普一下,甲流全名叫甲型流感,是由甲型流感病毒感染引起的流行性感冒。跟普通感冒比起来,它的症状更重,传播也更快。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"哦?那具体都有哪些症状呢?我记得好像会发烧吧。\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"对的,高烧是甲流最常见的症状之一,体温可能高达39到40度。除了发烧,还会有头痛、全身肌肉和关节疼痛、乏力、食欲不振等症状。有些人甚至会出现恶心、呕吐的情况。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"听起来确实不太好受。不过婴儿的症状是不是会稍微不一样?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"是的,婴儿可能会表现为高烧、烦躁、哭闹增加,还有吃奶减少等。所以家长要特别注意观察孩子的状态。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"嗯,说到这,我突然想到一个问题:甲流是怎么传播的呢?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"主要通过呼吸道传播和接触传播。比如近距离接触甲流病人或者高度疑似病人后,就可能被感染。另外,患者的分泌物也可能携带病毒,直接或间接接触这些分泌物也会有风险。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"哦,原来如此。那易感人群有哪些呢?是不是老年人和小孩更容易中招?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"没错,老人、孕妇、小孩都是易感人群。此外,患有慢性疾病、肥胖或者免疫功能低下的人群也要格外小心。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"听你这么一说,感觉预防真的很重要啊。那有没有什么有效的预防措施呢?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"当然有!最有效的方法就是接种疫苗。每年9到10月份接种流感疫苗,保护效力可以持续到冬春流感高发季节。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"嗯,除了打疫苗,还有什么其他办法吗?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"保持良好的卫生习惯也很重要。比如勤洗手,尽量避免用手接触眼、鼻、口。同时,避免在拥挤的场所逗留,减少人际接触。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"嗯,这点我特别赞同。现在很多人都习惯了戴口罩,这其实也是个很好的防护措施。\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"没错,戴口罩能有效阻断飞沫传播。另外,增强免疫力也很关键。保持充足的睡眠、均衡的饮食和适量的运动都能帮助身体更好地抵抗病毒。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"听你这么一说,感觉生活中的小细节真的很重要。比如咳嗽或打喷嚏时,用纸巾、手肘遮住口鼻,就能减少病毒传播。\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"对,还有别忘了保持环境清洁和通风。家里、教室每天勤开窗通风,必要时进行消毒。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"看来这些看似简单的小事,其实都能起到大作用。那万一真的不幸中招了,该怎么办呢?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"如果确诊是甲型流感,一定要隔离、卧床休息,并遵医嘱用药。比如磷酸奥司他韦胶囊就是一种常用的抗病毒药物。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"哦,原来还有专门针对甲流的药。不过如果症状比较严重,比如持续高烧或者呼吸困难,那就得赶紧去医院了。\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"没错,千万别拖延病情。医院可以排查是否有并发症,比如肺炎之类的。总之,早发现、早治疗很重要。\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"总结一下,甲流虽然可怕,但只要我们做好防护,及时就医,就没啥好怕的。大家记住了吗?\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"记住了!接种疫苗、勤洗手、戴口罩、增强免疫力,还有必要时及时就医。希望大家都能健健康康地度过这个季节!\\", \\"speaker\\": \\"speaker-1\\"}, {\\"text\\": \\"好了,今天的节目就到这里。感谢大家收听,我们下期再见!\\", \\"speaker\\": \\"speaker-2\\"}, {\\"text\\": \\"再见!\\", \\"speaker\\": \\"speaker-1\\"}]"', 'title' => ''],
'resultUrl' => ['description' => 'URLs for the analysis results. The links are valid for one hour.', 'type' => 'any', 'example' => '{"audio":"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/audio.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748853849&Signature=e1KlRgmjAjuUkPVWIEhoRbn4X0w%3D","script":"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/script.txt?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748853511&Signature=th5sI%2BB1FZuQ6tRLg4qGGX1fevI%3D"}', 'title' => ''],
'extraResult' => ['description' => 'Detailed information such as the segmented podcast audio.'."\n"
."\n"
.'The `extraResult` object has the following structure:'."\n"
."\n"
.'```'."\n"
.'- `extraResult.segment` (list[float]): The start and end timestamps (in milliseconds) for each audio segment.'."\n"
.'- `extraResult.segmentDetails.index` (int): The index of the audio segment.'."\n"
.'- `extraResult.segmentDetails.time` (list[float]): The start and end timestamps (in milliseconds) of the audio segment.'."\n"
.'- `extraResult.segmentDetails.audioSegmentUrl` (str): A downloadable link for the audio segment. The link is valid for one hour.'."\n"
.'- `extraResult.segmentDetails.script.speaker` (str): The speaker of the audio segment.'."\n"
.'- `extraResult.segmentDetails.script.text` (str): The transcript of the audio segment.'."\n"
.'```', 'type' => 'any', 'example' => '{'."\n"
.' "segment": ['."\n"
.' ['."\n"
.' 0.0,'."\n"
.' 6370.0'."\n"
.' ],'."\n"
.' ['."\n"
.' 6370.0,'."\n"
.' 15020.0'."\n"
.' ],'."\n"
.' ['."\n"
.' 15020.0,'."\n"
.' 26071.791'."\n"
.' ],'."\n"
.' ['."\n"
.' 26071.791,'."\n"
.' 31001.791'."\n"
.' ],'."\n"
.' ['."\n"
.' 31001.791,'."\n"
.' 45646.582'."\n"
.' ],'."\n"
.' ['."\n"
.' 45646.582,'."\n"
.' 50816.582'."\n"
.' ],'."\n"
.' ['."\n"
.' 50816.582,'."\n"
.' 59501.418'."\n"
.' ],'."\n"
.' ['."\n"
.' 59501.418,'."\n"
.' 63631.418'."\n"
.' ],'."\n"
.' ['."\n"
.' 63631.418,'."\n"
.' 77161.25'."\n"
.' ],'."\n"
.' ['."\n"
.' 77161.25,'."\n"
.' 84691.25'."\n"
.' ],'."\n"
.' ['."\n"
.' 84691.25,'."\n"
.' 93623.086'."\n"
.' ],'."\n"
.' ['."\n"
.' 93623.086,'."\n"
.' 99233.086'."\n"
.' ],'."\n"
.' ['."\n"
.' 99233.086,'."\n"
.' 108894.875'."\n"
.' ],'."\n"
.' ['."\n"
.' 108894.875,'."\n"
.' 111864.875'."\n"
.' ],'."\n"
.' ['."\n"
.' 111864.875,'."\n"
.' 121678.664'."\n"
.' ],'."\n"
.' ['."\n"
.' 121678.664,'."\n"
.' 128448.664'."\n"
.' ],'."\n"
.' ['."\n"
.' 128448.664,'."\n"
.' 139774.45'."\n"
.' ],'."\n"
.' ['."\n"
.' 139774.45,'."\n"
.' 149824.45'."\n"
.' ],'."\n"
.' ['."\n"
.' 149824.45,'."\n"
.' 157966.25'."\n"
.' ],'."\n"
.' ['."\n"
.' 157966.25,'."\n"
.' 164576.25'."\n"
.' ],'."\n"
.' ['."\n"
.' 164576.25,'."\n"
.' 175432.08'."\n"
.' ],'."\n"
.' ['."\n"
.' 175432.08,'."\n"
.' 184482.08'."\n"
.' ],'."\n"
.' ['."\n"
.' 184482.08,'."\n"
.' 192451.88'."\n"
.' ],'."\n"
.' ['."\n"
.' 192451.88,'."\n"
.' 199781.88'."\n"
.' ],'."\n"
.' ['."\n"
.' 199781.88,'."\n"
.' 208151.88'."\n"
.' ],'."\n"
.' ['."\n"
.' 208151.88,'."\n"
.' 212601.88'."\n"
.' ],'."\n"
.' ['."\n"
.' 212601.88,'."\n"
.' 213131.88'."\n"
.' ]'."\n"
.' ],'."\n"
.' "segmentDetails": ['."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_0.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=cWk2X%2B7MtbIEm%2Fu1mwVts59hpwU%3D",'."\n"
.' "index": 0,'."\n"
.' "time": ['."\n"
.' 0.0,'."\n"
.' 6370.0'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "听众朋友们,晚上好!今天咱们聊聊最近大家都很关心的一个话题——甲流来袭,我们该怎么应对?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_1.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=CFGULg%2FJ8I3htf0YvVL5mz7FLXg%3D",'."\n"
.' "index": 1,'."\n"
.' "time": ['."\n"
.' 6370.0,'."\n"
.' 15020.0'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "嗯,这个话题确实挺重要。甲流听起来有点吓人,但其实只要科学防护,就不用太担心。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_2.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=Q2Ck9DLRqsvJ1Bt6aqMh0rnPPDQ%3D",'."\n"
.' "index": 2,'."\n"
.' "time": ['."\n"
.' 15020.0,'."\n"
.' 26071.791'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "没错,先给大家科普一下,甲流全名叫甲型流感,是由甲型流感病毒感染引起的流行性感冒。(对)跟普通感冒比起来,它的症状更重,传播也更快。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_3.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=vPwoJQnhKv2Ti4aovV6v3lP4V5w%3D",'."\n"
.' "index": 3,'."\n"
.' "time": ['."\n"
.' 26071.791,'."\n"
.' 31001.791'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "哦?那具体都有哪些症状呢?我记得好像会发烧吧。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_4.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=fUh04j4iLyYG4GV5wQ1f5GkFvJE%3D",'."\n"
.' "index": 4,'."\n"
.' "time": ['."\n"
.' 31001.791,'."\n"
.' 45646.582'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "对的,高烧是甲流最常见的症状之一,体温可能高达39到40度。(嗯)除了发烧,还会有头痛、全身肌肉和关节疼痛、乏力、食欲不振等症状。有些人甚至会出现恶心、呕吐的情况。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_5.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=v5c0d%2Bk4OmjmRRFVCKZ5JhDOq5o%3D",'."\n"
.' "index": 5,'."\n"
.' "time": ['."\n"
.' 45646.582,'."\n"
.' 50816.582'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "听起来确实不太好受。不过婴儿的症状是不是会稍微不一样?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_6.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=ZeyAxNn8wbRFXK4qXPJMKKGhIl0%3D",'."\n"
.' "index": 6,'."\n"
.' "time": ['."\n"
.' 50816.582,'."\n"
.' 59501.418'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "是的,婴儿可能会表现为高烧、烦躁、哭闹增加,还有吃奶减少等。(确实)所以家长要特别注意观察孩子的状态。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_7.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=UEyc%2BbAqgIa1C3SS4EjtNegTDTg%3D",'."\n"
.' "index": 7,'."\n"
.' "time": ['."\n"
.' 59501.418,'."\n"
.' 63631.418'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "嗯,说到这,我突然想到一个问题:甲流是怎么传播的呢?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_8.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=JYlAsSnLJNMFDEv9Bm5hSf4SrNY%3D",'."\n"
.' "index": 8,'."\n"
.' "time": ['."\n"
.' 63631.418,'."\n"
.' 77161.25'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "主要通过呼吸道传播和接触传播。(没错)比如近距离接触甲流病人或者高度疑似病人后,就可能被感染。另外,患者的分泌物也可能携带病毒,直接或间接接触这些分泌物也会有风险。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_9.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=eHG1QMbfsSSqfHwAD79Xs531kFw%3D",'."\n"
.' "index": 9,'."\n"
.' "time": ['."\n"
.' 77161.25,'."\n"
.' 84691.25'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "哦,原来如此。那易感人群有哪些呢?是不是老年人和小孩更容易中招?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_10.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=rElcCYlOaChj%2BJWT94c7%2F%2FMlTUo%3D",'."\n"
.' "index": 10,'."\n"
.' "time": ['."\n"
.' 84691.25,'."\n"
.' 93623.086'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "没错,老人、孕妇、小孩都是易感人群。(真的)此外,患有慢性疾病、肥胖或者免疫功能低下的人群也要格外小心。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_11.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=dBjOIrNqHSiF3RCrbsWyLtrE6Ow%3D",'."\n"
.' "index": 11,'."\n"
.' "time": ['."\n"
.' 93623.086,'."\n"
.' 99233.086'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "听你这么一说,感觉预防真的很重要啊。那有没有什么有效的预防措施呢?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_12.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=EJ0qCENMhqIUEu6UZ0RTP0cdibQ%3D",'."\n"
.' "index": 12,'."\n"
.' "time": ['."\n"
.' 99233.086,'."\n"
.' 108894.875'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "当然有!最有效的方法就是接种疫苗。(对)每年9到10月份接种流感疫苗,保护效力可以持续到冬春流感高发季节。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_13.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=nH02zWlwtrLK2fcskFbRvuMTD3s%3D",'."\n"
.' "index": 13,'."\n"
.' "time": ['."\n"
.' 108894.875,'."\n"
.' 111864.875'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "嗯,除了打疫苗,还有什么其他办法吗?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_14.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=9y3D2UGy6zg77gFWP4qFtHkF5S4%3D",'."\n"
.' "index": 14,'."\n"
.' "time": ['."\n"
.' 111864.875,'."\n"
.' 121678.664'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "保持良好的卫生习惯也很重要。比如勤洗手,尽量避免用手接触眼、鼻、口。(没错)同时,避免在拥挤的场所逗留,减少人际接触。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_15.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=EbwEURP7u9HpwrsrPC2Thwd4XUg%3D",'."\n"
.' "index": 15,'."\n"
.' "time": ['."\n"
.' 121678.664,'."\n"
.' 128448.664'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "嗯,这点我特别赞同。现在很多人都习惯了戴口罩,这其实也是个很好的防护措施。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_16.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=4rj5XQD0SaspVCj7QmGFrIGyACA%3D",'."\n"
.' "index": 16,'."\n"
.' "time": ['."\n"
.' 128448.664,'."\n"
.' 139774.45'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "没错,戴口罩能有效阻断飞沫传播。另外,增强免疫力也很关键。(嗯)保持充足的睡眠、均衡的饮食和适量的运动都能帮助身体更好地抵抗病毒。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_17.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=1aGlxcVI8r3ac7kY%2FHAt2%2Bg2Jss%3D",'."\n"
.' "index": 17,'."\n"
.' "time": ['."\n"
.' 139774.45,'."\n"
.' 149824.45'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "听你这么一说,感觉生活中的小细节真的很重要。比如咳嗽或打喷嚏时,用纸巾、手肘遮住口鼻,就能减少病毒传播。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_18.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=41GmphAH1k2hwtKm5xG5HU8sZYU%3D",'."\n"
.' "index": 18,'."\n"
.' "time": ['."\n"
.' 149824.45,'."\n"
.' 157966.25'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "对,还有别忘了保持环境清洁和通风。(确实)家里、教室每天勤开窗通风,必要时进行消毒。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_19.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=1yD7PvQwmJCFtDVZxiBSCgxFQWE%3D",'."\n"
.' "index": 19,'."\n"
.' "time": ['."\n"
.' 157966.25,'."\n"
.' 164576.25'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "看来这些看似简单的小事,其实都能起到大作用。那万一真的不幸中招了,该怎么办呢?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_20.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=D%2BVKscQXjtyzbNx5NJhx%2Fyny1qI%3D",'."\n"
.' "index": 20,'."\n"
.' "time": ['."\n"
.' 164576.25,'."\n"
.' 175432.08'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "如果确诊是甲型流感,一定要隔离、卧床休息,并遵医嘱用药。(没错)比如磷酸奥司他韦胶囊就是一种常用的抗病毒药物。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_21.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=Ugt6%2FUFdc7ACT%2BFxJm4Tk8VOX84%3D",'."\n"
.' "index": 21,'."\n"
.' "time": ['."\n"
.' 175432.08,'."\n"
.' 184482.08'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "哦,原来还有专门针对甲流的药。不过如果症状比较严重,比如持续高烧或者呼吸困难,那就得赶紧去医院了。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_22.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=YJy3rQ2cpGwjtW%2BSzehQscSFicg%3D",'."\n"
.' "index": 22,'."\n"
.' "time": ['."\n"
.' 184482.08,'."\n"
.' 192451.88'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "没错,千万别拖延病情。医院可以排查是否有并发症,比如肺炎之类的。(对)总之,早发现、早治疗很重要。"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_23.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=5WvLaj3cCmK5m%2FAS8EiIbaAgxYs%3D",'."\n"
.' "index": 23,'."\n"
.' "time": ['."\n"
.' 192451.88,'."\n"
.' 199781.88'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "总结一下,甲流虽然可怕,但只要我们做好防护,及时就医,就没啥好怕的。大家记住了吗?"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_24.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854448&Signature=H4gi%2B%2BUJ%2BJ36rjZeUecTsqFjTqY%3D",'."\n"
.' "index": 24,'."\n"
.' "time": ['."\n"
.' 199781.88,'."\n"
.' 208151.88'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "记住了!接种疫苗、勤洗手、戴口罩、增强免疫力,还有必要时及时就医。希望大家都能健健康康地度过这个季节!"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_25.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854448&Signature=oGTU2Ki3FkmV2hvL3sPFVM7ZPGI%3D",'."\n"
.' "index": 25,'."\n"
.' "time": ['."\n"
.' 208151.88,'."\n"
.' 212601.88'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-2",'."\n"
.' "text": "好了,今天的节目就到这里。感谢大家收听,我们下期再见!"'."\n"
.' }'."\n"
.' },'."\n"
.' {'."\n"
.' "audioSegmentUrl": "http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_26.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854448&Signature=N4lXSxOmRSjsRFounST8hBM3FnY%3D",'."\n"
.' "index": 26,'."\n"
.' "time": ['."\n"
.' 212601.88,'."\n"
.' 213131.88'."\n"
.' ],'."\n"
.' "script": {'."\n"
.' "speaker": "speaker-1",'."\n"
.' "text": "再见!"'."\n"
.' }'."\n"
.' }'."\n"
.' ]'."\n"
.' }', 'title' => ''],
],
'title' => '',
'example' => '',
],
],
'example' => '',
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"code\\": \\"\\\\\\"success\\\\\\"\\",\\n \\"message\\": \\"\\\\\\"success\\\\\\"\\",\\n \\"requestId\\": \\"C38F034D-7F36-531C-95AC-0C752F80E840\\",\\n \\"success\\": true,\\n \\"httpStatusCode\\": \\"200\\",\\n \\"data\\": {\\n \\"taskId\\": \\"63c4e0eaab3b4c0db208ecafa990e8d1\\\\n\\",\\n \\"taskStatus\\": \\"SUCCEEDED\\",\\n \\"script\\": \\"\\\\\\"[{\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"听众朋友们,晚上好!今天咱们聊聊最近大家都很关心的一个话题——甲流来袭,我们该怎么应对?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"嗯,这个话题确实挺重要。甲流听起来有点吓人,但其实只要科学防护,就不用太担心。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"没错,先给大家科普一下,甲流全名叫甲型流感,是由甲型流感病毒感染引起的流行性感冒。跟普通感冒比起来,它的症状更重,传播也更快。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"哦?那具体都有哪些症状呢?我记得好像会发烧吧。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"对的,高烧是甲流最常见的症状之一,体温可能高达39到40度。除了发烧,还会有头痛、全身肌肉和关节疼痛、乏力、食欲不振等症状。有些人甚至会出现恶心、呕吐的情况。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"听起来确实不太好受。不过婴儿的症状是不是会稍微不一样?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"是的,婴儿可能会表现为高烧、烦躁、哭闹增加,还有吃奶减少等。所以家长要特别注意观察孩子的状态。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"嗯,说到这,我突然想到一个问题:甲流是怎么传播的呢?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"主要通过呼吸道传播和接触传播。比如近距离接触甲流病人或者高度疑似病人后,就可能被感染。另外,患者的分泌物也可能携带病毒,直接或间接接触这些分泌物也会有风险。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"哦,原来如此。那易感人群有哪些呢?是不是老年人和小孩更容易中招?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"没错,老人、孕妇、小孩都是易感人群。此外,患有慢性疾病、肥胖或者免疫功能低下的人群也要格外小心。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"听你这么一说,感觉预防真的很重要啊。那有没有什么有效的预防措施呢?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"当然有!最有效的方法就是接种疫苗。每年9到10月份接种流感疫苗,保护效力可以持续到冬春流感高发季节。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"嗯,除了打疫苗,还有什么其他办法吗?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"保持良好的卫生习惯也很重要。比如勤洗手,尽量避免用手接触眼、鼻、口。同时,避免在拥挤的场所逗留,减少人际接触。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"嗯,这点我特别赞同。现在很多人都习惯了戴口罩,这其实也是个很好的防护措施。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"没错,戴口罩能有效阻断飞沫传播。另外,增强免疫力也很关键。保持充足的睡眠、均衡的饮食和适量的运动都能帮助身体更好地抵抗病毒。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"听你这么一说,感觉生活中的小细节真的很重要。比如咳嗽或打喷嚏时,用纸巾、手肘遮住口鼻,就能减少病毒传播。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"对,还有别忘了保持环境清洁和通风。家里、教室每天勤开窗通风,必要时进行消毒。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"看来这些看似简单的小事,其实都能起到大作用。那万一真的不幸中招了,该怎么办呢?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"如果确诊是甲型流感,一定要隔离、卧床休息,并遵医嘱用药。比如磷酸奥司他韦胶囊就是一种常用的抗病毒药物。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"哦,原来还有专门针对甲流的药。不过如果症状比较严重,比如持续高烧或者呼吸困难,那就得赶紧去医院了。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"没错,千万别拖延病情。医院可以排查是否有并发症,比如肺炎之类的。总之,早发现、早治疗很重要。\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"总结一下,甲流虽然可怕,但只要我们做好防护,及时就医,就没啥好怕的。大家记住了吗?\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"记住了!接种疫苗、勤洗手、戴口罩、增强免疫力,还有必要时及时就医。希望大家都能健健康康地度过这个季节!\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"好了,今天的节目就到这里。感谢大家收听,我们下期再见!\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-2\\\\\\\\\\\\\\"}, {\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"再见!\\\\\\\\\\\\\\", \\\\\\\\\\\\\\"speaker\\\\\\\\\\\\\\": \\\\\\\\\\\\\\"speaker-1\\\\\\\\\\\\\\"}]\\\\\\"\\",\\n \\"resultUrl\\": \\"{\\\\\\"audio\\\\\\":\\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/audio.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748853849&Signature=e1KlRgmjAjuUkPVWIEhoRbn4X0w%3D\\\\\\",\\\\\\"script\\\\\\":\\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/script.txt?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748853511&Signature=th5sI%2BB1FZuQ6tRLg4qGGX1fevI%3D\\\\\\"}\\",\\n \\"extraResult\\": \\"{\\\\n \\\\\\"segment\\\\\\": [\\\\n [\\\\n 0.0,\\\\n 6370.0\\\\n ],\\\\n [\\\\n 6370.0,\\\\n 15020.0\\\\n ],\\\\n [\\\\n 15020.0,\\\\n 26071.791\\\\n ],\\\\n [\\\\n 26071.791,\\\\n 31001.791\\\\n ],\\\\n [\\\\n 31001.791,\\\\n 45646.582\\\\n ],\\\\n [\\\\n 45646.582,\\\\n 50816.582\\\\n ],\\\\n [\\\\n 50816.582,\\\\n 59501.418\\\\n ],\\\\n [\\\\n 59501.418,\\\\n 63631.418\\\\n ],\\\\n [\\\\n 63631.418,\\\\n 77161.25\\\\n ],\\\\n [\\\\n 77161.25,\\\\n 84691.25\\\\n ],\\\\n [\\\\n 84691.25,\\\\n 93623.086\\\\n ],\\\\n [\\\\n 93623.086,\\\\n 99233.086\\\\n ],\\\\n [\\\\n 99233.086,\\\\n 108894.875\\\\n ],\\\\n [\\\\n 108894.875,\\\\n 111864.875\\\\n ],\\\\n [\\\\n 111864.875,\\\\n 121678.664\\\\n ],\\\\n [\\\\n 121678.664,\\\\n 128448.664\\\\n ],\\\\n [\\\\n 128448.664,\\\\n 139774.45\\\\n ],\\\\n [\\\\n 139774.45,\\\\n 149824.45\\\\n ],\\\\n [\\\\n 149824.45,\\\\n 157966.25\\\\n ],\\\\n [\\\\n 157966.25,\\\\n 164576.25\\\\n ],\\\\n [\\\\n 164576.25,\\\\n 175432.08\\\\n ],\\\\n [\\\\n 175432.08,\\\\n 184482.08\\\\n ],\\\\n [\\\\n 184482.08,\\\\n 192451.88\\\\n ],\\\\n [\\\\n 192451.88,\\\\n 199781.88\\\\n ],\\\\n [\\\\n 199781.88,\\\\n 208151.88\\\\n ],\\\\n [\\\\n 208151.88,\\\\n 212601.88\\\\n ],\\\\n [\\\\n 212601.88,\\\\n 213131.88\\\\n ]\\\\n ],\\\\n \\\\\\"segmentDetails\\\\\\": [\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_0.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=cWk2X%2B7MtbIEm%2Fu1mwVts59hpwU%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 0,\\\\n \\\\\\"time\\\\\\": [\\\\n 0.0,\\\\n 6370.0\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"听众朋友们,晚上好!今天咱们聊聊最近大家都很关心的一个话题——甲流来袭,我们该怎么应对?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_1.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=CFGULg%2FJ8I3htf0YvVL5mz7FLXg%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 1,\\\\n \\\\\\"time\\\\\\": [\\\\n 6370.0,\\\\n 15020.0\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"嗯,这个话题确实挺重要。甲流听起来有点吓人,但其实只要科学防护,就不用太担心。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_2.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=Q2Ck9DLRqsvJ1Bt6aqMh0rnPPDQ%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 2,\\\\n \\\\\\"time\\\\\\": [\\\\n 15020.0,\\\\n 26071.791\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"没错,先给大家科普一下,甲流全名叫甲型流感,是由甲型流感病毒感染引起的流行性感冒。(对)跟普通感冒比起来,它的症状更重,传播也更快。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_3.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=vPwoJQnhKv2Ti4aovV6v3lP4V5w%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 3,\\\\n \\\\\\"time\\\\\\": [\\\\n 26071.791,\\\\n 31001.791\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"哦?那具体都有哪些症状呢?我记得好像会发烧吧。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_4.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=fUh04j4iLyYG4GV5wQ1f5GkFvJE%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 4,\\\\n \\\\\\"time\\\\\\": [\\\\n 31001.791,\\\\n 45646.582\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"对的,高烧是甲流最常见的症状之一,体温可能高达39到40度。(嗯)除了发烧,还会有头痛、全身肌肉和关节疼痛、乏力、食欲不振等症状。有些人甚至会出现恶心、呕吐的情况。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_5.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=v5c0d%2Bk4OmjmRRFVCKZ5JhDOq5o%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 5,\\\\n \\\\\\"time\\\\\\": [\\\\n 45646.582,\\\\n 50816.582\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"听起来确实不太好受。不过婴儿的症状是不是会稍微不一样?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_6.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=ZeyAxNn8wbRFXK4qXPJMKKGhIl0%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 6,\\\\n \\\\\\"time\\\\\\": [\\\\n 50816.582,\\\\n 59501.418\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"是的,婴儿可能会表现为高烧、烦躁、哭闹增加,还有吃奶减少等。(确实)所以家长要特别注意观察孩子的状态。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_7.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854445&Signature=UEyc%2BbAqgIa1C3SS4EjtNegTDTg%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 7,\\\\n \\\\\\"time\\\\\\": [\\\\n 59501.418,\\\\n 63631.418\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"嗯,说到这,我突然想到一个问题:甲流是怎么传播的呢?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_8.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=JYlAsSnLJNMFDEv9Bm5hSf4SrNY%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 8,\\\\n \\\\\\"time\\\\\\": [\\\\n 63631.418,\\\\n 77161.25\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"主要通过呼吸道传播和接触传播。(没错)比如近距离接触甲流病人或者高度疑似病人后,就可能被感染。另外,患者的分泌物也可能携带病毒,直接或间接接触这些分泌物也会有风险。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_9.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=eHG1QMbfsSSqfHwAD79Xs531kFw%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 9,\\\\n \\\\\\"time\\\\\\": [\\\\n 77161.25,\\\\n 84691.25\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"哦,原来如此。那易感人群有哪些呢?是不是老年人和小孩更容易中招?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_10.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=rElcCYlOaChj%2BJWT94c7%2F%2FMlTUo%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 10,\\\\n \\\\\\"time\\\\\\": [\\\\n 84691.25,\\\\n 93623.086\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"没错,老人、孕妇、小孩都是易感人群。(真的)此外,患有慢性疾病、肥胖或者免疫功能低下的人群也要格外小心。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_11.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=dBjOIrNqHSiF3RCrbsWyLtrE6Ow%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 11,\\\\n \\\\\\"time\\\\\\": [\\\\n 93623.086,\\\\n 99233.086\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"听你这么一说,感觉预防真的很重要啊。那有没有什么有效的预防措施呢?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_12.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=EJ0qCENMhqIUEu6UZ0RTP0cdibQ%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 12,\\\\n \\\\\\"time\\\\\\": [\\\\n 99233.086,\\\\n 108894.875\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"当然有!最有效的方法就是接种疫苗。(对)每年9到10月份接种流感疫苗,保护效力可以持续到冬春流感高发季节。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_13.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=nH02zWlwtrLK2fcskFbRvuMTD3s%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 13,\\\\n \\\\\\"time\\\\\\": [\\\\n 108894.875,\\\\n 111864.875\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"嗯,除了打疫苗,还有什么其他办法吗?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_14.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=9y3D2UGy6zg77gFWP4qFtHkF5S4%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 14,\\\\n \\\\\\"time\\\\\\": [\\\\n 111864.875,\\\\n 121678.664\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"保持良好的卫生习惯也很重要。比如勤洗手,尽量避免用手接触眼、鼻、口。(没错)同时,避免在拥挤的场所逗留,减少人际接触。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_15.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854446&Signature=EbwEURP7u9HpwrsrPC2Thwd4XUg%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 15,\\\\n \\\\\\"time\\\\\\": [\\\\n 121678.664,\\\\n 128448.664\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"嗯,这点我特别赞同。现在很多人都习惯了戴口罩,这其实也是个很好的防护措施。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_16.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=4rj5XQD0SaspVCj7QmGFrIGyACA%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 16,\\\\n \\\\\\"time\\\\\\": [\\\\n 128448.664,\\\\n 139774.45\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"没错,戴口罩能有效阻断飞沫传播。另外,增强免疫力也很关键。(嗯)保持充足的睡眠、均衡的饮食和适量的运动都能帮助身体更好地抵抗病毒。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_17.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=1aGlxcVI8r3ac7kY%2FHAt2%2Bg2Jss%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 17,\\\\n \\\\\\"time\\\\\\": [\\\\n 139774.45,\\\\n 149824.45\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"听你这么一说,感觉生活中的小细节真的很重要。比如咳嗽或打喷嚏时,用纸巾、手肘遮住口鼻,就能减少病毒传播。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_18.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=41GmphAH1k2hwtKm5xG5HU8sZYU%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 18,\\\\n \\\\\\"time\\\\\\": [\\\\n 149824.45,\\\\n 157966.25\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"对,还有别忘了保持环境清洁和通风。(确实)家里、教室每天勤开窗通风,必要时进行消毒。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_19.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=1yD7PvQwmJCFtDVZxiBSCgxFQWE%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 19,\\\\n \\\\\\"time\\\\\\": [\\\\n 157966.25,\\\\n 164576.25\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"看来这些看似简单的小事,其实都能起到大作用。那万一真的不幸中招了,该怎么办呢?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_20.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=D%2BVKscQXjtyzbNx5NJhx%2Fyny1qI%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 20,\\\\n \\\\\\"time\\\\\\": [\\\\n 164576.25,\\\\n 175432.08\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"如果确诊是甲型流感,一定要隔离、卧床休息,并遵医嘱用药。(没错)比如磷酸奥司他韦胶囊就是一种常用的抗病毒药物。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_21.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=Ugt6%2FUFdc7ACT%2BFxJm4Tk8VOX84%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 21,\\\\n \\\\\\"time\\\\\\": [\\\\n 175432.08,\\\\n 184482.08\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"哦,原来还有专门针对甲流的药。不过如果症状比较严重,比如持续高烧或者呼吸困难,那就得赶紧去医院了。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_22.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=YJy3rQ2cpGwjtW%2BSzehQscSFicg%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 22,\\\\n \\\\\\"time\\\\\\": [\\\\n 184482.08,\\\\n 192451.88\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"没错,千万别拖延病情。医院可以排查是否有并发症,比如肺炎之类的。(对)总之,早发现、早治疗很重要。\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_23.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854447&Signature=5WvLaj3cCmK5m%2FAS8EiIbaAgxYs%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 23,\\\\n \\\\\\"time\\\\\\": [\\\\n 192451.88,\\\\n 199781.88\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"总结一下,甲流虽然可怕,但只要我们做好防护,及时就医,就没啥好怕的。大家记住了吗?\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_24.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854448&Signature=H4gi%2B%2BUJ%2BJ36rjZeUecTsqFjTqY%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 24,\\\\n \\\\\\"time\\\\\\": [\\\\n 199781.88,\\\\n 208151.88\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"记住了!接种疫苗、勤洗手、戴口罩、增强免疫力,还有必要时及时就医。希望大家都能健健康康地度过这个季节!\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_25.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854448&Signature=oGTU2Ki3FkmV2hvL3sPFVM7ZPGI%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 25,\\\\n \\\\\\"time\\\\\\": [\\\\n 208151.88,\\\\n 212601.88\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-2\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"好了,今天的节目就到这里。感谢大家收听,我们下期再见!\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\"audioSegmentUrl\\\\\\": \\\\\\"http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202506021536413361/segment_26.mp3?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1748854448&Signature=N4lXSxOmRSjsRFounST8hBM3FnY%3D\\\\\\",\\\\n \\\\\\"index\\\\\\": 26,\\\\n \\\\\\"time\\\\\\": [\\\\n 212601.88,\\\\n 213131.88\\\\n ],\\\\n \\\\\\"script\\\\\\": {\\\\n \\\\\\"speaker\\\\\\": \\\\\\"speaker-1\\\\\\",\\\\n \\\\\\"text\\\\\\": \\\\\\"再见!\\\\\\"\\\\n }\\\\n }\\\\n ]\\\\n }\\"\\n }\\n}","type":"json"}]',
'title' => 'Query podcast job result ',
'responseParamsDescription' => 'The `script` in `resultUrl` is the interactively enhanced podcast script, which differs from the `script` parameter.',
'changeSet' => [
['createdAt' => '2025-05-30T05:57:29.000Z', 'description' => 'Response parameters changed'],
],
'flowControl' => [
'flowControlList' => [],
],
'ramActions' => [
[
'operationType' => 'none',
'ramAction' => [
'action' => 'aipodcast:PodcastTaskResultQuery',
'authLevel' => 'operate',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'AIPodcast', 'resourceType' => 'All Resource', 'arn' => '*'],
],
],
],
],
],
'PodcastTaskSubmit' => [
'summary' => 'Submits an AI podcast generation task.',
'path' => '/podcast/task/submit',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'consumes' => ['application/json'],
'produces' => ['application/json'],
'operationType' => 'readAndWrite',
'systemTags' => ['operationType' => 'none', 'riskType' => 'none', 'chargeType' => 'paid'],
'parameters' => [
[
'name' => 'workspaceId',
'in' => 'formData',
'schema' => ['description' => 'The ID of the Model Studio workspace for the current request.', 'type' => 'string', 'required' => true, 'example' => 'llm-ep8ba0dr6seiddxx', 'title' => ''],
],
[
'name' => 'fileUrls',
'in' => 'formData',
'style' => 'json',
'schema' => [
'description' => 'The URLs of source files (such as scripts) for the AI podcast generation task.',
'type' => 'array',
'items' => ['description' => 'A file URL.', 'type' => 'string', 'required' => false, 'example' => 'http://xxx-ai-file.oss-cn-beijing.aliyuncs.com/202503241702148295/script.txt?OSSAccessKeyId=LTAI5tPLWJfJHNkZbfnQ****&Expires=1742810622&Signature=TBBdikHzOWW3YqDw3sNMTXiMo6A%3D', 'title' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'topic',
'in' => 'formData',
'schema' => ['description' => 'The topic for generating the podcast content.', 'type' => 'string', 'required' => false, 'example' => '甲流来袭,我们该如何应对?', 'title' => ''],
],
[
'name' => 'counts',
'in' => 'formData',
'schema' => [
'description' => 'The number of speakers.',
'enumValueTitles' => [1 => 'One speaker', 'Two speakers'],
'type' => 'integer',
'format' => 'int32',
'required' => false,
'example' => '2',
'title' => '',
],
],
[
'name' => 'voices',
'in' => 'formData',
'style' => 'json',
'schema' => [
'enumValueTitles' => [
'Dylan' => 'Beijing dialect - Male', 'en_female' => 'Female', 'Cherry' => 'Female', 'Ethan' => 'Male', 'news_male' => 'Male', 'Jada' => 'Wu dialect - Female', 'Chelsie' => 'Female', 'en_male' => 'Male', 'news_female' => 'Female', 'Serena' => 'Female',
'Sunny' => 'Sichuan dialect - Female',
],
'description' => 'The voices to use for podcast generation. The first voice in the array corresponds to the first speaker.',
'type' => 'array',
'items' => ['description' => 'A voice.', 'type' => 'string', 'required' => false, 'example' => 'news_female', 'title' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'text',
'in' => 'formData',
'schema' => ['description' => 'The source text for the AI podcast generation.', 'type' => 'string', 'required' => false, 'example' => '最近,甲型流感似乎成了大家热议的话题。但你真的了解甲流吗?它和普通感冒有什么区别?为什么症状看起来如此严重?更重要的是,我们应该如何预防和治疗?本期对话中,我们将深入探讨甲流的传播方式、易感人群以及科学的防护措施,帮助你在流感高发季节保护自己和家人的健康。', 'title' => ''],
],
[
'name' => 'sourceLang',
'in' => 'formData',
'schema' => [
'description' => 'The language for the generated podcast content, including both script and audio. The output will be in this language, regardless of the input language. Supported: "zh" (Chinese), "en" (English). Default: "zh".',
'enumValueTitles' => ['en' => 'English', 'zh' => 'Chinese'],
'type' => 'string',
'required' => false,
'default' => 'zh',
'example' => 'zh',
'title' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'Schema of Response',
'title' => 'Schema of Response',
'type' => 'object',
'properties' => [
'code' => ['description' => 'The response status code.', 'type' => 'string', 'example' => '"success"', 'title' => ''],
'message' => ['description' => 'The response message.', 'type' => 'string', 'example' => '"success"', 'title' => ''],
'requestId' => ['description' => 'The request ID. Use this ID to trace the API call.', 'type' => 'string', 'example' => '9CE5B91A-6E6B-55FB-A1AF-037DF01C84B3', 'title' => ''],
'success' => ['description' => 'Indicates whether the API call was successful. `true` indicates success, and `false` indicates failure.', 'type' => 'boolean', 'default' => 'true', 'example' => 'True', 'title' => ''],
'httpStatusCode' => ['description' => 'The HTTP status code.', 'type' => 'string', 'example' => '200', 'title' => ''],
'data' => [
'description' => 'The response data.',
'type' => 'object',
'properties' => [
'taskId' => ['description' => 'The unique task ID.', 'type' => 'string', 'example' => '63c4e0eaab3b4c0db208ecafa990e8d1', 'title' => ''],
'taskStatus' => [
'description' => 'The task status.'."\n"
."\n"
.'- PENDING: The task is created and awaiting execution.'."\n"
."\n"
.'- RUNNING: The task is currently in progress.'."\n"
."\n"
.'- SUCCEEDED: The task completed successfully.'."\n"
."\n"
.'- INVALID: The request was invalid, often due to incorrect parameters or input.'."\n"
."\n"
.'- FAILED: The task failed to complete due to an internal error.'."\n"
."\n"
.'- UNKNOWN: The task status cannot be determined, which may indicate a temporary issue.',
'enumValueTitles' => ['FAILED' => 'FAILED', 'RUNNING' => 'RUNNING', 'SUCCEEDED' => 'SUCCEEDED', 'PENDING' => 'PENDING', 'UNKNOWN' => 'UNKNOWN', 'INVALID' => 'INVALID'],
'type' => 'string',
'example' => 'SUCCEEDED',
'title' => '',
],
],
'title' => '',
'example' => '',
],
],
'example' => '',
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"code\\": \\"\\\\\\"success\\\\\\"\\",\\n \\"message\\": \\"\\\\\\"success\\\\\\"\\",\\n \\"requestId\\": \\"9CE5B91A-6E6B-55FB-A1AF-037DF01C84B3\\",\\n \\"success\\": true,\\n \\"httpStatusCode\\": \\"200\\",\\n \\"data\\": {\\n \\"taskId\\": \\"63c4e0eaab3b4c0db208ecafa990e8d1\\",\\n \\"taskStatus\\": \\"SUCCEEDED\\"\\n }\\n}","type":"json"}]',
'title' => 'Submit Podcast Job',
'changeSet' => [
['createdAt' => '2025-05-30T10:03:16.000Z', 'description' => 'Request parameters changed'],
],
'ramActions' => [
[
'operationType' => 'none',
'ramAction' => [
'action' => 'aipodcast:PodcastTaskSubmit',
'authLevel' => 'operate',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'AIPodcast', 'resourceType' => 'All Resource', 'arn' => '*'],
],
],
],
],
'flowControl' => [
'flowControlList' => [],
],
],
],
'endpoints' => [
['regionId' => 'cn-beijing', 'regionName' => 'China (Beijing)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'aipodcast.cn-beijing.aliyuncs.com', 'endpoint' => 'aipodcast.cn-beijing.aliyuncs.com', 'vpc' => 'aipodcast-vpc.cn-beijing.aliyuncs.com'],
],
'errorCodes' => [
['code' => 'Request.Params.Error', 'message' => 'Request parameter errors.', 'http_code' => 400, 'description' => 'Request parameter error'],
['code' => 'Request.Params.Error', 'message' => 'request params error.', 'http_code' => 400, 'description' => 'Request parameter error'],
],
'changeSet' => [],
'flowControl' => [
'flowControlList' => [],
],
'ram' => [
'productCode' => 'AIPodcast',
'productName' => 'Alibaba Cloud Model Studio',
'ramCodes' => ['aipodcast'],
'ramLevel' => 'OPERATION',
'ramConditions' => [],
'ramActions' => [
[
'apiName' => 'PodcastTaskResultQuery',
'description' => '',
'operationType' => 'none',
'ramAction' => [
'action' => 'aipodcast:PodcastTaskResultQuery',
'authLevel' => 'operate',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'AIPodcast', 'resourceType' => 'All Resource', 'arn' => '*'],
],
],
],
[
'apiName' => 'PodcastTaskSubmit',
'description' => '',
'operationType' => 'none',
'ramAction' => [
'action' => 'aipodcast:PodcastTaskSubmit',
'authLevel' => 'operate',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'AIPodcast', 'resourceType' => 'All Resource', 'arn' => '*'],
],
],
],
],
'resourceTypes' => [],
],
];
|