c06b7e2
|
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 |
<?xml version="1.0" encoding="utf-8"?>
<script xmlns="http://schemas.alibaba-inc.com/tts" uttcount="19">
<utterance id="test_0_1">
<text>八岁的时候立志成为一个像马游勇一样的大提琴演奏家在</text>
<spoken wordcount="10">
<text>八岁的 时候 立志 成为 一个 像 马游勇 一样的 大提琴 演奏家在 #4</text>
<word>
<name>八岁的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>b_c a_c - s_c uei_c - d_c e_c</phone>
<tone>145</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>时候</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ih_c - h_c ou_c</phone>
<tone>24</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>立志</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c i_c - zh_c ih_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>成为</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>ch_c eng_c - w_c ei_c</phone>
<tone>22</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一个</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c i_c - g_c e_c</phone>
<tone>25</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>像</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>xx_c iang_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>马游勇</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>m_c a_c - y_c ou_c - y_c ong_c</phone>
<tone>323</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一样的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>y_c i_c - y_c ang_c - d_c e_c</phone>
<tone>245</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>大提琴</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>d_c a_c - t_c i_c - q_c in_c</phone>
<tone>422</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>演奏家在</name>
<lang>PinYin</lang>
<syllable syllcount="4">
<phone>y_c an_c - z_c ou_c - j_c ia_c - z_c ai_c</phone>
<tone>3414</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_16">
<text>说两只手是不同大小的我的</text>
<spoken wordcount="6">
<text>说 两只手 是 不同 大小的 我的 #4</text>
<word>
<name>说</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>sh_c uo_c</phone>
<tone>1</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>两只手</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>l_c iang_c - zh_c ih_c - sh_c ou_c</phone>
<tone>313</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>是</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>sh_c ih_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>不同</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>b_c u_c - t_c ong_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>大小的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>d_c a_c - xx_c iao_c - d_c e_c</phone>
<tone>435</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>我的</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>w_c o_c - d_c e_c</phone>
<tone>35</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_11">
<text>因为恋情这种事情是不能间断的一恋</text>
<spoken wordcount="8">
<text>因为 恋情 这种 事情 是 不能 间断的 一恋 #4</text>
<word>
<name>因为</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c in_c - w_c ei_c</phone>
<tone>14</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>恋情</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c ian_c - q_c ing_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>这种</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c e_c - zh_c ong_c</phone>
<tone>43</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>事情</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ih_c - q_c ing_c</phone>
<tone>45</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>是</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>sh_c ih_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>不能</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>b_c u_c - n_c eng_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>间断的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>j_c ian_c - d_c uan_c - d_c e_c</phone>
<tone>445</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一恋</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c i_c - l_c ian_c</phone>
<tone>24</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_19">
<text>右手要无限的撑开</text>
<spoken wordcount="4">
<text>右手 要 无限的 撑开 #4</text>
<word>
<name>右手</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c ou_c - sh_c ou_c</phone>
<tone>43</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>要</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>y_c ao_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>无限的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>w_c u_c - xx_c ian_c - d_c e_c</phone>
<tone>245</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>撑开</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>ch_c eng_c - k_c ai_c</phone>
<tone>11</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_9">
<text>练完一段时间之后就会发现手指开始发红发肿像</text>
<spoken wordcount="10">
<text>练完 一段 时间 之后 就会 发现 手指 开始 发红 发肿像 #4</text>
<word>
<name>练完</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c ian_c - w_c an_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一段</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c i_c - d_c uan_c</phone>
<tone>24</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>时间</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ih_c - j_c ian_c</phone>
<tone>21</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>之后</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c ih_c - h_c ou_c</phone>
<tone>14</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>就会</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>j_c iou_c - h_c uei_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>发现</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>f_c a_c - xx_c ian_c</phone>
<tone>14</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>手指</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ou_c - zh_c ih_c</phone>
<tone>23</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>开始</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>k_c ai_c - sh_c ih_c</phone>
<tone>13</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>发红</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>f_c a_c - h_c ong_c</phone>
<tone>12</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>发肿像</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>f_c a_c - zh_c ong_c - xx_c iang_c</phone>
<tone>134</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_6">
<text>对恋情这件事情太不容易了刚开</text>
<spoken wordcount="7">
<text>对 恋情 这件 事情 太不 容易了 #3 刚开 #4</text>
<word>
<name>对</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>d_c uei_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>恋情</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c ian_c - q_c ing_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>这件</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c e_c - j_c ian_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>事情</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ih_c - q_c ing_c</phone>
<tone>45</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>太不</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>t_c ai_c - b_c u_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>容易了</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>r_c ong_c - y_c i_c - l_c e_c</phone>
<tone>245</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>刚开</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>g_c ang_c - k_c ai_c</phone>
<tone>11</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_14">
<text>长出厚厚的剪子给</text>
<spoken wordcount="4">
<text>长出 厚厚的 剪子 给 #4</text>
<word>
<name>长出</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c ang_c - ch_c u_c</phone>
<tone>31</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>厚厚的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>h_c ou_c - h_c ou_c - d_c e_c</phone>
<tone>445</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>剪子</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>j_c ian_c - z_c ii_c</phone>
<tone>35</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>给</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>g_c ei_c</phone>
<tone>3</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_3">
<text>音乐感染每一个人</text>
<spoken wordcount="3">
<text>音乐 感染 每一个人 #4</text>
<word>
<name>音乐</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c in_c - y_c ve_c</phone>
<tone>14</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>感染</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>g_c an_c - r_c an_c</phone>
<tone>22</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>每一个人</name>
<lang>PinYin</lang>
<syllable syllcount="4">
<phone>m_c ei_c - y_c i_c - g_c e_c - r_c en_c</phone>
<tone>3252</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_10">
<text>像火烧一样疼</text>
<spoken wordcount="4">
<text>像 火烧 一样 疼 #4</text>
<word>
<name>像</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>xx_c iang_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>火烧</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>h_c uo_c - sh_c ao_c</phone>
<tone>35</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一样</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c i_c - y_c ang_c</phone>
<tone>24</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>疼</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>t_c eng_c</phone>
<tone>2</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_13">
<text>要练到直到第一层皮退下去</text>
<spoken wordcount="6">
<text>要 练到 直到 第一 层皮 退下去 #4</text>
<word>
<name>要</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>y_c ao_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>练到</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c ian_c - d_c ao_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>直到</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c ih_c - d_c ao_c</phone>
<tone>24</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>第一</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>d_c i_c - y_c i_c</phone>
<tone>41</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>层皮</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>c_c eng_c - p_c i_c</phone>
<tone>22</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>退下去</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>t_c uei_c - xx_c ia_c - q_c v_c</phone>
<tone>444</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_7">
<text>开始练琴的时候因为</text>
<spoken wordcount="4">
<text>开始 练琴的 时候 因为 #4</text>
<word>
<name>开始</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>k_c ai_c - sh_c ih_c</phone>
<tone>13</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>练琴的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>l_c ian_c - q_c in_c - d_c e_c</phone>
<tone>425</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>时候</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ih_c - h_c ou_c</phone>
<tone>24</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>因为</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c in_c - w_c ei_c</phone>
<tone>14</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_17">
<text>左手要比右手大那么一点点因</text>
<spoken wordcount="8">
<text>左手 要比 右手 大 那么 一点 点 #3 因 #4</text>
<word>
<name>左手</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>z_c uo_c - sh_c ou_c</phone>
<tone>23</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>要比</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c ao_c - b_c i_c</phone>
<tone>43</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>右手</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c ou_c - sh_c ou_c</phone>
<tone>43</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>大</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>d_c a_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>那么</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>n_c a_c - m_c e_c</phone>
<tone>45</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一点</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c i_c - d_c ian_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>点</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>d_c ian_c</phone>
<tone>3</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>因</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>y_c in_c</phone>
<tone>1</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_0">
<text>在十二岁以前呢我从来没有想过自己会演戏</text>
<spoken wordcount="10">
<text>在 十二岁 以前呢 我 从来 没有 想过 自己 会 演戏 #4</text>
<word>
<name>在</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>z_c ai_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>十二岁</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>sh_c ih_c - ge er_c - s_c uei_c</phone>
<tone>244</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>以前呢</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>y_c i_c - q_c ian_c - n_c e_c</phone>
<tone>325</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>我</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>w_c o_c</phone>
<tone>3</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>从来</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>c_c ong_c - l_c ai_c</phone>
<tone>22</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>没有</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>m_c ei_c - y_c ou_c</phone>
<tone>22</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>想过</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>xx_c iang_c - g_c uo_c</phone>
<tone>34</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>自己</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>z_c ii_c - j_c i_c</phone>
<tone>43</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>会</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>h_c uei_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>演戏</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c an_c - xx_c i_c</phone>
<tone>34</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_5">
<text>其实我特别能理解那些中途想要放弃逃跑的一些学生</text>
<spoken wordcount="12">
<text>其实 我 特别 能 理解 那些 #3 中途 想要 放弃 逃跑的 一些 学生 #4</text>
<word>
<name>其实</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>q_c i_c - sh_c ih_c</phone>
<tone>22</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>我</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>w_c o_c</phone>
<tone>3</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>特别</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>t_c e_c - b_c ie_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>能</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>n_c eng_c</phone>
<tone>2</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>理解</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c i_c - j_c ie_c</phone>
<tone>23</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>那些</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>n_c a_c - xx_c ie_c</phone>
<tone>41</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>中途</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c ong_c - t_c u_c</phone>
<tone>12</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>想要</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>xx_c iang_c - y_c ao_c</phone>
<tone>34</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>放弃</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>f_c ang_c - q_c i_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>逃跑的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>t_c ao_c - p_c ao_c - d_c e_c</phone>
<tone>235</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>一些</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>y_c i_c - xx_c ie_c</phone>
<tone>41</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>学生</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>xx_c ve_c - sh_c eng_c</phone>
<tone>21</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_12">
<text>就练好几个小时练</text>
<spoken wordcount="4">
<text>就练 好几个 小时 #3 练 #4</text>
<word>
<name>就练</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>j_c iou_c - l_c ian_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>好几个</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>h_c ao_c - j_c i_c - g_c e_c</phone>
<tone>235</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>小时</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>xx_c iao_c - sh_c ih_c</phone>
<tone>32</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>练</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>l_c ian_c</phone>
<tone>4</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_2">
<text>在非常神圣的音乐厅里面用</text>
<spoken wordcount="6">
<text>在 非常 神圣的 音乐厅 里面 #3 用 #4</text>
<word>
<name>在</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>z_c ai_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>非常</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>f_c ei_c - ch_c ang_c</phone>
<tone>12</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>神圣的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>sh_c en_c - sh_c eng_c - d_c e_c</phone>
<tone>245</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>音乐厅</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>y_c in_c - y_c ve_c - t_c ing_c</phone>
<tone>141</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>里面</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c i_c - m_c ian_c</phone>
<tone>34</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>用</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>y_c ong_c</phone>
<tone>4</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_8">
<text>手指要不停的在纸板上面摩擦</text>
<spoken wordcount="7">
<text>手指 要 不停的 在 纸板 上面 摩擦 #4</text>
<word>
<name>手指</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ou_c - zh_c ih_c</phone>
<tone>23</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>要</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>y_c ao_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>不停的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>b_c u_c - t_c ing_c - d_c e_c</phone>
<tone>425</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>在</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>z_c ai_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>纸板</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>zh_c ih_c - b_c an_c</phone>
<tone>23</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>上面</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>sh_c ang_c - m_c ian_c</phone>
<tone>45</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>摩擦</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>m_c o_c - c_c a_c</phone>
<tone>21</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_18">
<text>在在恋情的过程当中呢你的左</text>
<spoken wordcount="5">
<text>在在 恋情的 过程 当中呢 #3 你的左 #4</text>
<word>
<name>在在</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>z_c ai_c - z_c ai_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>恋情的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>l_c ian_c - q_c ing_c - d_c e_c</phone>
<tone>425</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>过程</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>g_c uo_c - ch_c eng_c</phone>
<tone>42</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>当中呢</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>d_c ang_c - zh_c ong_c - n_c e_c</phone>
<tone>115</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>你的左</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>n_c i_c - d_c e_c - z_c uo_c</phone>
<tone>353</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
<utterance id="test_0_4">
<text>我是从六岁开始学琴的所以就</text>
<spoken wordcount="8">
<text>我 是 从 六岁 开始 学琴的 #3 所以 就 #4</text>
<word>
<name>我</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>w_c o_c</phone>
<tone>3</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>是</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>sh_c ih_c</phone>
<tone>4</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>从</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>c_c ong_c</phone>
<tone>2</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>六岁</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>l_c iou_c - s_c uei_c</phone>
<tone>44</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>开始</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>k_c ai_c - sh_c ih_c</phone>
<tone>13</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>学琴的</name>
<lang>PinYin</lang>
<syllable syllcount="3">
<phone>xx_c ve_c - q_c in_c - d_c e_c</phone>
<tone>225</tone>
</syllable>
<break>3</break>
<POS>0</POS>
</word>
<word>
<name>所以</name>
<lang>PinYin</lang>
<syllable syllcount="2">
<phone>s_c uo_c - y_c i_c</phone>
<tone>23</tone>
</syllable>
<break>1</break>
<POS>0</POS>
</word>
<word>
<name>就</name>
<lang>PinYin</lang>
<syllable syllcount="1">
<phone>j_c iou_c</phone>
<tone>4</tone>
</syllable>
<break>4</break>
<POS>0</POS>
</word>
</spoken>
</utterance>
</script>
|