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
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
=== rustvani pipeline integration test ===
[wav] sample_rate=16000 channels=1 bits=16
[wav] total_samples=960000 duration=60.0s
[feeder] pushing 1875 chunks via transport.push_audio_frame()
[print] ts=1775101493.330550 dir=Downstream frame=StartFrame id=1
[print] ts=1775101493.330609 dir=Downstream frame=InputAudioRawFrame id=2
[print] ts=1775101493.333634 dir=Downstream frame=InputAudioRawFrame id=3
[print] ts=1775101493.335656 dir=Downstream frame=InputAudioRawFrame id=4
[print] ts=1775101493.336923 dir=Downstream frame=InputAudioRawFrame id=5
[print] ts=1775101493.338093 dir=Downstream frame=InputAudioRawFrame id=6
[print] ts=1775101493.338861 dir=Downstream frame=InputAudioRawFrame id=7
[print] ts=1775101493.340127 dir=Downstream frame=InputAudioRawFrame id=8
[print] ts=1775101493.341265 dir=Downstream frame=InputAudioRawFrame id=9
[print] ts=1775101493.342206 dir=Downstream frame=InputAudioRawFrame id=10
[feeder] all audio pushed — waiting 300ms for audio task to drain
[print] ts=1775101493.343188 dir=Downstream frame=InputAudioRawFrame id=11
[print] ts=1775101493.344386 dir=Downstream frame=InputAudioRawFrame id=12
[print] ts=1775101493.346753 dir=Downstream frame=InputAudioRawFrame id=13
[print] ts=1775101493.348994 dir=Downstream frame=InputAudioRawFrame id=14
[print] ts=1775101493.351316 dir=Downstream frame=InputAudioRawFrame id=15
[print] ts=1775101493.352784 dir=Downstream frame=InputAudioRawFrame id=16
[print] ts=1775101493.354544 dir=Downstream frame=InputAudioRawFrame id=17
[print] ts=1775101493.355900 dir=Downstream frame=VADUserStartedSpeakingFrame id=1877
[print] ts=1775101493.355942 dir=Downstream frame=InputAudioRawFrame id=18
[print] ts=1775101493.357049 dir=Downstream frame=InputAudioRawFrame id=19
[print] ts=1775101493.358015 dir=Downstream frame=InputAudioRawFrame id=20
[print] ts=1775101493.358906 dir=Downstream frame=InputAudioRawFrame id=21
[print] ts=1775101493.360231 dir=Downstream frame=InputAudioRawFrame id=22
[print] ts=1775101493.361879 dir=Downstream frame=InputAudioRawFrame id=23
[print] ts=1775101493.363548 dir=Downstream frame=InputAudioRawFrame id=24
[print] ts=1775101493.371461 dir=Downstream frame=InputAudioRawFrame id=25
[print] ts=1775101493.372890 dir=Downstream frame=InputAudioRawFrame id=26
[print] ts=1775101493.374270 dir=Downstream frame=InputAudioRawFrame id=27
[print] ts=1775101493.375476 dir=Downstream frame=InputAudioRawFrame id=28
[print] ts=1775101493.377189 dir=Downstream frame=InputAudioRawFrame id=29
[print] ts=1775101493.378991 dir=Downstream frame=InputAudioRawFrame id=30
[print] ts=1775101493.380053 dir=Downstream frame=InputAudioRawFrame id=31
[print] ts=1775101493.381567 dir=Downstream frame=InputAudioRawFrame id=32
[print] ts=1775101493.383457 dir=Downstream frame=InputAudioRawFrame id=33
[print] ts=1775101493.385301 dir=Downstream frame=InputAudioRawFrame id=34
[print] ts=1775101493.387776 dir=Downstream frame=InputAudioRawFrame id=35
[print] ts=1775101493.389642 dir=Downstream frame=InputAudioRawFrame id=36
[print] ts=1775101493.390932 dir=Downstream frame=InputAudioRawFrame id=37
[print] ts=1775101493.392312 dir=Downstream frame=InputAudioRawFrame id=38
[print] ts=1775101493.393505 dir=Downstream frame=InputAudioRawFrame id=39
[print] ts=1775101493.394747 dir=Downstream frame=InputAudioRawFrame id=40
[print] ts=1775101493.395768 dir=Downstream frame=InputAudioRawFrame id=41
[print] ts=1775101493.396770 dir=Downstream frame=InputAudioRawFrame id=42
[print] ts=1775101493.397447 dir=Downstream frame=InputAudioRawFrame id=43
[print] ts=1775101493.399363 dir=Downstream frame=InputAudioRawFrame id=44
[print] ts=1775101493.400921 dir=Downstream frame=InputAudioRawFrame id=45
[print] ts=1775101493.402305 dir=Downstream frame=InputAudioRawFrame id=46
[print] ts=1775101493.404405 dir=Downstream frame=InputAudioRawFrame id=47
[print] ts=1775101493.406694 dir=Downstream frame=InputAudioRawFrame id=48
[print] ts=1775101493.408477 dir=Downstream frame=InputAudioRawFrame id=49
[print] ts=1775101493.411170 dir=Downstream frame=InputAudioRawFrame id=50
[print] ts=1775101493.412583 dir=Downstream frame=InputAudioRawFrame id=51
[print] ts=1775101493.413917 dir=Downstream frame=InputAudioRawFrame id=52
[print] ts=1775101493.415411 dir=Downstream frame=InputAudioRawFrame id=53
[print] ts=1775101493.417291 dir=Downstream frame=InputAudioRawFrame id=54
[print] ts=1775101493.419387 dir=Downstream frame=InputAudioRawFrame id=55
[print] ts=1775101493.420553 dir=Downstream frame=InputAudioRawFrame id=56
[print] ts=1775101493.421825 dir=Downstream frame=InputAudioRawFrame id=57
[print] ts=1775101493.423578 dir=Downstream frame=InputAudioRawFrame id=58
[print] ts=1775101493.425287 dir=Downstream frame=InputAudioRawFrame id=59
[print] ts=1775101493.426359 dir=Downstream frame=InputAudioRawFrame id=60
[print] ts=1775101493.427487 dir=Downstream frame=InputAudioRawFrame id=61
[print] ts=1775101493.428386 dir=Downstream frame=InputAudioRawFrame id=62
[print] ts=1775101493.429785 dir=Downstream frame=InputAudioRawFrame id=63
[print] ts=1775101493.430632 dir=Downstream frame=InputAudioRawFrame id=64
[print] ts=1775101493.434981 dir=Downstream frame=InputAudioRawFrame id=65
[print] ts=1775101493.437104 dir=Downstream frame=InputAudioRawFrame id=66
[print] ts=1775101493.438586 dir=Downstream frame=InputAudioRawFrame id=67
[print] ts=1775101493.440216 dir=Downstream frame=InputAudioRawFrame id=68
[print] ts=1775101493.441914 dir=Downstream frame=InputAudioRawFrame id=69
[print] ts=1775101493.443755 dir=Downstream frame=InputAudioRawFrame id=70
[print] ts=1775101493.445431 dir=Downstream frame=InputAudioRawFrame id=71
[print] ts=1775101493.447423 dir=Downstream frame=InputAudioRawFrame id=72
[print] ts=1775101493.449631 dir=Downstream frame=InputAudioRawFrame id=73
[print] ts=1775101493.453619 dir=Downstream frame=InputAudioRawFrame id=74
[print] ts=1775101493.455412 dir=Downstream frame=InputAudioRawFrame id=75
[print] ts=1775101493.457082 dir=Downstream frame=InputAudioRawFrame id=76
[print] ts=1775101493.458713 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1878
[print] ts=1775101493.458784 dir=Downstream frame=InputAudioRawFrame id=77
[print] ts=1775101493.460180 dir=Downstream frame=InputAudioRawFrame id=78
[print] ts=1775101493.461933 dir=Downstream frame=InputAudioRawFrame id=79
[print] ts=1775101493.463571 dir=Downstream frame=InputAudioRawFrame id=80
[print] ts=1775101493.465371 dir=Downstream frame=InputAudioRawFrame id=81
[print] ts=1775101493.469390 dir=Downstream frame=InputAudioRawFrame id=82
[print] ts=1775101493.471298 dir=Downstream frame=InputAudioRawFrame id=83
[print] ts=1775101493.473121 dir=Downstream frame=InputAudioRawFrame id=84
[print] ts=1775101493.474734 dir=Downstream frame=InputAudioRawFrame id=85
[print] ts=1775101493.476246 dir=Downstream frame=InputAudioRawFrame id=86
[print] ts=1775101493.477855 dir=Downstream frame=InputAudioRawFrame id=87
[print] ts=1775101493.479354 dir=Downstream frame=InputAudioRawFrame id=88
[print] ts=1775101493.480940 dir=Downstream frame=InputAudioRawFrame id=89
[print] ts=1775101493.485276 dir=Downstream frame=InputAudioRawFrame id=90
[print] ts=1775101493.487258 dir=Downstream frame=InputAudioRawFrame id=91
[print] ts=1775101493.488992 dir=Downstream frame=InputAudioRawFrame id=92
[print] ts=1775101493.490619 dir=Downstream frame=InputAudioRawFrame id=93
[print] ts=1775101493.492272 dir=Downstream frame=InputAudioRawFrame id=94
[print] ts=1775101493.493716 dir=Downstream frame=InputAudioRawFrame id=95
[print] ts=1775101493.495186 dir=Downstream frame=InputAudioRawFrame id=96
[print] ts=1775101493.496970 dir=Downstream frame=InputAudioRawFrame id=97
[print] ts=1775101493.502728 dir=Downstream frame=InputAudioRawFrame id=98
[print] ts=1775101493.504621 dir=Downstream frame=InputAudioRawFrame id=99
[print] ts=1775101493.506179 dir=Downstream frame=InputAudioRawFrame id=100
[print] ts=1775101493.507715 dir=Downstream frame=InputAudioRawFrame id=101
[print] ts=1775101493.509337 dir=Downstream frame=VADUserStartedSpeakingFrame id=1879
[print] ts=1775101493.509415 dir=Downstream frame=InputAudioRawFrame id=102
[print] ts=1775101493.510928 dir=Downstream frame=InputAudioRawFrame id=103
[print] ts=1775101493.517753 dir=Downstream frame=InputAudioRawFrame id=104
[print] ts=1775101493.519653 dir=Downstream frame=InputAudioRawFrame id=105
[print] ts=1775101493.521199 dir=Downstream frame=InputAudioRawFrame id=106
[print] ts=1775101493.522386 dir=Downstream frame=InputAudioRawFrame id=107
[print] ts=1775101493.524062 dir=Downstream frame=InputAudioRawFrame id=108
[print] ts=1775101493.525700 dir=Downstream frame=InputAudioRawFrame id=109
[print] ts=1775101493.526981 dir=Downstream frame=InputAudioRawFrame id=110
[print] ts=1775101493.534791 dir=Downstream frame=InputAudioRawFrame id=111
[print] ts=1775101493.536830 dir=Downstream frame=InputAudioRawFrame id=112
[print] ts=1775101493.538522 dir=Downstream frame=InputAudioRawFrame id=113
[print] ts=1775101493.539971 dir=Downstream frame=InputAudioRawFrame id=114
[print] ts=1775101493.541509 dir=Downstream frame=InputAudioRawFrame id=115
[print] ts=1775101493.542943 dir=Downstream frame=InputAudioRawFrame id=116
[print] ts=1775101493.544511 dir=Downstream frame=InputAudioRawFrame id=117
[print] ts=1775101493.546082 dir=Downstream frame=InputAudioRawFrame id=118
[print] ts=1775101493.548000 dir=Downstream frame=InputAudioRawFrame id=119
[print] ts=1775101493.549770 dir=Downstream frame=InputAudioRawFrame id=120
[print] ts=1775101493.551394 dir=Downstream frame=InputAudioRawFrame id=121
[print] ts=1775101493.553159 dir=Downstream frame=InputAudioRawFrame id=122
[print] ts=1775101493.554872 dir=Downstream frame=InputAudioRawFrame id=123
[print] ts=1775101493.556665 dir=Downstream frame=InputAudioRawFrame id=124
[print] ts=1775101493.558167 dir=Downstream frame=InputAudioRawFrame id=125
[print] ts=1775101493.559882 dir=Downstream frame=VADUserStartedSpeakingFrame id=1880
[print] ts=1775101493.559926 dir=Downstream frame=InputAudioRawFrame id=126
[print] ts=1775101493.561443 dir=Downstream frame=InputAudioRawFrame id=127
[print] ts=1775101493.563058 dir=Downstream frame=InputAudioRawFrame id=128
[print] ts=1775101493.568079 dir=Downstream frame=InputAudioRawFrame id=129
[print] ts=1775101493.569956 dir=Downstream frame=InputAudioRawFrame id=130
[print] ts=1775101493.571581 dir=Downstream frame=InputAudioRawFrame id=131
[print] ts=1775101493.573124 dir=Downstream frame=InputAudioRawFrame id=132
[print] ts=1775101493.574487 dir=Downstream frame=InputAudioRawFrame id=133
[print] ts=1775101493.576083 dir=Downstream frame=InputAudioRawFrame id=134
[print] ts=1775101493.577420 dir=Downstream frame=InputAudioRawFrame id=135
[print] ts=1775101493.579399 dir=Downstream frame=InputAudioRawFrame id=136
[print] ts=1775101493.581407 dir=Downstream frame=InputAudioRawFrame id=137
[print] ts=1775101493.583513 dir=Downstream frame=InputAudioRawFrame id=138
[print] ts=1775101493.585789 dir=Downstream frame=InputAudioRawFrame id=139
[print] ts=1775101493.587682 dir=Downstream frame=InputAudioRawFrame id=140
[print] ts=1775101493.589696 dir=Downstream frame=InputAudioRawFrame id=141
[print] ts=1775101493.591482 dir=Downstream frame=InputAudioRawFrame id=142
[print] ts=1775101493.593255 dir=Downstream frame=InputAudioRawFrame id=143
[print] ts=1775101493.595158 dir=Downstream frame=InputAudioRawFrame id=144
[print] ts=1775101493.598603 dir=Downstream frame=InputAudioRawFrame id=145
[print] ts=1775101493.600491 dir=Downstream frame=InputAudioRawFrame id=146
[print] ts=1775101493.602201 dir=Downstream frame=InputAudioRawFrame id=147
[print] ts=1775101493.603916 dir=Downstream frame=InputAudioRawFrame id=148
[print] ts=1775101493.605855 dir=Downstream frame=InputAudioRawFrame id=149
[print] ts=1775101493.607476 dir=Downstream frame=InputAudioRawFrame id=150
[print] ts=1775101493.613872 dir=Downstream frame=InputAudioRawFrame id=151
[print] ts=1775101493.615641 dir=Downstream frame=InputAudioRawFrame id=152
[print] ts=1775101493.617181 dir=Downstream frame=InputAudioRawFrame id=153
[print] ts=1775101493.618942 dir=Downstream frame=InputAudioRawFrame id=154
[print] ts=1775101493.620471 dir=Downstream frame=InputAudioRawFrame id=155
[print] ts=1775101493.622036 dir=Downstream frame=InputAudioRawFrame id=156
[print] ts=1775101493.624082 dir=Downstream frame=InputAudioRawFrame id=157
[print] ts=1775101493.625840 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1881
[print] ts=1775101493.625924 dir=Downstream frame=InputAudioRawFrame id=158
[print] ts=1775101493.627442 dir=Downstream frame=InputAudioRawFrame id=159
[print] ts=1775101493.628771 dir=Downstream frame=InputAudioRawFrame id=160
[print] ts=1775101493.630129 dir=Downstream frame=InputAudioRawFrame id=161
[print] ts=1775101493.631932 dir=Downstream frame=InputAudioRawFrame id=162
[print] ts=1775101493.633678 dir=Downstream frame=InputAudioRawFrame id=163
[print] ts=1775101493.636328 dir=Downstream frame=InputAudioRawFrame id=164
[print] ts=1775101493.638247 dir=Downstream frame=InputAudioRawFrame id=165
[print] ts=1775101493.640077 dir=Downstream frame=InputAudioRawFrame id=166
[print] ts=1775101493.643162 dir=Downstream frame=InputAudioRawFrame id=167
[feeder] sending Frame::end()
[print] ts=1775101493.644873 dir=Downstream frame=InputAudioRawFrame id=168
[print] ts=1775101493.646609 dir=Downstream frame=InputAudioRawFrame id=169
[print] ts=1775101493.648392 dir=Downstream frame=InputAudioRawFrame id=170
[print] ts=1775101493.650281 dir=Downstream frame=InputAudioRawFrame id=171
[print] ts=1775101493.653364 dir=Downstream frame=InputAudioRawFrame id=172
[print] ts=1775101493.655044 dir=Downstream frame=VADUserStartedSpeakingFrame id=1883
[print] ts=1775101493.655112 dir=Downstream frame=InputAudioRawFrame id=173
[print] ts=1775101493.656492 dir=Downstream frame=InputAudioRawFrame id=174
[print] ts=1775101493.657910 dir=Downstream frame=InputAudioRawFrame id=175
[print] ts=1775101493.659413 dir=Downstream frame=InputAudioRawFrame id=176
[print] ts=1775101493.660698 dir=Downstream frame=InputAudioRawFrame id=177
[print] ts=1775101493.662328 dir=Downstream frame=InputAudioRawFrame id=178
[print] ts=1775101493.663868 dir=Downstream frame=InputAudioRawFrame id=179
[print] ts=1775101493.665363 dir=Downstream frame=InputAudioRawFrame id=180
[print] ts=1775101493.667225 dir=Downstream frame=InputAudioRawFrame id=181
[print] ts=1775101493.669077 dir=Downstream frame=InputAudioRawFrame id=182
[print] ts=1775101493.670943 dir=Downstream frame=InputAudioRawFrame id=183
[print] ts=1775101493.672368 dir=Downstream frame=InputAudioRawFrame id=184
[print] ts=1775101493.673385 dir=Downstream frame=InputAudioRawFrame id=185
[print] ts=1775101493.674787 dir=Downstream frame=InputAudioRawFrame id=186
[print] ts=1775101493.675899 dir=Downstream frame=InputAudioRawFrame id=187
[print] ts=1775101493.677339 dir=Downstream frame=InputAudioRawFrame id=188
[print] ts=1775101493.678948 dir=Downstream frame=InputAudioRawFrame id=189
[print] ts=1775101493.680269 dir=Downstream frame=InputAudioRawFrame id=190
[print] ts=1775101493.682709 dir=Downstream frame=InputAudioRawFrame id=191
[print] ts=1775101493.684721 dir=Downstream frame=InputAudioRawFrame id=192
[print] ts=1775101493.686331 dir=Downstream frame=InputAudioRawFrame id=193
[print] ts=1775101493.687887 dir=Downstream frame=InputAudioRawFrame id=194
[print] ts=1775101493.689685 dir=Downstream frame=InputAudioRawFrame id=195
[print] ts=1775101493.690894 dir=Downstream frame=InputAudioRawFrame id=196
[print] ts=1775101493.692264 dir=Downstream frame=InputAudioRawFrame id=197
[print] ts=1775101493.693572 dir=Downstream frame=InputAudioRawFrame id=198
[print] ts=1775101493.695426 dir=Downstream frame=InputAudioRawFrame id=199
[print] ts=1775101493.696994 dir=Downstream frame=InputAudioRawFrame id=200
[print] ts=1775101493.698536 dir=Downstream frame=InputAudioRawFrame id=201
[print] ts=1775101493.700519 dir=Downstream frame=InputAudioRawFrame id=202
[print] ts=1775101493.702144 dir=Downstream frame=InputAudioRawFrame id=203
[print] ts=1775101493.705514 dir=Downstream frame=InputAudioRawFrame id=204
[print] ts=1775101493.707294 dir=Downstream frame=InputAudioRawFrame id=205
[print] ts=1775101493.708744 dir=Downstream frame=InputAudioRawFrame id=206
[print] ts=1775101493.709752 dir=Downstream frame=InputAudioRawFrame id=207
[print] ts=1775101493.710732 dir=Downstream frame=InputAudioRawFrame id=208
[print] ts=1775101493.712595 dir=Downstream frame=InputAudioRawFrame id=209
[print] ts=1775101493.714648 dir=Downstream frame=InputAudioRawFrame id=210
[print] ts=1775101493.716636 dir=Downstream frame=InputAudioRawFrame id=211
[print] ts=1775101493.718558 dir=Downstream frame=InputAudioRawFrame id=212
[print] ts=1775101493.720545 dir=Downstream frame=InputAudioRawFrame id=213
[print] ts=1775101493.722365 dir=Downstream frame=InputAudioRawFrame id=214
[print] ts=1775101493.724733 dir=Downstream frame=InputAudioRawFrame id=215
[print] ts=1775101493.726079 dir=Downstream frame=InputAudioRawFrame id=216
[print] ts=1775101493.727948 dir=Downstream frame=InputAudioRawFrame id=217
[print] ts=1775101493.729854 dir=Downstream frame=InputAudioRawFrame id=218
[print] ts=1775101493.732215 dir=Downstream frame=InputAudioRawFrame id=219
[print] ts=1775101493.734949 dir=Downstream frame=InputAudioRawFrame id=220
[print] ts=1775101493.736875 dir=Downstream frame=InputAudioRawFrame id=221
[print] ts=1775101493.738583 dir=Downstream frame=InputAudioRawFrame id=222
[print] ts=1775101493.739645 dir=Downstream frame=InputAudioRawFrame id=223
[print] ts=1775101493.741447 dir=Downstream frame=InputAudioRawFrame id=224
[print] ts=1775101493.742475 dir=Downstream frame=InputAudioRawFrame id=225
[print] ts=1775101493.744308 dir=Downstream frame=InputAudioRawFrame id=226
[print] ts=1775101493.745840 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1884
[print] ts=1775101493.745895 dir=Downstream frame=InputAudioRawFrame id=227
[print] ts=1775101493.747617 dir=Downstream frame=InputAudioRawFrame id=228
[print] ts=1775101493.749486 dir=Downstream frame=InputAudioRawFrame id=229
[print] ts=1775101493.751658 dir=Downstream frame=InputAudioRawFrame id=230
[print] ts=1775101493.753884 dir=Downstream frame=InputAudioRawFrame id=231
[print] ts=1775101493.756168 dir=Downstream frame=InputAudioRawFrame id=232
[print] ts=1775101493.758194 dir=Downstream frame=InputAudioRawFrame id=233
[print] ts=1775101493.760377 dir=Downstream frame=InputAudioRawFrame id=234
[print] ts=1775101493.761831 dir=Downstream frame=InputAudioRawFrame id=235
[print] ts=1775101493.762954 dir=Downstream frame=InputAudioRawFrame id=236
[print] ts=1775101493.763927 dir=Downstream frame=InputAudioRawFrame id=237
[print] ts=1775101493.766023 dir=Downstream frame=InputAudioRawFrame id=238
[print] ts=1775101493.768076 dir=Downstream frame=InputAudioRawFrame id=239
[print] ts=1775101493.769963 dir=Downstream frame=InputAudioRawFrame id=240
[print] ts=1775101493.771469 dir=Downstream frame=InputAudioRawFrame id=241
[print] ts=1775101493.772793 dir=Downstream frame=InputAudioRawFrame id=242
[print] ts=1775101493.774005 dir=Downstream frame=InputAudioRawFrame id=243
[print] ts=1775101493.775370 dir=Downstream frame=InputAudioRawFrame id=244
[print] ts=1775101493.777032 dir=Downstream frame=InputAudioRawFrame id=245
[print] ts=1775101493.778330 dir=Downstream frame=InputAudioRawFrame id=246
[print] ts=1775101493.780459 dir=Downstream frame=InputAudioRawFrame id=247
[print] ts=1775101493.781806 dir=Downstream frame=InputAudioRawFrame id=248
[print] ts=1775101493.783731 dir=Downstream frame=InputAudioRawFrame id=249
[print] ts=1775101493.785680 dir=Downstream frame=InputAudioRawFrame id=250
[print] ts=1775101493.787268 dir=Downstream frame=InputAudioRawFrame id=251
[print] ts=1775101493.788431 dir=Downstream frame=InputAudioRawFrame id=252
[print] ts=1775101493.789541 dir=Downstream frame=InputAudioRawFrame id=253
[print] ts=1775101493.790539 dir=Downstream frame=InputAudioRawFrame id=254
[print] ts=1775101493.791932 dir=Downstream frame=InputAudioRawFrame id=255
[print] ts=1775101493.793399 dir=Downstream frame=InputAudioRawFrame id=256
[print] ts=1775101493.794786 dir=Downstream frame=InputAudioRawFrame id=257
[print] ts=1775101493.795702 dir=Downstream frame=InputAudioRawFrame id=258
[print] ts=1775101493.797054 dir=Downstream frame=InputAudioRawFrame id=259
[print] ts=1775101493.799239 dir=Downstream frame=InputAudioRawFrame id=260
[print] ts=1775101493.801396 dir=Downstream frame=InputAudioRawFrame id=261
[print] ts=1775101493.803361 dir=Downstream frame=InputAudioRawFrame id=262
[print] ts=1775101493.805189 dir=Downstream frame=InputAudioRawFrame id=263
[print] ts=1775101493.806839 dir=Downstream frame=InputAudioRawFrame id=264
[print] ts=1775101493.808345 dir=Downstream frame=InputAudioRawFrame id=265
[print] ts=1775101493.809671 dir=Downstream frame=InputAudioRawFrame id=266
[print] ts=1775101493.811390 dir=Downstream frame=InputAudioRawFrame id=267
[print] ts=1775101493.812711 dir=Downstream frame=InputAudioRawFrame id=268
[print] ts=1775101493.814678 dir=Downstream frame=InputAudioRawFrame id=269
[print] ts=1775101493.816884 dir=Downstream frame=InputAudioRawFrame id=270
[print] ts=1775101493.818640 dir=Downstream frame=InputAudioRawFrame id=271
[print] ts=1775101493.819963 dir=Downstream frame=InputAudioRawFrame id=272
[print] ts=1775101493.821845 dir=Downstream frame=InputAudioRawFrame id=273
[print] ts=1775101493.823030 dir=Downstream frame=InputAudioRawFrame id=274
[print] ts=1775101493.824114 dir=Downstream frame=InputAudioRawFrame id=275
[print] ts=1775101493.825782 dir=Downstream frame=InputAudioRawFrame id=276
[print] ts=1775101493.827174 dir=Downstream frame=InputAudioRawFrame id=277
[print] ts=1775101493.828995 dir=Downstream frame=InputAudioRawFrame id=278
[print] ts=1775101493.831002 dir=Downstream frame=InputAudioRawFrame id=279
[print] ts=1775101493.833098 dir=Downstream frame=InputAudioRawFrame id=280
[print] ts=1775101493.835240 dir=Downstream frame=InputAudioRawFrame id=281
[print] ts=1775101493.837302 dir=Downstream frame=InputAudioRawFrame id=282
[print] ts=1775101493.838432 dir=Downstream frame=InputAudioRawFrame id=283
[print] ts=1775101493.839805 dir=Downstream frame=InputAudioRawFrame id=284
[print] ts=1775101493.841690 dir=Downstream frame=InputAudioRawFrame id=285
[print] ts=1775101493.842859 dir=Downstream frame=InputAudioRawFrame id=286
[print] ts=1775101493.843909 dir=Downstream frame=InputAudioRawFrame id=287
[print] ts=1775101493.845874 dir=Downstream frame=InputAudioRawFrame id=288
[print] ts=1775101493.847078 dir=Downstream frame=InputAudioRawFrame id=289
[print] ts=1775101493.849157 dir=Downstream frame=InputAudioRawFrame id=290
[print] ts=1775101493.851168 dir=Downstream frame=InputAudioRawFrame id=291
[print] ts=1775101493.852723 dir=Downstream frame=InputAudioRawFrame id=292
[print] ts=1775101493.854845 dir=Downstream frame=InputAudioRawFrame id=293
[print] ts=1775101493.856125 dir=Downstream frame=InputAudioRawFrame id=294
[print] ts=1775101493.857695 dir=Downstream frame=InputAudioRawFrame id=295
[print] ts=1775101493.859234 dir=Downstream frame=InputAudioRawFrame id=296
[print] ts=1775101493.860899 dir=Downstream frame=InputAudioRawFrame id=297
[print] ts=1775101493.862662 dir=Downstream frame=InputAudioRawFrame id=298
[print] ts=1775101493.864243 dir=Downstream frame=InputAudioRawFrame id=299
[print] ts=1775101493.865513 dir=Downstream frame=InputAudioRawFrame id=300
[print] ts=1775101493.867141 dir=Downstream frame=InputAudioRawFrame id=301
[print] ts=1775101493.869271 dir=Downstream frame=InputAudioRawFrame id=302
[print] ts=1775101493.870912 dir=Downstream frame=InputAudioRawFrame id=303
[print] ts=1775101493.872097 dir=Downstream frame=InputAudioRawFrame id=304
[print] ts=1775101493.873347 dir=Downstream frame=InputAudioRawFrame id=305
[print] ts=1775101493.874874 dir=Downstream frame=InputAudioRawFrame id=306
[print] ts=1775101493.876109 dir=Downstream frame=InputAudioRawFrame id=307
[print] ts=1775101493.877676 dir=Downstream frame=InputAudioRawFrame id=308
[print] ts=1775101493.879365 dir=Downstream frame=VADUserStartedSpeakingFrame id=1885
[print] ts=1775101493.879399 dir=Downstream frame=InputAudioRawFrame id=309
[print] ts=1775101493.880589 dir=Downstream frame=InputAudioRawFrame id=310
[print] ts=1775101493.881893 dir=Downstream frame=InputAudioRawFrame id=311
[print] ts=1775101493.883867 dir=Downstream frame=InputAudioRawFrame id=312
[print] ts=1775101493.886513 dir=Downstream frame=InputAudioRawFrame id=313
[print] ts=1775101493.887465 dir=Downstream frame=InputAudioRawFrame id=314
[print] ts=1775101493.888726 dir=Downstream frame=InputAudioRawFrame id=315
[print] ts=1775101493.890490 dir=Downstream frame=InputAudioRawFrame id=316
[print] ts=1775101493.891593 dir=Downstream frame=InputAudioRawFrame id=317
[print] ts=1775101493.893477 dir=Downstream frame=InputAudioRawFrame id=318
[print] ts=1775101493.895580 dir=Downstream frame=InputAudioRawFrame id=319
[print] ts=1775101493.897289 dir=Downstream frame=InputAudioRawFrame id=320
[print] ts=1775101493.899116 dir=Downstream frame=InputAudioRawFrame id=321
[print] ts=1775101493.901102 dir=Downstream frame=InputAudioRawFrame id=322
[print] ts=1775101493.903029 dir=Downstream frame=InputAudioRawFrame id=323
[print] ts=1775101493.903868 dir=Downstream frame=InputAudioRawFrame id=324
[print] ts=1775101493.905628 dir=Downstream frame=InputAudioRawFrame id=325
[print] ts=1775101493.907459 dir=Downstream frame=InputAudioRawFrame id=326
[print] ts=1775101493.908692 dir=Downstream frame=VADUserStartedSpeakingFrame id=1886
[print] ts=1775101493.908735 dir=Downstream frame=InputAudioRawFrame id=327
[print] ts=1775101493.910361 dir=Downstream frame=InputAudioRawFrame id=328
[print] ts=1775101493.912193 dir=Downstream frame=InputAudioRawFrame id=329
[print] ts=1775101493.913462 dir=Downstream frame=InputAudioRawFrame id=330
[print] ts=1775101493.916006 dir=Downstream frame=InputAudioRawFrame id=331
[print] ts=1775101493.917793 dir=Downstream frame=InputAudioRawFrame id=332
[print] ts=1775101493.919935 dir=Downstream frame=InputAudioRawFrame id=333
[print] ts=1775101493.921579 dir=Downstream frame=InputAudioRawFrame id=334
[print] ts=1775101493.923247 dir=Downstream frame=InputAudioRawFrame id=335
[print] ts=1775101493.924442 dir=Downstream frame=InputAudioRawFrame id=336
[print] ts=1775101493.925766 dir=Downstream frame=InputAudioRawFrame id=337
[print] ts=1775101493.927489 dir=Downstream frame=InputAudioRawFrame id=338
[print] ts=1775101493.929161 dir=Downstream frame=InputAudioRawFrame id=339
[print] ts=1775101493.930941 dir=Downstream frame=InputAudioRawFrame id=340
[print] ts=1775101493.932977 dir=Downstream frame=InputAudioRawFrame id=341
[print] ts=1775101493.935104 dir=Downstream frame=InputAudioRawFrame id=342
[print] ts=1775101493.937233 dir=Downstream frame=InputAudioRawFrame id=343
[print] ts=1775101493.939142 dir=Downstream frame=InputAudioRawFrame id=344
[print] ts=1775101493.941531 dir=Downstream frame=InputAudioRawFrame id=345
[print] ts=1775101493.943200 dir=Downstream frame=InputAudioRawFrame id=346
[print] ts=1775101493.945280 dir=Downstream frame=InputAudioRawFrame id=347
[print] ts=1775101493.947265 dir=Downstream frame=InputAudioRawFrame id=348
[print] ts=1775101493.949187 dir=Downstream frame=InputAudioRawFrame id=349
[print] ts=1775101493.951221 dir=Downstream frame=InputAudioRawFrame id=350
[print] ts=1775101493.953155 dir=Downstream frame=InputAudioRawFrame id=351
[print] ts=1775101493.955091 dir=Downstream frame=InputAudioRawFrame id=352
[print] ts=1775101493.956417 dir=Downstream frame=InputAudioRawFrame id=353
[print] ts=1775101493.958936 dir=Downstream frame=InputAudioRawFrame id=354
[print] ts=1775101493.960422 dir=Downstream frame=InputAudioRawFrame id=355
[print] ts=1775101493.961873 dir=Downstream frame=InputAudioRawFrame id=356
[print] ts=1775101493.963448 dir=Downstream frame=InputAudioRawFrame id=357
[print] ts=1775101493.965783 dir=Downstream frame=InputAudioRawFrame id=358
[print] ts=1775101493.967685 dir=Downstream frame=InputAudioRawFrame id=359
[print] ts=1775101493.969753 dir=Downstream frame=InputAudioRawFrame id=360
[print] ts=1775101493.971265 dir=Downstream frame=InputAudioRawFrame id=361
[print] ts=1775101493.972795 dir=Downstream frame=VADUserStartedSpeakingFrame id=1887
[print] ts=1775101493.972824 dir=Downstream frame=InputAudioRawFrame id=362
[print] ts=1775101493.974826 dir=Downstream frame=InputAudioRawFrame id=363
[print] ts=1775101493.975825 dir=Downstream frame=InputAudioRawFrame id=364
[print] ts=1775101493.977079 dir=Downstream frame=InputAudioRawFrame id=365
[print] ts=1775101493.978329 dir=Downstream frame=InputAudioRawFrame id=366
[print] ts=1775101493.980356 dir=Downstream frame=InputAudioRawFrame id=367
[print] ts=1775101493.982360 dir=Downstream frame=InputAudioRawFrame id=368
[print] ts=1775101493.987249 dir=Downstream frame=InputAudioRawFrame id=369
[print] ts=1775101493.988749 dir=Downstream frame=InputAudioRawFrame id=370
[print] ts=1775101493.989864 dir=Downstream frame=InputAudioRawFrame id=371
[print] ts=1775101493.990955 dir=Downstream frame=InputAudioRawFrame id=372
[print] ts=1775101493.992222 dir=Downstream frame=InputAudioRawFrame id=373
[print] ts=1775101493.993098 dir=Downstream frame=InputAudioRawFrame id=374
[print] ts=1775101493.994909 dir=Downstream frame=InputAudioRawFrame id=375
[print] ts=1775101493.996985 dir=Downstream frame=InputAudioRawFrame id=376
[print] ts=1775101493.998641 dir=Downstream frame=InputAudioRawFrame id=377
[print] ts=1775101494.002530 dir=Downstream frame=InputAudioRawFrame id=378
[print] ts=1775101494.003953 dir=Downstream frame=InputAudioRawFrame id=379
[print] ts=1775101494.005386 dir=Downstream frame=InputAudioRawFrame id=380
[print] ts=1775101494.006597 dir=Downstream frame=InputAudioRawFrame id=381
[print] ts=1775101494.007445 dir=Downstream frame=InputAudioRawFrame id=382
[print] ts=1775101494.009024 dir=Downstream frame=InputAudioRawFrame id=383
[print] ts=1775101494.010154 dir=Downstream frame=InputAudioRawFrame id=384
[print] ts=1775101494.011699 dir=Downstream frame=InputAudioRawFrame id=385
[print] ts=1775101494.012703 dir=Downstream frame=VADUserStartedSpeakingFrame id=1888
[print] ts=1775101494.012849 dir=Downstream frame=InputAudioRawFrame id=386
[print] ts=1775101494.014223 dir=Downstream frame=InputAudioRawFrame id=387
[print] ts=1775101494.015598 dir=Downstream frame=InputAudioRawFrame id=388
[print] ts=1775101494.017614 dir=Downstream frame=InputAudioRawFrame id=389
[print] ts=1775101494.019471 dir=Downstream frame=InputAudioRawFrame id=390
[print] ts=1775101494.020773 dir=Downstream frame=InputAudioRawFrame id=391
[print] ts=1775101494.022569 dir=Downstream frame=InputAudioRawFrame id=392
[print] ts=1775101494.024077 dir=Downstream frame=InputAudioRawFrame id=393
[print] ts=1775101494.025553 dir=Downstream frame=InputAudioRawFrame id=394
[print] ts=1775101494.027092 dir=Downstream frame=InputAudioRawFrame id=395
[print] ts=1775101494.028263 dir=Downstream frame=InputAudioRawFrame id=396
[print] ts=1775101494.030072 dir=Downstream frame=InputAudioRawFrame id=397
[print] ts=1775101494.032504 dir=Downstream frame=InputAudioRawFrame id=398
[print] ts=1775101494.034495 dir=Downstream frame=InputAudioRawFrame id=399
[print] ts=1775101494.036107 dir=Downstream frame=InputAudioRawFrame id=400
[print] ts=1775101494.037894 dir=Downstream frame=InputAudioRawFrame id=401
[print] ts=1775101494.039585 dir=Downstream frame=InputAudioRawFrame id=402
[print] ts=1775101494.040597 dir=Downstream frame=InputAudioRawFrame id=403
[print] ts=1775101494.042111 dir=Downstream frame=InputAudioRawFrame id=404
[print] ts=1775101494.044105 dir=Downstream frame=InputAudioRawFrame id=405
[print] ts=1775101494.045377 dir=Downstream frame=InputAudioRawFrame id=406
[print] ts=1775101494.046345 dir=Downstream frame=InputAudioRawFrame id=407
[print] ts=1775101494.048090 dir=Downstream frame=InputAudioRawFrame id=408
[print] ts=1775101494.050199 dir=Downstream frame=InputAudioRawFrame id=409
[print] ts=1775101494.051968 dir=Downstream frame=InputAudioRawFrame id=410
[print] ts=1775101494.053082 dir=Downstream frame=InputAudioRawFrame id=411
[print] ts=1775101494.054271 dir=Downstream frame=InputAudioRawFrame id=412
[print] ts=1775101494.055318 dir=Downstream frame=InputAudioRawFrame id=413
[print] ts=1775101494.057020 dir=Downstream frame=InputAudioRawFrame id=414
[print] ts=1775101494.057668 dir=Downstream frame=InputAudioRawFrame id=415
[print] ts=1775101494.059914 dir=Downstream frame=InputAudioRawFrame id=416
[print] ts=1775101494.061638 dir=Downstream frame=InputAudioRawFrame id=417
[print] ts=1775101494.063440 dir=Downstream frame=InputAudioRawFrame id=418
[print] ts=1775101494.064674 dir=Downstream frame=InputAudioRawFrame id=419
[print] ts=1775101494.066469 dir=Downstream frame=InputAudioRawFrame id=420
[print] ts=1775101494.067997 dir=Downstream frame=InputAudioRawFrame id=421
[print] ts=1775101494.069170 dir=Downstream frame=InputAudioRawFrame id=422
[print] ts=1775101494.070775 dir=Downstream frame=InputAudioRawFrame id=423
[print] ts=1775101494.072014 dir=Downstream frame=InputAudioRawFrame id=424
[print] ts=1775101494.072928 dir=Downstream frame=InputAudioRawFrame id=425
[print] ts=1775101494.073945 dir=Downstream frame=InputAudioRawFrame id=426
[print] ts=1775101494.075670 dir=Downstream frame=InputAudioRawFrame id=427
[print] ts=1775101494.076895 dir=Downstream frame=VADUserStartedSpeakingFrame id=1889
[print] ts=1775101494.076971 dir=Downstream frame=InputAudioRawFrame id=428
[print] ts=1775101494.077805 dir=Downstream frame=InputAudioRawFrame id=429
[print] ts=1775101494.078678 dir=Downstream frame=InputAudioRawFrame id=430
[print] ts=1775101494.079576 dir=Downstream frame=InputAudioRawFrame id=431
[print] ts=1775101494.080921 dir=Downstream frame=InputAudioRawFrame id=432
[print] ts=1775101494.083848 dir=Downstream frame=InputAudioRawFrame id=433
[print] ts=1775101494.085468 dir=Downstream frame=InputAudioRawFrame id=434
[print] ts=1775101494.086467 dir=Downstream frame=InputAudioRawFrame id=435
[print] ts=1775101494.087380 dir=Downstream frame=InputAudioRawFrame id=436
[print] ts=1775101494.088196 dir=Downstream frame=InputAudioRawFrame id=437
[print] ts=1775101494.089171 dir=Downstream frame=InputAudioRawFrame id=438
[print] ts=1775101494.090924 dir=Downstream frame=InputAudioRawFrame id=439
[print] ts=1775101494.091815 dir=Downstream frame=InputAudioRawFrame id=440
[print] ts=1775101494.092485 dir=Downstream frame=InputAudioRawFrame id=441
[print] ts=1775101494.093618 dir=Downstream frame=InputAudioRawFrame id=442
[print] ts=1775101494.094342 dir=Downstream frame=InputAudioRawFrame id=443
[print] ts=1775101494.095200 dir=Downstream frame=InputAudioRawFrame id=444
[print] ts=1775101494.095899 dir=Downstream frame=InputAudioRawFrame id=445
[print] ts=1775101494.096489 dir=Downstream frame=InputAudioRawFrame id=446
[print] ts=1775101494.097343 dir=Downstream frame=InputAudioRawFrame id=447
[print] ts=1775101494.098607 dir=Downstream frame=InputAudioRawFrame id=448
[print] ts=1775101494.100298 dir=Downstream frame=InputAudioRawFrame id=449
[print] ts=1775101494.101621 dir=Downstream frame=InputAudioRawFrame id=450
[print] ts=1775101494.102623 dir=Downstream frame=InputAudioRawFrame id=451
[print] ts=1775101494.103418 dir=Downstream frame=InputAudioRawFrame id=452
[print] ts=1775101494.104575 dir=Downstream frame=InputAudioRawFrame id=453
[print] ts=1775101494.105387 dir=Downstream frame=VADUserStartedSpeakingFrame id=1890
[print] ts=1775101494.105414 dir=Downstream frame=InputAudioRawFrame id=454
[print] ts=1775101494.106297 dir=Downstream frame=InputAudioRawFrame id=455
[print] ts=1775101494.107291 dir=Downstream frame=InputAudioRawFrame id=456
[print] ts=1775101494.107923 dir=Downstream frame=InputAudioRawFrame id=457
[print] ts=1775101494.108671 dir=Downstream frame=InputAudioRawFrame id=458
[print] ts=1775101494.109671 dir=Downstream frame=InputAudioRawFrame id=459
[print] ts=1775101494.110917 dir=Downstream frame=InputAudioRawFrame id=460
[print] ts=1775101494.112509 dir=Downstream frame=InputAudioRawFrame id=461
[print] ts=1775101494.113186 dir=Downstream frame=InputAudioRawFrame id=462
[print] ts=1775101494.113705 dir=Downstream frame=InputAudioRawFrame id=463
[print] ts=1775101494.114762 dir=Downstream frame=InputAudioRawFrame id=464
[print] ts=1775101494.116421 dir=Downstream frame=InputAudioRawFrame id=465
[print] ts=1775101494.118762 dir=Downstream frame=InputAudioRawFrame id=466
[print] ts=1775101494.119503 dir=Downstream frame=InputAudioRawFrame id=467
[print] ts=1775101494.120171 dir=Downstream frame=InputAudioRawFrame id=468
[print] ts=1775101494.120877 dir=Downstream frame=InputAudioRawFrame id=469
[print] ts=1775101494.121359 dir=Downstream frame=InputAudioRawFrame id=470
[print] ts=1775101494.122396 dir=Downstream frame=InputAudioRawFrame id=471
[print] ts=1775101494.122903 dir=Downstream frame=InputAudioRawFrame id=472
[print] ts=1775101494.123639 dir=Downstream frame=InputAudioRawFrame id=473
[print] ts=1775101494.124730 dir=Downstream frame=InputAudioRawFrame id=474
[print] ts=1775101494.125542 dir=Downstream frame=InputAudioRawFrame id=475
[print] ts=1775101494.126376 dir=Downstream frame=InputAudioRawFrame id=476
[print] ts=1775101494.126985 dir=Downstream frame=InputAudioRawFrame id=477
[print] ts=1775101494.127860 dir=Downstream frame=InputAudioRawFrame id=478
[print] ts=1775101494.128444 dir=Downstream frame=InputAudioRawFrame id=479
[print] ts=1775101494.129418 dir=Downstream frame=InputAudioRawFrame id=480
[print] ts=1775101494.130274 dir=Downstream frame=InputAudioRawFrame id=481
[print] ts=1775101494.132140 dir=Downstream frame=InputAudioRawFrame id=482
[print] ts=1775101494.133602 dir=Downstream frame=InputAudioRawFrame id=483
[print] ts=1775101494.135189 dir=Downstream frame=VADUserStartedSpeakingFrame id=1891
[print] ts=1775101494.135254 dir=Downstream frame=InputAudioRawFrame id=484
[print] ts=1775101494.135818 dir=Downstream frame=InputAudioRawFrame id=485
[print] ts=1775101494.136612 dir=Downstream frame=InputAudioRawFrame id=486
[print] ts=1775101494.137231 dir=Downstream frame=InputAudioRawFrame id=487
[print] ts=1775101494.137932 dir=Downstream frame=InputAudioRawFrame id=488
[print] ts=1775101494.139495 dir=Downstream frame=InputAudioRawFrame id=489
[print] ts=1775101494.140050 dir=Downstream frame=InputAudioRawFrame id=490
[print] ts=1775101494.140772 dir=Downstream frame=InputAudioRawFrame id=491
[print] ts=1775101494.141496 dir=Downstream frame=InputAudioRawFrame id=492
[print] ts=1775101494.142119 dir=Downstream frame=InputAudioRawFrame id=493
[print] ts=1775101494.142697 dir=Downstream frame=InputAudioRawFrame id=494
[print] ts=1775101494.143278 dir=Downstream frame=InputAudioRawFrame id=495
[print] ts=1775101494.143919 dir=Downstream frame=InputAudioRawFrame id=496
[print] ts=1775101494.144527 dir=Downstream frame=InputAudioRawFrame id=497
[print] ts=1775101494.145340 dir=Downstream frame=InputAudioRawFrame id=498
[print] ts=1775101494.146495 dir=Downstream frame=InputAudioRawFrame id=499
[print] ts=1775101494.147079 dir=Downstream frame=InputAudioRawFrame id=500
[print] ts=1775101494.148332 dir=Downstream frame=InputAudioRawFrame id=501
[print] ts=1775101494.149460 dir=Downstream frame=InputAudioRawFrame id=502
[print] ts=1775101494.150588 dir=Downstream frame=InputAudioRawFrame id=503
[print] ts=1775101494.152082 dir=Downstream frame=InputAudioRawFrame id=504
[print] ts=1775101494.153339 dir=Downstream frame=InputAudioRawFrame id=505
[print] ts=1775101494.154127 dir=Downstream frame=InputAudioRawFrame id=506
[print] ts=1775101494.154617 dir=Downstream frame=InputAudioRawFrame id=507
[print] ts=1775101494.155785 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1892
[print] ts=1775101494.155899 dir=Downstream frame=InputAudioRawFrame id=508
[print] ts=1775101494.156387 dir=Downstream frame=InputAudioRawFrame id=509
[print] ts=1775101494.158084 dir=Downstream frame=InputAudioRawFrame id=510
[print] ts=1775101494.158981 dir=Downstream frame=InputAudioRawFrame id=511
[print] ts=1775101494.159668 dir=Downstream frame=InputAudioRawFrame id=512
[print] ts=1775101494.160781 dir=Downstream frame=InputAudioRawFrame id=513
[print] ts=1775101494.161593 dir=Downstream frame=InputAudioRawFrame id=514
[print] ts=1775101494.162490 dir=Downstream frame=InputAudioRawFrame id=515
[print] ts=1775101494.163095 dir=Downstream frame=InputAudioRawFrame id=516
[print] ts=1775101494.163932 dir=Downstream frame=InputAudioRawFrame id=517
[print] ts=1775101494.165231 dir=Downstream frame=InputAudioRawFrame id=518
[print] ts=1775101494.166481 dir=Downstream frame=InputAudioRawFrame id=519
[print] ts=1775101494.168059 dir=Downstream frame=InputAudioRawFrame id=520
[print] ts=1775101494.168964 dir=Downstream frame=InputAudioRawFrame id=521
[print] ts=1775101494.169624 dir=Downstream frame=InputAudioRawFrame id=522
[print] ts=1775101494.170099 dir=Downstream frame=InputAudioRawFrame id=523
[print] ts=1775101494.171256 dir=Downstream frame=InputAudioRawFrame id=524
[print] ts=1775101494.172003 dir=Downstream frame=InputAudioRawFrame id=525
[print] ts=1775101494.172566 dir=Downstream frame=InputAudioRawFrame id=526
[print] ts=1775101494.173460 dir=Downstream frame=VADUserStartedSpeakingFrame id=1893
[print] ts=1775101494.173496 dir=Downstream frame=InputAudioRawFrame id=527
[print] ts=1775101494.175033 dir=Downstream frame=InputAudioRawFrame id=528
[print] ts=1775101494.175722 dir=Downstream frame=InputAudioRawFrame id=529
[print] ts=1775101494.176178 dir=Downstream frame=InputAudioRawFrame id=530
[print] ts=1775101494.177234 dir=Downstream frame=InputAudioRawFrame id=531
[print] ts=1775101494.178043 dir=Downstream frame=InputAudioRawFrame id=532
[print] ts=1775101494.178716 dir=Downstream frame=InputAudioRawFrame id=533
[print] ts=1775101494.179415 dir=Downstream frame=InputAudioRawFrame id=534
[print] ts=1775101494.180525 dir=Downstream frame=InputAudioRawFrame id=535
[print] ts=1775101494.181432 dir=Downstream frame=InputAudioRawFrame id=536
[print] ts=1775101494.183110 dir=Downstream frame=InputAudioRawFrame id=537
[print] ts=1775101494.185056 dir=Downstream frame=InputAudioRawFrame id=538
[print] ts=1775101494.185982 dir=Downstream frame=InputAudioRawFrame id=539
[print] ts=1775101494.186582 dir=Downstream frame=InputAudioRawFrame id=540
[print] ts=1775101494.187722 dir=Downstream frame=InputAudioRawFrame id=541
[print] ts=1775101494.188571 dir=Downstream frame=InputAudioRawFrame id=542
[print] ts=1775101494.189352 dir=Downstream frame=InputAudioRawFrame id=543
[print] ts=1775101494.190113 dir=Downstream frame=InputAudioRawFrame id=544
[print] ts=1775101494.190775 dir=Downstream frame=InputAudioRawFrame id=545
[print] ts=1775101494.191282 dir=Downstream frame=InputAudioRawFrame id=546
[print] ts=1775101494.191922 dir=Downstream frame=InputAudioRawFrame id=547
[print] ts=1775101494.192906 dir=Downstream frame=InputAudioRawFrame id=548
[print] ts=1775101494.193391 dir=Downstream frame=InputAudioRawFrame id=549
[print] ts=1775101494.194123 dir=Downstream frame=InputAudioRawFrame id=550
[print] ts=1775101494.195095 dir=Downstream frame=InputAudioRawFrame id=551
[print] ts=1775101494.195683 dir=Downstream frame=InputAudioRawFrame id=552
[print] ts=1775101494.196645 dir=Downstream frame=InputAudioRawFrame id=553
[print] ts=1775101494.197411 dir=Downstream frame=InputAudioRawFrame id=554
[print] ts=1775101494.198469 dir=Downstream frame=InputAudioRawFrame id=555
[print] ts=1775101494.199569 dir=Downstream frame=InputAudioRawFrame id=556
[print] ts=1775101494.200888 dir=Downstream frame=InputAudioRawFrame id=557
[print] ts=1775101494.201744 dir=Downstream frame=VADUserStartedSpeakingFrame id=1894
[print] ts=1775101494.201812 dir=Downstream frame=InputAudioRawFrame id=558
[print] ts=1775101494.202560 dir=Downstream frame=InputAudioRawFrame id=559
[print] ts=1775101494.203443 dir=Downstream frame=InputAudioRawFrame id=560
[print] ts=1775101494.204369 dir=Downstream frame=InputAudioRawFrame id=561
[print] ts=1775101494.204906 dir=Downstream frame=InputAudioRawFrame id=562
[print] ts=1775101494.205510 dir=Downstream frame=InputAudioRawFrame id=563
[print] ts=1775101494.206424 dir=Downstream frame=InputAudioRawFrame id=564
[print] ts=1775101494.207781 dir=Downstream frame=InputAudioRawFrame id=565
[print] ts=1775101494.209252 dir=Downstream frame=InputAudioRawFrame id=566
[print] ts=1775101494.210135 dir=Downstream frame=InputAudioRawFrame id=567
[print] ts=1775101494.210803 dir=Downstream frame=InputAudioRawFrame id=568
[print] ts=1775101494.212015 dir=Downstream frame=InputAudioRawFrame id=569
[print] ts=1775101494.212747 dir=Downstream frame=InputAudioRawFrame id=570
[print] ts=1775101494.213580 dir=Downstream frame=InputAudioRawFrame id=571
[print] ts=1775101494.214517 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1895
[print] ts=1775101494.214597 dir=Downstream frame=InputAudioRawFrame id=572
[print] ts=1775101494.216375 dir=Downstream frame=InputAudioRawFrame id=573
[print] ts=1775101494.217786 dir=Downstream frame=InputAudioRawFrame id=574
[print] ts=1775101494.218554 dir=Downstream frame=InputAudioRawFrame id=575
[print] ts=1775101494.219282 dir=Downstream frame=InputAudioRawFrame id=576
[print] ts=1775101494.220012 dir=Downstream frame=InputAudioRawFrame id=577
[print] ts=1775101494.220598 dir=Downstream frame=InputAudioRawFrame id=578
[print] ts=1775101494.221380 dir=Downstream frame=InputAudioRawFrame id=579
[print] ts=1775101494.222592 dir=Downstream frame=InputAudioRawFrame id=580
[print] ts=1775101494.223396 dir=Downstream frame=InputAudioRawFrame id=581
[print] ts=1775101494.224506 dir=Downstream frame=InputAudioRawFrame id=582
[print] ts=1775101494.225038 dir=Downstream frame=InputAudioRawFrame id=583
[print] ts=1775101494.225979 dir=Downstream frame=InputAudioRawFrame id=584
[print] ts=1775101494.226726 dir=Downstream frame=InputAudioRawFrame id=585
[print] ts=1775101494.227583 dir=Downstream frame=InputAudioRawFrame id=586
[print] ts=1775101494.228159 dir=Downstream frame=InputAudioRawFrame id=587
[print] ts=1775101494.229010 dir=Downstream frame=InputAudioRawFrame id=588
[print] ts=1775101494.230274 dir=Downstream frame=InputAudioRawFrame id=589
[print] ts=1775101494.230802 dir=Downstream frame=InputAudioRawFrame id=590
[print] ts=1775101494.231896 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1896
[print] ts=1775101494.231941 dir=Downstream frame=InputAudioRawFrame id=591
[print] ts=1775101494.233261 dir=Downstream frame=InputAudioRawFrame id=592
[print] ts=1775101494.234211 dir=Downstream frame=InputAudioRawFrame id=593
[print] ts=1775101494.235480 dir=Downstream frame=InputAudioRawFrame id=594
[print] ts=1775101494.236450 dir=Downstream frame=InputAudioRawFrame id=595
[print] ts=1775101494.237227 dir=Downstream frame=InputAudioRawFrame id=596
[print] ts=1775101494.238156 dir=Downstream frame=InputAudioRawFrame id=597
[print] ts=1775101494.238679 dir=Downstream frame=InputAudioRawFrame id=598
[print] ts=1775101494.239198 dir=Downstream frame=InputAudioRawFrame id=599
[print] ts=1775101494.239762 dir=Downstream frame=InputAudioRawFrame id=600
[print] ts=1775101494.241343 dir=Downstream frame=InputAudioRawFrame id=601
[print] ts=1775101494.241883 dir=Downstream frame=InputAudioRawFrame id=602
[print] ts=1775101494.243181 dir=Downstream frame=InputAudioRawFrame id=603
[print] ts=1775101494.243680 dir=Downstream frame=InputAudioRawFrame id=604
[print] ts=1775101494.244539 dir=Downstream frame=InputAudioRawFrame id=605
[print] ts=1775101494.245196 dir=Downstream frame=InputAudioRawFrame id=606
[print] ts=1775101494.246006 dir=Downstream frame=InputAudioRawFrame id=607
[print] ts=1775101494.246901 dir=Downstream frame=InputAudioRawFrame id=608
[print] ts=1775101494.247616 dir=Downstream frame=VADUserStartedSpeakingFrame id=1897
[print] ts=1775101494.247693 dir=Downstream frame=InputAudioRawFrame id=609
[print] ts=1775101494.248999 dir=Downstream frame=InputAudioRawFrame id=610
[print] ts=1775101494.250531 dir=Downstream frame=InputAudioRawFrame id=611
[print] ts=1775101494.251603 dir=Downstream frame=InputAudioRawFrame id=612
[print] ts=1775101494.252162 dir=Downstream frame=InputAudioRawFrame id=613
[print] ts=1775101494.252903 dir=Downstream frame=InputAudioRawFrame id=614
[print] ts=1775101494.253600 dir=Downstream frame=InputAudioRawFrame id=615
[print] ts=1775101494.254550 dir=Downstream frame=InputAudioRawFrame id=616
[print] ts=1775101494.255397 dir=Downstream frame=InputAudioRawFrame id=617
[print] ts=1775101494.256373 dir=Downstream frame=InputAudioRawFrame id=618
[print] ts=1775101494.257637 dir=Downstream frame=InputAudioRawFrame id=619
[print] ts=1775101494.258718 dir=Downstream frame=InputAudioRawFrame id=620
[print] ts=1775101494.259444 dir=Downstream frame=InputAudioRawFrame id=621
[print] ts=1775101494.260173 dir=Downstream frame=InputAudioRawFrame id=622
[print] ts=1775101494.260721 dir=Downstream frame=InputAudioRawFrame id=623
[print] ts=1775101494.261663 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1898
[print] ts=1775101494.261694 dir=Downstream frame=InputAudioRawFrame id=624
[print] ts=1775101494.262336 dir=Downstream frame=InputAudioRawFrame id=625
[print] ts=1775101494.263334 dir=Downstream frame=InputAudioRawFrame id=626
[print] ts=1775101494.264354 dir=Downstream frame=InputAudioRawFrame id=627
[print] ts=1775101494.266439 dir=Downstream frame=InputAudioRawFrame id=628
[print] ts=1775101494.267752 dir=Downstream frame=InputAudioRawFrame id=629
[print] ts=1775101494.268536 dir=Downstream frame=InputAudioRawFrame id=630
[print] ts=1775101494.269220 dir=Downstream frame=InputAudioRawFrame id=631
[print] ts=1775101494.269933 dir=Downstream frame=InputAudioRawFrame id=632
[print] ts=1775101494.271133 dir=Downstream frame=InputAudioRawFrame id=633
[print] ts=1775101494.272173 dir=Downstream frame=InputAudioRawFrame id=634
[print] ts=1775101494.273136 dir=Downstream frame=InputAudioRawFrame id=635
[print] ts=1775101494.273840 dir=Downstream frame=InputAudioRawFrame id=636
[print] ts=1775101494.274978 dir=Downstream frame=InputAudioRawFrame id=637
[print] ts=1775101494.275635 dir=Downstream frame=InputAudioRawFrame id=638
[print] ts=1775101494.276660 dir=Downstream frame=InputAudioRawFrame id=639
[print] ts=1775101494.277420 dir=Downstream frame=InputAudioRawFrame id=640
[print] ts=1775101494.278426 dir=Downstream frame=InputAudioRawFrame id=641
[print] ts=1775101494.279330 dir=Downstream frame=InputAudioRawFrame id=642
[print] ts=1775101494.279806 dir=Downstream frame=InputAudioRawFrame id=643
[print] ts=1775101494.280634 dir=Downstream frame=InputAudioRawFrame id=644
[print] ts=1775101494.281576 dir=Downstream frame=InputAudioRawFrame id=645
[print] ts=1775101494.283376 dir=Downstream frame=InputAudioRawFrame id=646
[print] ts=1775101494.285012 dir=Downstream frame=InputAudioRawFrame id=647
[print] ts=1775101494.286010 dir=Downstream frame=InputAudioRawFrame id=648
[print] ts=1775101494.286842 dir=Downstream frame=InputAudioRawFrame id=649
[print] ts=1775101494.287736 dir=Downstream frame=InputAudioRawFrame id=650
[print] ts=1775101494.288256 dir=Downstream frame=InputAudioRawFrame id=651
[print] ts=1775101494.289534 dir=Downstream frame=InputAudioRawFrame id=652
[print] ts=1775101494.290373 dir=Downstream frame=InputAudioRawFrame id=653
[print] ts=1775101494.291106 dir=Downstream frame=VADUserStartedSpeakingFrame id=1899
[print] ts=1775101494.291136 dir=Downstream frame=InputAudioRawFrame id=654
[print] ts=1775101494.291932 dir=Downstream frame=InputAudioRawFrame id=655
[print] ts=1775101494.292798 dir=Downstream frame=InputAudioRawFrame id=656
[print] ts=1775101494.293520 dir=Downstream frame=InputAudioRawFrame id=657
[print] ts=1775101494.294405 dir=Downstream frame=InputAudioRawFrame id=658
[print] ts=1775101494.294989 dir=Downstream frame=InputAudioRawFrame id=659
[print] ts=1775101494.295867 dir=Downstream frame=InputAudioRawFrame id=660
[print] ts=1775101494.296883 dir=Downstream frame=InputAudioRawFrame id=661
[print] ts=1775101494.298605 dir=Downstream frame=InputAudioRawFrame id=662
[print] ts=1775101494.300291 dir=Downstream frame=InputAudioRawFrame id=663
[print] ts=1775101494.301523 dir=Downstream frame=InputAudioRawFrame id=664
[print] ts=1775101494.302200 dir=Downstream frame=InputAudioRawFrame id=665
[print] ts=1775101494.303088 dir=Downstream frame=InputAudioRawFrame id=666
[print] ts=1775101494.304311 dir=Downstream frame=InputAudioRawFrame id=667
[print] ts=1775101494.305296 dir=Downstream frame=InputAudioRawFrame id=668
[print] ts=1775101494.306395 dir=Downstream frame=InputAudioRawFrame id=669
[print] ts=1775101494.307356 dir=Downstream frame=InputAudioRawFrame id=670
[print] ts=1775101494.308457 dir=Downstream frame=InputAudioRawFrame id=671
[print] ts=1775101494.308915 dir=Downstream frame=InputAudioRawFrame id=672
[print] ts=1775101494.309811 dir=Downstream frame=InputAudioRawFrame id=673
[print] ts=1775101494.310508 dir=Downstream frame=InputAudioRawFrame id=674
[print] ts=1775101494.311019 dir=Downstream frame=InputAudioRawFrame id=675
[print] ts=1775101494.312491 dir=Downstream frame=InputAudioRawFrame id=676
[print] ts=1775101494.313083 dir=Downstream frame=InputAudioRawFrame id=677
[print] ts=1775101494.313861 dir=Downstream frame=InputAudioRawFrame id=678
[print] ts=1775101494.314958 dir=Downstream frame=InputAudioRawFrame id=679
[print] ts=1775101494.316648 dir=Downstream frame=InputAudioRawFrame id=680
[print] ts=1775101494.318526 dir=Downstream frame=InputAudioRawFrame id=681
[print] ts=1775101494.319648 dir=Downstream frame=InputAudioRawFrame id=682
[print] ts=1775101494.320840 dir=Downstream frame=InputAudioRawFrame id=683
[print] ts=1775101494.321664 dir=Downstream frame=InputAudioRawFrame id=684
[print] ts=1775101494.322299 dir=Downstream frame=InputAudioRawFrame id=685
[print] ts=1775101494.323334 dir=Downstream frame=InputAudioRawFrame id=686
[print] ts=1775101494.324166 dir=Downstream frame=InputAudioRawFrame id=687
[print] ts=1775101494.324897 dir=Downstream frame=InputAudioRawFrame id=688
[print] ts=1775101494.326020 dir=Downstream frame=InputAudioRawFrame id=689
[print] ts=1775101494.326650 dir=Downstream frame=InputAudioRawFrame id=690
[print] ts=1775101494.327487 dir=Downstream frame=InputAudioRawFrame id=691
[print] ts=1775101494.328296 dir=Downstream frame=InputAudioRawFrame id=692
[print] ts=1775101494.329180 dir=Downstream frame=InputAudioRawFrame id=693
[print] ts=1775101494.329818 dir=Downstream frame=InputAudioRawFrame id=694
[print] ts=1775101494.330890 dir=Downstream frame=InputAudioRawFrame id=695
[print] ts=1775101494.332263 dir=Downstream frame=InputAudioRawFrame id=696
[print] ts=1775101494.333607 dir=Downstream frame=InputAudioRawFrame id=697
[print] ts=1775101494.334800 dir=Downstream frame=InputAudioRawFrame id=698
[print] ts=1775101494.335968 dir=Downstream frame=InputAudioRawFrame id=699
[print] ts=1775101494.336663 dir=Downstream frame=InputAudioRawFrame id=700
[print] ts=1775101494.337504 dir=Downstream frame=InputAudioRawFrame id=701
[print] ts=1775101494.337984 dir=Downstream frame=InputAudioRawFrame id=702
[print] ts=1775101494.339491 dir=Downstream frame=InputAudioRawFrame id=703
[print] ts=1775101494.340066 dir=Downstream frame=InputAudioRawFrame id=704
[print] ts=1775101494.341109 dir=Downstream frame=InputAudioRawFrame id=705
[print] ts=1775101494.341948 dir=Downstream frame=InputAudioRawFrame id=706
[print] ts=1775101494.342548 dir=Downstream frame=InputAudioRawFrame id=707
[print] ts=1775101494.343773 dir=Downstream frame=InputAudioRawFrame id=708
[print] ts=1775101494.344574 dir=Downstream frame=InputAudioRawFrame id=709
[print] ts=1775101494.345851 dir=Downstream frame=InputAudioRawFrame id=710
[print] ts=1775101494.346931 dir=Downstream frame=InputAudioRawFrame id=711
[print] ts=1775101494.349023 dir=Downstream frame=InputAudioRawFrame id=712
[print] ts=1775101494.350557 dir=Downstream frame=InputAudioRawFrame id=713
[print] ts=1775101494.352349 dir=Downstream frame=InputAudioRawFrame id=714
[print] ts=1775101494.354168 dir=Downstream frame=InputAudioRawFrame id=715
[print] ts=1775101494.355477 dir=Downstream frame=InputAudioRawFrame id=716
[print] ts=1775101494.357551 dir=Downstream frame=InputAudioRawFrame id=717
[print] ts=1775101494.359305 dir=Downstream frame=InputAudioRawFrame id=718
[print] ts=1775101494.361250 dir=Downstream frame=InputAudioRawFrame id=719
[print] ts=1775101494.362823 dir=Downstream frame=InputAudioRawFrame id=720
[print] ts=1775101494.363743 dir=Downstream frame=InputAudioRawFrame id=721
[print] ts=1775101494.365884 dir=Downstream frame=InputAudioRawFrame id=722
[print] ts=1775101494.367120 dir=Downstream frame=InputAudioRawFrame id=723
[print] ts=1775101494.368898 dir=Downstream frame=InputAudioRawFrame id=724
[print] ts=1775101494.370234 dir=Downstream frame=InputAudioRawFrame id=725
[print] ts=1775101494.371314 dir=Downstream frame=InputAudioRawFrame id=726
[print] ts=1775101494.372615 dir=Downstream frame=InputAudioRawFrame id=727
[print] ts=1775101494.373422 dir=Downstream frame=InputAudioRawFrame id=728
[print] ts=1775101494.375089 dir=Downstream frame=InputAudioRawFrame id=729
[print] ts=1775101494.375778 dir=Downstream frame=InputAudioRawFrame id=730
[print] ts=1775101494.376693 dir=Downstream frame=InputAudioRawFrame id=731
[print] ts=1775101494.377501 dir=Downstream frame=InputAudioRawFrame id=732
[print] ts=1775101494.378572 dir=Downstream frame=InputAudioRawFrame id=733
[print] ts=1775101494.379089 dir=Downstream frame=InputAudioRawFrame id=734
[print] ts=1775101494.380380 dir=Downstream frame=InputAudioRawFrame id=735
[print] ts=1775101494.381385 dir=Downstream frame=InputAudioRawFrame id=736
[print] ts=1775101494.383015 dir=Downstream frame=InputAudioRawFrame id=737
[print] ts=1775101494.385101 dir=Downstream frame=InputAudioRawFrame id=738
[print] ts=1775101494.388697 dir=Downstream frame=InputAudioRawFrame id=739
[print] ts=1775101494.390385 dir=Downstream frame=InputAudioRawFrame id=740
[print] ts=1775101494.391391 dir=Downstream frame=InputAudioRawFrame id=741
[print] ts=1775101494.392401 dir=Downstream frame=InputAudioRawFrame id=742
[print] ts=1775101494.393913 dir=Downstream frame=InputAudioRawFrame id=743
[print] ts=1775101494.395054 dir=Downstream frame=InputAudioRawFrame id=744
[print] ts=1775101494.396897 dir=Downstream frame=InputAudioRawFrame id=745
[print] ts=1775101494.399124 dir=Downstream frame=InputAudioRawFrame id=746
[print] ts=1775101494.400829 dir=Downstream frame=InputAudioRawFrame id=747
[print] ts=1775101494.402680 dir=Downstream frame=InputAudioRawFrame id=748
[print] ts=1775101494.404439 dir=Downstream frame=InputAudioRawFrame id=749
[print] ts=1775101494.406078 dir=Downstream frame=InputAudioRawFrame id=750
[print] ts=1775101494.407650 dir=Downstream frame=InputAudioRawFrame id=751
[print] ts=1775101494.409476 dir=Downstream frame=InputAudioRawFrame id=752
[print] ts=1775101494.410845 dir=Downstream frame=InputAudioRawFrame id=753
[print] ts=1775101494.412274 dir=Downstream frame=InputAudioRawFrame id=754
[print] ts=1775101494.413508 dir=Downstream frame=InputAudioRawFrame id=755
[print] ts=1775101494.415154 dir=Downstream frame=InputAudioRawFrame id=756
[print] ts=1775101494.416554 dir=Downstream frame=InputAudioRawFrame id=757
[print] ts=1775101494.418398 dir=Downstream frame=InputAudioRawFrame id=758
[print] ts=1775101494.419901 dir=Downstream frame=InputAudioRawFrame id=759
[print] ts=1775101494.421888 dir=Downstream frame=InputAudioRawFrame id=760
[print] ts=1775101494.424156 dir=Downstream frame=InputAudioRawFrame id=761
[print] ts=1775101494.428433 dir=Downstream frame=InputAudioRawFrame id=762
[print] ts=1775101494.430106 dir=Downstream frame=InputAudioRawFrame id=763
[print] ts=1775101494.432069 dir=Downstream frame=InputAudioRawFrame id=764
[print] ts=1775101494.433721 dir=Downstream frame=InputAudioRawFrame id=765
[print] ts=1775101494.436089 dir=Downstream frame=InputAudioRawFrame id=766
[print] ts=1775101494.437609 dir=Downstream frame=InputAudioRawFrame id=767
[print] ts=1775101494.439507 dir=Downstream frame=InputAudioRawFrame id=768
[print] ts=1775101494.440856 dir=Downstream frame=InputAudioRawFrame id=769
[print] ts=1775101494.442911 dir=Downstream frame=InputAudioRawFrame id=770
[print] ts=1775101494.444373 dir=Downstream frame=InputAudioRawFrame id=771
[print] ts=1775101494.446448 dir=Downstream frame=InputAudioRawFrame id=772
[print] ts=1775101494.447963 dir=Downstream frame=InputAudioRawFrame id=773
[print] ts=1775101494.449994 dir=Downstream frame=InputAudioRawFrame id=774
[print] ts=1775101494.451785 dir=Downstream frame=InputAudioRawFrame id=775
[print] ts=1775101494.455299 dir=Downstream frame=InputAudioRawFrame id=776
[print] ts=1775101494.456689 dir=Downstream frame=InputAudioRawFrame id=777
[print] ts=1775101494.458598 dir=Downstream frame=InputAudioRawFrame id=778
[print] ts=1775101494.459940 dir=Downstream frame=InputAudioRawFrame id=779
[print] ts=1775101494.461651 dir=Downstream frame=InputAudioRawFrame id=780
[print] ts=1775101494.463049 dir=Downstream frame=InputAudioRawFrame id=781
[print] ts=1775101494.465254 dir=Downstream frame=InputAudioRawFrame id=782
[print] ts=1775101494.466878 dir=Downstream frame=InputAudioRawFrame id=783
[print] ts=1775101494.468804 dir=Downstream frame=InputAudioRawFrame id=784
[print] ts=1775101494.470253 dir=Downstream frame=InputAudioRawFrame id=785
[print] ts=1775101494.472304 dir=Downstream frame=InputAudioRawFrame id=786
[print] ts=1775101494.473610 dir=Downstream frame=InputAudioRawFrame id=787
[print] ts=1775101494.475596 dir=Downstream frame=InputAudioRawFrame id=788
[print] ts=1775101494.476897 dir=Downstream frame=InputAudioRawFrame id=789
[print] ts=1775101494.479342 dir=Downstream frame=InputAudioRawFrame id=790
[print] ts=1775101494.480707 dir=Downstream frame=InputAudioRawFrame id=791
[print] ts=1775101494.482935 dir=Downstream frame=InputAudioRawFrame id=792
[print] ts=1775101494.485786 dir=Downstream frame=InputAudioRawFrame id=793
[print] ts=1775101494.487777 dir=Downstream frame=InputAudioRawFrame id=794
[print] ts=1775101494.489698 dir=Downstream frame=InputAudioRawFrame id=795
[print] ts=1775101494.490982 dir=Downstream frame=InputAudioRawFrame id=796
[print] ts=1775101494.492339 dir=Downstream frame=InputAudioRawFrame id=797
[print] ts=1775101494.494445 dir=Downstream frame=InputAudioRawFrame id=798
[print] ts=1775101494.496361 dir=Downstream frame=InputAudioRawFrame id=799
[print] ts=1775101494.498470 dir=Downstream frame=InputAudioRawFrame id=800
[print] ts=1775101494.500879 dir=Downstream frame=InputAudioRawFrame id=801
[print] ts=1775101494.502630 dir=Downstream frame=InputAudioRawFrame id=802
[print] ts=1775101494.504087 dir=Downstream frame=InputAudioRawFrame id=803
[print] ts=1775101494.506230 dir=Downstream frame=InputAudioRawFrame id=804
[print] ts=1775101494.507418 dir=Downstream frame=InputAudioRawFrame id=805
[print] ts=1775101494.509556 dir=Downstream frame=InputAudioRawFrame id=806
[print] ts=1775101494.511388 dir=Downstream frame=InputAudioRawFrame id=807
[print] ts=1775101494.513431 dir=Downstream frame=InputAudioRawFrame id=808
[print] ts=1775101494.515403 dir=Downstream frame=InputAudioRawFrame id=809
[print] ts=1775101494.518112 dir=Downstream frame=InputAudioRawFrame id=810
[print] ts=1775101494.519819 dir=Downstream frame=InputAudioRawFrame id=811
[print] ts=1775101494.521637 dir=Downstream frame=InputAudioRawFrame id=812
[print] ts=1775101494.523083 dir=Downstream frame=InputAudioRawFrame id=813
[print] ts=1775101494.524936 dir=Downstream frame=InputAudioRawFrame id=814
[print] ts=1775101494.526391 dir=Downstream frame=InputAudioRawFrame id=815
[print] ts=1775101494.527833 dir=Downstream frame=InputAudioRawFrame id=816
[print] ts=1775101494.529083 dir=Downstream frame=InputAudioRawFrame id=817
[print] ts=1775101494.531298 dir=Downstream frame=InputAudioRawFrame id=818
[print] ts=1775101494.533066 dir=Downstream frame=InputAudioRawFrame id=819
[print] ts=1775101494.535116 dir=Downstream frame=InputAudioRawFrame id=820
[print] ts=1775101494.536702 dir=Downstream frame=InputAudioRawFrame id=821
[print] ts=1775101494.538671 dir=Downstream frame=InputAudioRawFrame id=822
[print] ts=1775101494.540599 dir=Downstream frame=InputAudioRawFrame id=823
[print] ts=1775101494.542207 dir=Downstream frame=InputAudioRawFrame id=824
[print] ts=1775101494.543664 dir=Downstream frame=InputAudioRawFrame id=825
[print] ts=1775101494.546205 dir=Downstream frame=InputAudioRawFrame id=826
[print] ts=1775101494.547969 dir=Downstream frame=InputAudioRawFrame id=827
[print] ts=1775101494.549855 dir=Downstream frame=InputAudioRawFrame id=828
[print] ts=1775101494.551242 dir=Downstream frame=InputAudioRawFrame id=829
[print] ts=1775101494.553399 dir=Downstream frame=VADUserStartedSpeakingFrame id=1900
[print] ts=1775101494.553530 dir=Downstream frame=InputAudioRawFrame id=830
[print] ts=1775101494.554880 dir=Downstream frame=InputAudioRawFrame id=831
[print] ts=1775101494.556454 dir=Downstream frame=InputAudioRawFrame id=832
[print] ts=1775101494.557845 dir=Downstream frame=InputAudioRawFrame id=833
[print] ts=1775101494.559415 dir=Downstream frame=InputAudioRawFrame id=834
[print] ts=1775101494.560467 dir=Downstream frame=InputAudioRawFrame id=835
[print] ts=1775101494.561940 dir=Downstream frame=InputAudioRawFrame id=836
[print] ts=1775101494.563658 dir=Downstream frame=InputAudioRawFrame id=837
[print] ts=1775101494.565860 dir=Downstream frame=InputAudioRawFrame id=838
[print] ts=1775101494.567431 dir=Downstream frame=InputAudioRawFrame id=839
[print] ts=1775101494.569689 dir=Downstream frame=InputAudioRawFrame id=840
[print] ts=1775101494.570661 dir=Downstream frame=InputAudioRawFrame id=841
[print] ts=1775101494.572438 dir=Downstream frame=InputAudioRawFrame id=842
[print] ts=1775101494.573601 dir=Downstream frame=InputAudioRawFrame id=843
[print] ts=1775101494.575322 dir=Downstream frame=InputAudioRawFrame id=844
[print] ts=1775101494.577075 dir=Downstream frame=InputAudioRawFrame id=845
[print] ts=1775101494.578933 dir=Downstream frame=InputAudioRawFrame id=846
[print] ts=1775101494.580455 dir=Downstream frame=InputAudioRawFrame id=847
[print] ts=1775101494.582132 dir=Downstream frame=InputAudioRawFrame id=848
[print] ts=1775101494.583613 dir=Downstream frame=InputAudioRawFrame id=849
[print] ts=1775101494.585532 dir=Downstream frame=InputAudioRawFrame id=850
[print] ts=1775101494.586871 dir=Downstream frame=InputAudioRawFrame id=851
[print] ts=1775101494.588306 dir=Downstream frame=InputAudioRawFrame id=852
[print] ts=1775101494.589610 dir=Downstream frame=InputAudioRawFrame id=853
[print] ts=1775101494.591241 dir=Downstream frame=InputAudioRawFrame id=854
[print] ts=1775101494.592437 dir=Downstream frame=InputAudioRawFrame id=855
[print] ts=1775101494.595248 dir=Downstream frame=InputAudioRawFrame id=856
[print] ts=1775101494.596910 dir=Downstream frame=InputAudioRawFrame id=857
[print] ts=1775101494.599241 dir=Downstream frame=InputAudioRawFrame id=858
[print] ts=1775101494.600935 dir=Downstream frame=InputAudioRawFrame id=859
[print] ts=1775101494.603088 dir=Downstream frame=InputAudioRawFrame id=860
[print] ts=1775101494.604496 dir=Downstream frame=InputAudioRawFrame id=861
[print] ts=1775101494.605827 dir=Downstream frame=InputAudioRawFrame id=862
[print] ts=1775101494.606947 dir=Downstream frame=InputAudioRawFrame id=863
[print] ts=1775101494.608825 dir=Downstream frame=InputAudioRawFrame id=864
[print] ts=1775101494.610193 dir=Downstream frame=InputAudioRawFrame id=865
[print] ts=1775101494.611615 dir=Downstream frame=InputAudioRawFrame id=866
[print] ts=1775101494.612800 dir=Downstream frame=InputAudioRawFrame id=867
[print] ts=1775101494.615015 dir=Downstream frame=InputAudioRawFrame id=868
[print] ts=1775101494.616686 dir=Downstream frame=InputAudioRawFrame id=869
[print] ts=1775101494.619011 dir=Downstream frame=InputAudioRawFrame id=870
[print] ts=1775101494.620217 dir=Downstream frame=InputAudioRawFrame id=871
[print] ts=1775101494.623337 dir=Downstream frame=InputAudioRawFrame id=872
[print] ts=1775101494.625089 dir=Downstream frame=InputAudioRawFrame id=873
[print] ts=1775101494.626976 dir=Downstream frame=InputAudioRawFrame id=874
[print] ts=1775101494.628118 dir=Downstream frame=InputAudioRawFrame id=875
[print] ts=1775101494.629869 dir=Downstream frame=InputAudioRawFrame id=876
[print] ts=1775101494.631281 dir=Downstream frame=InputAudioRawFrame id=877
[print] ts=1775101494.633457 dir=Downstream frame=InputAudioRawFrame id=878
[print] ts=1775101494.634856 dir=Downstream frame=InputAudioRawFrame id=879
[print] ts=1775101494.636522 dir=Downstream frame=InputAudioRawFrame id=880
[print] ts=1775101494.637889 dir=Downstream frame=InputAudioRawFrame id=881
[print] ts=1775101494.639949 dir=Downstream frame=InputAudioRawFrame id=882
[print] ts=1775101494.641364 dir=Downstream frame=InputAudioRawFrame id=883
[print] ts=1775101494.643515 dir=Downstream frame=InputAudioRawFrame id=884
[print] ts=1775101494.645478 dir=Downstream frame=InputAudioRawFrame id=885
[print] ts=1775101494.648688 dir=Downstream frame=InputAudioRawFrame id=886
[print] ts=1775101494.649902 dir=Downstream frame=InputAudioRawFrame id=887
[print] ts=1775101494.651972 dir=Downstream frame=InputAudioRawFrame id=888
[print] ts=1775101494.653741 dir=Downstream frame=InputAudioRawFrame id=889
[print] ts=1775101494.655837 dir=Downstream frame=InputAudioRawFrame id=890
[print] ts=1775101494.657332 dir=Downstream frame=InputAudioRawFrame id=891
[print] ts=1775101494.659205 dir=Downstream frame=InputAudioRawFrame id=892
[print] ts=1775101494.660756 dir=Downstream frame=InputAudioRawFrame id=893
[print] ts=1775101494.661940 dir=Downstream frame=InputAudioRawFrame id=894
[print] ts=1775101494.663810 dir=Downstream frame=InputAudioRawFrame id=895
[print] ts=1775101494.666001 dir=Downstream frame=InputAudioRawFrame id=896
[print] ts=1775101494.668355 dir=Downstream frame=InputAudioRawFrame id=897
[print] ts=1775101494.670365 dir=Downstream frame=InputAudioRawFrame id=898
[print] ts=1775101494.671908 dir=Downstream frame=InputAudioRawFrame id=899
[print] ts=1775101494.673866 dir=Downstream frame=InputAudioRawFrame id=900
[print] ts=1775101494.676101 dir=Downstream frame=VADUserStartedSpeakingFrame id=1901
[print] ts=1775101494.676200 dir=Downstream frame=InputAudioRawFrame id=901
[print] ts=1775101494.679210 dir=Downstream frame=InputAudioRawFrame id=902
[print] ts=1775101494.684883 dir=Downstream frame=InputAudioRawFrame id=903
[print] ts=1775101494.686971 dir=Downstream frame=InputAudioRawFrame id=904
[print] ts=1775101494.688744 dir=Downstream frame=InputAudioRawFrame id=905
[print] ts=1775101494.690780 dir=Downstream frame=InputAudioRawFrame id=906
[print] ts=1775101494.692070 dir=Downstream frame=InputAudioRawFrame id=907
[print] ts=1775101494.693217 dir=Downstream frame=InputAudioRawFrame id=908
[print] ts=1775101494.694559 dir=Downstream frame=InputAudioRawFrame id=909
[print] ts=1775101494.696129 dir=Downstream frame=InputAudioRawFrame id=910
[print] ts=1775101494.697588 dir=Downstream frame=InputAudioRawFrame id=911
[print] ts=1775101494.699320 dir=Downstream frame=InputAudioRawFrame id=912
[print] ts=1775101494.700853 dir=Downstream frame=InputAudioRawFrame id=913
[print] ts=1775101494.702834 dir=Downstream frame=InputAudioRawFrame id=914
[print] ts=1775101494.704124 dir=Downstream frame=InputAudioRawFrame id=915
[print] ts=1775101494.707889 dir=Downstream frame=InputAudioRawFrame id=916
[print] ts=1775101494.710835 dir=Downstream frame=InputAudioRawFrame id=917
[print] ts=1775101494.712457 dir=Downstream frame=InputAudioRawFrame id=918
[print] ts=1775101494.713719 dir=Downstream frame=InputAudioRawFrame id=919
[print] ts=1775101494.715915 dir=Downstream frame=InputAudioRawFrame id=920
[print] ts=1775101494.717410 dir=Downstream frame=InputAudioRawFrame id=921
[print] ts=1775101494.719489 dir=Downstream frame=InputAudioRawFrame id=922
[print] ts=1775101494.720920 dir=Downstream frame=InputAudioRawFrame id=923
[print] ts=1775101494.722912 dir=Downstream frame=InputAudioRawFrame id=924
[print] ts=1775101494.724560 dir=Downstream frame=InputAudioRawFrame id=925
[print] ts=1775101494.726600 dir=Downstream frame=InputAudioRawFrame id=926
[print] ts=1775101494.727839 dir=Downstream frame=InputAudioRawFrame id=927
[print] ts=1775101494.729329 dir=Downstream frame=InputAudioRawFrame id=928
[print] ts=1775101494.730693 dir=Downstream frame=InputAudioRawFrame id=929
[print] ts=1775101494.735197 dir=Downstream frame=InputAudioRawFrame id=930
[print] ts=1775101494.736692 dir=Downstream frame=InputAudioRawFrame id=931
[print] ts=1775101494.738384 dir=Downstream frame=InputAudioRawFrame id=932
[print] ts=1775101494.739852 dir=Downstream frame=InputAudioRawFrame id=933
[print] ts=1775101494.741671 dir=Downstream frame=InputAudioRawFrame id=934
[print] ts=1775101494.743361 dir=Downstream frame=InputAudioRawFrame id=935
[print] ts=1775101494.745206 dir=Downstream frame=InputAudioRawFrame id=936
[print] ts=1775101494.746886 dir=Downstream frame=InputAudioRawFrame id=937
[print] ts=1775101494.749054 dir=Downstream frame=InputAudioRawFrame id=938
[print] ts=1775101494.750609 dir=Downstream frame=InputAudioRawFrame id=939
[print] ts=1775101494.752540 dir=Downstream frame=InputAudioRawFrame id=940
[print] ts=1775101494.754038 dir=Downstream frame=InputAudioRawFrame id=941
[print] ts=1775101494.755417 dir=Downstream frame=InputAudioRawFrame id=942
[print] ts=1775101494.756524 dir=Downstream frame=InputAudioRawFrame id=943
[print] ts=1775101494.758513 dir=Downstream frame=InputAudioRawFrame id=944
[print] ts=1775101494.759819 dir=Downstream frame=InputAudioRawFrame id=945
[print] ts=1775101494.761919 dir=Downstream frame=InputAudioRawFrame id=946
[print] ts=1775101494.763643 dir=Downstream frame=InputAudioRawFrame id=947
[print] ts=1775101494.765769 dir=Downstream frame=InputAudioRawFrame id=948
[print] ts=1775101494.767411 dir=Downstream frame=InputAudioRawFrame id=949
[print] ts=1775101494.769211 dir=Downstream frame=InputAudioRawFrame id=950
[print] ts=1775101494.771026 dir=Downstream frame=InputAudioRawFrame id=951
[print] ts=1775101494.773199 dir=Downstream frame=InputAudioRawFrame id=952
[print] ts=1775101494.774696 dir=Downstream frame=InputAudioRawFrame id=953
[print] ts=1775101494.776547 dir=Downstream frame=InputAudioRawFrame id=954
[print] ts=1775101494.777753 dir=Downstream frame=InputAudioRawFrame id=955
[print] ts=1775101494.779615 dir=Downstream frame=InputAudioRawFrame id=956
[print] ts=1775101494.781834 dir=Downstream frame=InputAudioRawFrame id=957
[print] ts=1775101494.783503 dir=Downstream frame=InputAudioRawFrame id=958
[print] ts=1775101494.786184 dir=Downstream frame=InputAudioRawFrame id=959
[print] ts=1775101494.787959 dir=Downstream frame=InputAudioRawFrame id=960
[print] ts=1775101494.789689 dir=Downstream frame=InputAudioRawFrame id=961
[print] ts=1775101494.791570 dir=Downstream frame=InputAudioRawFrame id=962
[print] ts=1775101494.793181 dir=Downstream frame=InputAudioRawFrame id=963
[print] ts=1775101494.794580 dir=Downstream frame=InputAudioRawFrame id=964
[print] ts=1775101494.795874 dir=Downstream frame=InputAudioRawFrame id=965
[print] ts=1775101494.797839 dir=Downstream frame=InputAudioRawFrame id=966
[print] ts=1775101494.799500 dir=Downstream frame=InputAudioRawFrame id=967
[print] ts=1775101494.801418 dir=Downstream frame=VADUserStartedSpeakingFrame id=1902
[print] ts=1775101494.801503 dir=Downstream frame=InputAudioRawFrame id=968
[print] ts=1775101494.803162 dir=Downstream frame=InputAudioRawFrame id=969
[print] ts=1775101494.805326 dir=Downstream frame=InputAudioRawFrame id=970
[print] ts=1775101494.806576 dir=Downstream frame=InputAudioRawFrame id=971
[print] ts=1775101494.808462 dir=Downstream frame=InputAudioRawFrame id=972
[print] ts=1775101494.809825 dir=Downstream frame=InputAudioRawFrame id=973
[print] ts=1775101494.810964 dir=Downstream frame=InputAudioRawFrame id=974
[print] ts=1775101494.812157 dir=Downstream frame=InputAudioRawFrame id=975
[print] ts=1775101494.814179 dir=Downstream frame=InputAudioRawFrame id=976
[print] ts=1775101494.815545 dir=Downstream frame=InputAudioRawFrame id=977
[print] ts=1775101494.818788 dir=Downstream frame=InputAudioRawFrame id=978
[print] ts=1775101494.819971 dir=Downstream frame=InputAudioRawFrame id=979
[print] ts=1775101494.821619 dir=Downstream frame=InputAudioRawFrame id=980
[print] ts=1775101494.823526 dir=Downstream frame=InputAudioRawFrame id=981
[print] ts=1775101494.825531 dir=Downstream frame=InputAudioRawFrame id=982
[print] ts=1775101494.827008 dir=Downstream frame=InputAudioRawFrame id=983
[print] ts=1775101494.829100 dir=Downstream frame=InputAudioRawFrame id=984
[print] ts=1775101494.830361 dir=Downstream frame=InputAudioRawFrame id=985
[print] ts=1775101494.832076 dir=Downstream frame=InputAudioRawFrame id=986
[print] ts=1775101494.833474 dir=Downstream frame=InputAudioRawFrame id=987
[print] ts=1775101494.835735 dir=Downstream frame=InputAudioRawFrame id=988
[print] ts=1775101494.837352 dir=Downstream frame=InputAudioRawFrame id=989
[print] ts=1775101494.840627 dir=Downstream frame=InputAudioRawFrame id=990
[print] ts=1775101494.842353 dir=Downstream frame=InputAudioRawFrame id=991
[print] ts=1775101494.845000 dir=Downstream frame=InputAudioRawFrame id=992
[print] ts=1775101494.846403 dir=Downstream frame=InputAudioRawFrame id=993
[print] ts=1775101494.847716 dir=Downstream frame=InputAudioRawFrame id=994
[print] ts=1775101494.850037 dir=Downstream frame=InputAudioRawFrame id=995
[print] ts=1775101494.852004 dir=Downstream frame=InputAudioRawFrame id=996
[print] ts=1775101494.853578 dir=Downstream frame=InputAudioRawFrame id=997
[print] ts=1775101494.855779 dir=Downstream frame=InputAudioRawFrame id=998
[print] ts=1775101494.857180 dir=Downstream frame=InputAudioRawFrame id=999
[print] ts=1775101494.858876 dir=Downstream frame=InputAudioRawFrame id=1000
[print] ts=1775101494.860341 dir=Downstream frame=InputAudioRawFrame id=1001
[print] ts=1775101494.862170 dir=Downstream frame=InputAudioRawFrame id=1002
[print] ts=1775101494.863421 dir=Downstream frame=InputAudioRawFrame id=1003
[print] ts=1775101494.865105 dir=Downstream frame=InputAudioRawFrame id=1004
[print] ts=1775101494.866432 dir=Downstream frame=InputAudioRawFrame id=1005
[print] ts=1775101494.870292 dir=Downstream frame=InputAudioRawFrame id=1006
[print] ts=1775101494.872567 dir=Downstream frame=InputAudioRawFrame id=1007
[print] ts=1775101494.874575 dir=Downstream frame=InputAudioRawFrame id=1008
[print] ts=1775101494.875919 dir=Downstream frame=InputAudioRawFrame id=1009
[print] ts=1775101494.877663 dir=Downstream frame=InputAudioRawFrame id=1010
[print] ts=1775101494.879345 dir=Downstream frame=InputAudioRawFrame id=1011
[print] ts=1775101494.881063 dir=Downstream frame=InputAudioRawFrame id=1012
[print] ts=1775101494.882938 dir=Downstream frame=InputAudioRawFrame id=1013
[print] ts=1775101494.884696 dir=Downstream frame=InputAudioRawFrame id=1014
[print] ts=1775101494.886080 dir=Downstream frame=InputAudioRawFrame id=1015
[print] ts=1775101494.888101 dir=Downstream frame=InputAudioRawFrame id=1016
[print] ts=1775101494.889441 dir=Downstream frame=InputAudioRawFrame id=1017
[print] ts=1775101494.891871 dir=Downstream frame=InputAudioRawFrame id=1018
[print] ts=1775101494.893222 dir=Downstream frame=InputAudioRawFrame id=1019
[print] ts=1775101494.894952 dir=Downstream frame=InputAudioRawFrame id=1020
[print] ts=1775101494.896402 dir=Downstream frame=InputAudioRawFrame id=1021
[print] ts=1775101494.898023 dir=Downstream frame=InputAudioRawFrame id=1022
[print] ts=1775101494.899473 dir=Downstream frame=InputAudioRawFrame id=1023
[print] ts=1775101494.901184 dir=Downstream frame=InputAudioRawFrame id=1024
[print] ts=1775101494.902497 dir=Downstream frame=InputAudioRawFrame id=1025
[print] ts=1775101494.904583 dir=Downstream frame=InputAudioRawFrame id=1026
[print] ts=1775101494.906104 dir=Downstream frame=InputAudioRawFrame id=1027
[print] ts=1775101494.908003 dir=Downstream frame=VADUserStartedSpeakingFrame id=1903
[print] ts=1775101494.908087 dir=Downstream frame=InputAudioRawFrame id=1028
[print] ts=1775101494.909402 dir=Downstream frame=InputAudioRawFrame id=1029
[print] ts=1775101494.912265 dir=Downstream frame=InputAudioRawFrame id=1030
[print] ts=1775101494.914381 dir=Downstream frame=InputAudioRawFrame id=1031
[print] ts=1775101494.916621 dir=Downstream frame=InputAudioRawFrame id=1032
[print] ts=1775101494.918131 dir=Downstream frame=InputAudioRawFrame id=1033
[print] ts=1775101494.920136 dir=Downstream frame=InputAudioRawFrame id=1034
[print] ts=1775101494.921460 dir=Downstream frame=InputAudioRawFrame id=1035
[print] ts=1775101494.923359 dir=Downstream frame=InputAudioRawFrame id=1036
[print] ts=1775101494.924762 dir=Downstream frame=InputAudioRawFrame id=1037
[print] ts=1775101494.926867 dir=Downstream frame=InputAudioRawFrame id=1038
[print] ts=1775101494.929195 dir=Downstream frame=InputAudioRawFrame id=1039
[print] ts=1775101494.930485 dir=Downstream frame=InputAudioRawFrame id=1040
[print] ts=1775101494.931981 dir=Downstream frame=InputAudioRawFrame id=1041
[print] ts=1775101494.934161 dir=Downstream frame=InputAudioRawFrame id=1042
[print] ts=1775101494.935532 dir=Downstream frame=InputAudioRawFrame id=1043
[print] ts=1775101494.937628 dir=Downstream frame=InputAudioRawFrame id=1044
[print] ts=1775101494.939056 dir=Downstream frame=InputAudioRawFrame id=1045
[print] ts=1775101494.940993 dir=Downstream frame=InputAudioRawFrame id=1046
[print] ts=1775101494.942231 dir=Downstream frame=InputAudioRawFrame id=1047
[print] ts=1775101494.944158 dir=Downstream frame=InputAudioRawFrame id=1048
[print] ts=1775101494.945981 dir=Downstream frame=InputAudioRawFrame id=1049
[print] ts=1775101494.947991 dir=Downstream frame=InputAudioRawFrame id=1050
[print] ts=1775101494.949632 dir=Downstream frame=InputAudioRawFrame id=1051
[print] ts=1775101494.951853 dir=Downstream frame=InputAudioRawFrame id=1052
[print] ts=1775101494.953392 dir=Downstream frame=InputAudioRawFrame id=1053
[print] ts=1775101494.955524 dir=Downstream frame=InputAudioRawFrame id=1054
[print] ts=1775101494.956935 dir=Downstream frame=InputAudioRawFrame id=1055
[print] ts=1775101494.958314 dir=Downstream frame=InputAudioRawFrame id=1056
[print] ts=1775101494.959499 dir=Downstream frame=InputAudioRawFrame id=1057
[print] ts=1775101494.961329 dir=Downstream frame=InputAudioRawFrame id=1058
[print] ts=1775101494.962646 dir=Downstream frame=InputAudioRawFrame id=1059
[print] ts=1775101494.966741 dir=Downstream frame=InputAudioRawFrame id=1060
[print] ts=1775101494.968972 dir=Downstream frame=InputAudioRawFrame id=1061
[print] ts=1775101494.970985 dir=Downstream frame=InputAudioRawFrame id=1062
[print] ts=1775101494.973140 dir=Downstream frame=InputAudioRawFrame id=1063
[print] ts=1775101494.975283 dir=Downstream frame=InputAudioRawFrame id=1064
[print] ts=1775101494.976728 dir=Downstream frame=InputAudioRawFrame id=1065
[print] ts=1775101494.978800 dir=Downstream frame=InputAudioRawFrame id=1066
[print] ts=1775101494.980192 dir=Downstream frame=InputAudioRawFrame id=1067
[print] ts=1775101494.981605 dir=Downstream frame=InputAudioRawFrame id=1068
[print] ts=1775101494.983121 dir=Downstream frame=InputAudioRawFrame id=1069
[print] ts=1775101494.985195 dir=Downstream frame=InputAudioRawFrame id=1070
[print] ts=1775101494.986667 dir=Downstream frame=InputAudioRawFrame id=1071
[print] ts=1775101494.988549 dir=Downstream frame=InputAudioRawFrame id=1072
[print] ts=1775101494.990108 dir=Downstream frame=InputAudioRawFrame id=1073
[print] ts=1775101494.992000 dir=Downstream frame=InputAudioRawFrame id=1074
[print] ts=1775101494.993759 dir=Downstream frame=InputAudioRawFrame id=1075
[print] ts=1775101494.997779 dir=Downstream frame=InputAudioRawFrame id=1076
[print] ts=1775101494.999224 dir=Downstream frame=InputAudioRawFrame id=1077
[print] ts=1775101495.001143 dir=Downstream frame=InputAudioRawFrame id=1078
[print] ts=1775101495.002944 dir=Downstream frame=InputAudioRawFrame id=1079
[print] ts=1775101495.004915 dir=Downstream frame=InputAudioRawFrame id=1080
[print] ts=1775101495.006221 dir=Downstream frame=InputAudioRawFrame id=1081
[print] ts=1775101495.007484 dir=Downstream frame=InputAudioRawFrame id=1082
[print] ts=1775101495.008828 dir=Downstream frame=InputAudioRawFrame id=1083
[print] ts=1775101495.010869 dir=Downstream frame=InputAudioRawFrame id=1084
[print] ts=1775101495.012162 dir=Downstream frame=InputAudioRawFrame id=1085
[print] ts=1775101495.014016 dir=Downstream frame=InputAudioRawFrame id=1086
[print] ts=1775101495.015926 dir=Downstream frame=InputAudioRawFrame id=1087
[print] ts=1775101495.017954 dir=Downstream frame=InputAudioRawFrame id=1088
[print] ts=1775101495.019397 dir=Downstream frame=InputAudioRawFrame id=1089
[print] ts=1775101495.021872 dir=Downstream frame=InputAudioRawFrame id=1090
[print] ts=1775101495.023797 dir=Downstream frame=InputAudioRawFrame id=1091
[print] ts=1775101495.025584 dir=Downstream frame=InputAudioRawFrame id=1092
[print] ts=1775101495.028131 dir=Downstream frame=VADUserStartedSpeakingFrame id=1904
[print] ts=1775101495.028211 dir=Downstream frame=InputAudioRawFrame id=1093
[print] ts=1775101495.029840 dir=Downstream frame=InputAudioRawFrame id=1094
[print] ts=1775101495.032030 dir=Downstream frame=InputAudioRawFrame id=1095
[print] ts=1775101495.033889 dir=Downstream frame=InputAudioRawFrame id=1096
[print] ts=1775101495.035504 dir=Downstream frame=InputAudioRawFrame id=1097
[print] ts=1775101495.037302 dir=Downstream frame=InputAudioRawFrame id=1098
[print] ts=1775101495.038609 dir=Downstream frame=InputAudioRawFrame id=1099
[print] ts=1775101495.039685 dir=Downstream frame=InputAudioRawFrame id=1100
[print] ts=1775101495.041448 dir=Downstream frame=InputAudioRawFrame id=1101
[print] ts=1775101495.043495 dir=Downstream frame=InputAudioRawFrame id=1102
[print] ts=1775101495.044929 dir=Downstream frame=InputAudioRawFrame id=1103
[print] ts=1775101495.047925 dir=Downstream frame=InputAudioRawFrame id=1104
[print] ts=1775101495.049461 dir=Downstream frame=InputAudioRawFrame id=1105
[print] ts=1775101495.051540 dir=Downstream frame=InputAudioRawFrame id=1106
[print] ts=1775101495.053387 dir=Downstream frame=InputAudioRawFrame id=1107
[print] ts=1775101495.055111 dir=Downstream frame=InputAudioRawFrame id=1108
[print] ts=1775101495.057751 dir=Downstream frame=InputAudioRawFrame id=1109
[print] ts=1775101495.059721 dir=Downstream frame=InputAudioRawFrame id=1110
[print] ts=1775101495.060766 dir=Downstream frame=InputAudioRawFrame id=1111
[print] ts=1775101495.062646 dir=Downstream frame=InputAudioRawFrame id=1112
[print] ts=1775101495.064115 dir=Downstream frame=InputAudioRawFrame id=1113
[print] ts=1775101495.066277 dir=Downstream frame=InputAudioRawFrame id=1114
[print] ts=1775101495.067714 dir=Downstream frame=InputAudioRawFrame id=1115
[print] ts=1775101495.069705 dir=Downstream frame=InputAudioRawFrame id=1116
[print] ts=1775101495.070764 dir=Downstream frame=InputAudioRawFrame id=1117
[print] ts=1775101495.074070 dir=Downstream frame=InputAudioRawFrame id=1118
[print] ts=1775101495.075794 dir=Downstream frame=InputAudioRawFrame id=1119
[print] ts=1775101495.077318 dir=Downstream frame=InputAudioRawFrame id=1120
[print] ts=1775101495.078457 dir=Downstream frame=InputAudioRawFrame id=1121
[print] ts=1775101495.080353 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1905
[print] ts=1775101495.080436 dir=Downstream frame=InputAudioRawFrame id=1122
[print] ts=1775101495.081923 dir=Downstream frame=InputAudioRawFrame id=1123
[print] ts=1775101495.083622 dir=Downstream frame=InputAudioRawFrame id=1124
[print] ts=1775101495.084867 dir=Downstream frame=InputAudioRawFrame id=1125
[print] ts=1775101495.086712 dir=Downstream frame=InputAudioRawFrame id=1126
[print] ts=1775101495.087995 dir=Downstream frame=InputAudioRawFrame id=1127
[print] ts=1775101495.089117 dir=Downstream frame=InputAudioRawFrame id=1128
[print] ts=1775101495.090835 dir=Downstream frame=InputAudioRawFrame id=1129
[print] ts=1775101495.092111 dir=Downstream frame=InputAudioRawFrame id=1130
[print] ts=1775101495.093375 dir=Downstream frame=InputAudioRawFrame id=1131
[print] ts=1775101495.096003 dir=Downstream frame=InputAudioRawFrame id=1132
[print] ts=1775101495.098014 dir=Downstream frame=InputAudioRawFrame id=1133
[print] ts=1775101495.100147 dir=Downstream frame=InputAudioRawFrame id=1134
[print] ts=1775101495.101797 dir=Downstream frame=VADUserStartedSpeakingFrame id=1906
[print] ts=1775101495.101879 dir=Downstream frame=InputAudioRawFrame id=1135
[print] ts=1775101495.103359 dir=Downstream frame=InputAudioRawFrame id=1136
[print] ts=1775101495.104922 dir=Downstream frame=InputAudioRawFrame id=1137
[print] ts=1775101495.106501 dir=Downstream frame=InputAudioRawFrame id=1138
[print] ts=1775101495.108402 dir=Downstream frame=InputAudioRawFrame id=1139
[print] ts=1775101495.110565 dir=Downstream frame=InputAudioRawFrame id=1140
[print] ts=1775101495.112080 dir=Downstream frame=InputAudioRawFrame id=1141
[print] ts=1775101495.113292 dir=Downstream frame=InputAudioRawFrame id=1142
[print] ts=1775101495.114578 dir=Downstream frame=InputAudioRawFrame id=1143
[print] ts=1775101495.116630 dir=Downstream frame=InputAudioRawFrame id=1144
[print] ts=1775101495.117794 dir=Downstream frame=InputAudioRawFrame id=1145
[print] ts=1775101495.119604 dir=Downstream frame=InputAudioRawFrame id=1146
[print] ts=1775101495.121096 dir=Downstream frame=InputAudioRawFrame id=1147
[print] ts=1775101495.123718 dir=Downstream frame=InputAudioRawFrame id=1148
[print] ts=1775101495.125371 dir=Downstream frame=InputAudioRawFrame id=1149
[print] ts=1775101495.127253 dir=Downstream frame=InputAudioRawFrame id=1150
[print] ts=1775101495.128628 dir=Downstream frame=InputAudioRawFrame id=1151
[print] ts=1775101495.130380 dir=Downstream frame=InputAudioRawFrame id=1152
[print] ts=1775101495.132622 dir=Downstream frame=InputAudioRawFrame id=1153
[print] ts=1775101495.134921 dir=Downstream frame=VADUserStartedSpeakingFrame id=1907
[print] ts=1775101495.135017 dir=Downstream frame=InputAudioRawFrame id=1154
[print] ts=1775101495.136860 dir=Downstream frame=InputAudioRawFrame id=1155
[print] ts=1775101495.138869 dir=Downstream frame=InputAudioRawFrame id=1156
[print] ts=1775101495.140218 dir=Downstream frame=InputAudioRawFrame id=1157
[print] ts=1775101495.142197 dir=Downstream frame=InputAudioRawFrame id=1158
[print] ts=1775101495.143566 dir=Downstream frame=InputAudioRawFrame id=1159
[print] ts=1775101495.145542 dir=Downstream frame=InputAudioRawFrame id=1160
[print] ts=1775101495.146942 dir=Downstream frame=InputAudioRawFrame id=1161
[print] ts=1775101495.148721 dir=Downstream frame=InputAudioRawFrame id=1162
[print] ts=1775101495.150419 dir=Downstream frame=InputAudioRawFrame id=1163
[print] ts=1775101495.152647 dir=Downstream frame=InputAudioRawFrame id=1164
[print] ts=1775101495.153930 dir=Downstream frame=InputAudioRawFrame id=1165
[print] ts=1775101495.155870 dir=Downstream frame=InputAudioRawFrame id=1166
[print] ts=1775101495.157631 dir=Downstream frame=InputAudioRawFrame id=1167
[print] ts=1775101495.159681 dir=Downstream frame=InputAudioRawFrame id=1168
[print] ts=1775101495.161267 dir=Downstream frame=InputAudioRawFrame id=1169
[print] ts=1775101495.163405 dir=Downstream frame=InputAudioRawFrame id=1170
[print] ts=1775101495.164947 dir=Downstream frame=InputAudioRawFrame id=1171
[print] ts=1775101495.167011 dir=Downstream frame=InputAudioRawFrame id=1172
[print] ts=1775101495.169008 dir=Downstream frame=InputAudioRawFrame id=1173
[print] ts=1775101495.170563 dir=Downstream frame=InputAudioRawFrame id=1174
[print] ts=1775101495.172209 dir=Downstream frame=InputAudioRawFrame id=1175
[print] ts=1775101495.173893 dir=Downstream frame=InputAudioRawFrame id=1176
[print] ts=1775101495.176080 dir=Downstream frame=InputAudioRawFrame id=1177
[print] ts=1775101495.179998 dir=Downstream frame=InputAudioRawFrame id=1178
[print] ts=1775101495.180800 dir=Downstream frame=InputAudioRawFrame id=1179
[print] ts=1775101495.182522 dir=Downstream frame=InputAudioRawFrame id=1180
[print] ts=1775101495.184257 dir=Downstream frame=InputAudioRawFrame id=1181
[print] ts=1775101495.185925 dir=Downstream frame=InputAudioRawFrame id=1182
[print] ts=1775101495.187842 dir=Downstream frame=InputAudioRawFrame id=1183
[print] ts=1775101495.189686 dir=Downstream frame=InputAudioRawFrame id=1184
[print] ts=1775101495.191457 dir=Downstream frame=InputAudioRawFrame id=1185
[print] ts=1775101495.193338 dir=Downstream frame=InputAudioRawFrame id=1186
[print] ts=1775101495.199226 dir=Downstream frame=InputAudioRawFrame id=1187
[print] ts=1775101495.201005 dir=Downstream frame=InputAudioRawFrame id=1188
[print] ts=1775101495.202828 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1908
[print] ts=1775101495.202911 dir=Downstream frame=InputAudioRawFrame id=1189
[print] ts=1775101495.204694 dir=Downstream frame=InputAudioRawFrame id=1190
[print] ts=1775101495.206696 dir=Downstream frame=InputAudioRawFrame id=1191
[print] ts=1775101495.208475 dir=Downstream frame=InputAudioRawFrame id=1192
[print] ts=1775101495.210147 dir=Downstream frame=InputAudioRawFrame id=1193
[print] ts=1775101495.211932 dir=Downstream frame=InputAudioRawFrame id=1194
[print] ts=1775101495.213825 dir=Downstream frame=InputAudioRawFrame id=1195
[print] ts=1775101495.215728 dir=Downstream frame=InputAudioRawFrame id=1196
[print] ts=1775101495.217587 dir=Downstream frame=InputAudioRawFrame id=1197
[print] ts=1775101495.219491 dir=Downstream frame=InputAudioRawFrame id=1198
[print] ts=1775101495.221239 dir=Downstream frame=InputAudioRawFrame id=1199
[print] ts=1775101495.223169 dir=Downstream frame=InputAudioRawFrame id=1200
[print] ts=1775101495.226071 dir=Downstream frame=InputAudioRawFrame id=1201
[print] ts=1775101495.228597 dir=Downstream frame=InputAudioRawFrame id=1202
[print] ts=1775101495.230974 dir=Downstream frame=InputAudioRawFrame id=1203
[print] ts=1775101495.232817 dir=Downstream frame=VADUserStartedSpeakingFrame id=1909
[print] ts=1775101495.232976 dir=Downstream frame=InputAudioRawFrame id=1204
[print] ts=1775101495.234705 dir=Downstream frame=InputAudioRawFrame id=1205
[print] ts=1775101495.236454 dir=Downstream frame=InputAudioRawFrame id=1206
[print] ts=1775101495.238294 dir=Downstream frame=InputAudioRawFrame id=1207
[print] ts=1775101495.240088 dir=Downstream frame=InputAudioRawFrame id=1208
[print] ts=1775101495.241891 dir=Downstream frame=InputAudioRawFrame id=1209
[print] ts=1775101495.243585 dir=Downstream frame=InputAudioRawFrame id=1210
[print] ts=1775101495.245537 dir=Downstream frame=InputAudioRawFrame id=1211
[print] ts=1775101495.247475 dir=Downstream frame=InputAudioRawFrame id=1212
[print] ts=1775101495.250959 dir=Downstream frame=InputAudioRawFrame id=1213
[print] ts=1775101495.252988 dir=Downstream frame=InputAudioRawFrame id=1214
[print] ts=1775101495.254901 dir=Downstream frame=InputAudioRawFrame id=1215
[print] ts=1775101495.256696 dir=Downstream frame=InputAudioRawFrame id=1216
[print] ts=1775101495.258585 dir=Downstream frame=InputAudioRawFrame id=1217
[print] ts=1775101495.260431 dir=Downstream frame=InputAudioRawFrame id=1218
[print] ts=1775101495.262262 dir=Downstream frame=InputAudioRawFrame id=1219
[print] ts=1775101495.264126 dir=Downstream frame=InputAudioRawFrame id=1220
[print] ts=1775101495.265760 dir=Downstream frame=InputAudioRawFrame id=1221
[print] ts=1775101495.267269 dir=Downstream frame=InputAudioRawFrame id=1222
[print] ts=1775101495.268636 dir=Downstream frame=InputAudioRawFrame id=1223
[print] ts=1775101495.269837 dir=Downstream frame=InputAudioRawFrame id=1224
[print] ts=1775101495.270901 dir=Downstream frame=InputAudioRawFrame id=1225
[print] ts=1775101495.272364 dir=Downstream frame=InputAudioRawFrame id=1226
[print] ts=1775101495.277743 dir=Downstream frame=InputAudioRawFrame id=1227
[print] ts=1775101495.279054 dir=Downstream frame=InputAudioRawFrame id=1228
[print] ts=1775101495.279765 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1910
[print] ts=1775101495.279814 dir=Downstream frame=InputAudioRawFrame id=1229
[print] ts=1775101495.280700 dir=Downstream frame=InputAudioRawFrame id=1230
[print] ts=1775101495.281952 dir=Downstream frame=InputAudioRawFrame id=1231
[print] ts=1775101495.282940 dir=Downstream frame=InputAudioRawFrame id=1232
[print] ts=1775101495.283859 dir=Downstream frame=InputAudioRawFrame id=1233
[print] ts=1775101495.285034 dir=Downstream frame=InputAudioRawFrame id=1234
[print] ts=1775101495.286590 dir=Downstream frame=InputAudioRawFrame id=1235
[print] ts=1775101495.287556 dir=Downstream frame=InputAudioRawFrame id=1236
[print] ts=1775101495.289030 dir=Downstream frame=InputAudioRawFrame id=1237
[print] ts=1775101495.291599 dir=Downstream frame=InputAudioRawFrame id=1238
[print] ts=1775101495.293422 dir=Downstream frame=InputAudioRawFrame id=1239
[print] ts=1775101495.294144 dir=Downstream frame=InputAudioRawFrame id=1240
[print] ts=1775101495.295033 dir=Downstream frame=InputAudioRawFrame id=1241
[print] ts=1775101495.295851 dir=Downstream frame=InputAudioRawFrame id=1242
[print] ts=1775101495.296600 dir=Downstream frame=InputAudioRawFrame id=1243
[print] ts=1775101495.297550 dir=Downstream frame=InputAudioRawFrame id=1244
[print] ts=1775101495.298628 dir=Downstream frame=InputAudioRawFrame id=1245
[print] ts=1775101495.300613 dir=Downstream frame=InputAudioRawFrame id=1246
[print] ts=1775101495.303369 dir=Downstream frame=InputAudioRawFrame id=1247
[print] ts=1775101495.305589 dir=Downstream frame=InputAudioRawFrame id=1248
[print] ts=1775101495.308533 dir=Downstream frame=InputAudioRawFrame id=1249
[print] ts=1775101495.309938 dir=Downstream frame=InputAudioRawFrame id=1250
[print] ts=1775101495.311559 dir=Downstream frame=InputAudioRawFrame id=1251
[print] ts=1775101495.313187 dir=Downstream frame=InputAudioRawFrame id=1252
[print] ts=1775101495.314260 dir=Downstream frame=InputAudioRawFrame id=1253
[print] ts=1775101495.315556 dir=Downstream frame=InputAudioRawFrame id=1254
[print] ts=1775101495.316852 dir=Downstream frame=InputAudioRawFrame id=1255
[print] ts=1775101495.317898 dir=Downstream frame=InputAudioRawFrame id=1256
[print] ts=1775101495.318440 dir=Downstream frame=InputAudioRawFrame id=1257
[print] ts=1775101495.319018 dir=Downstream frame=InputAudioRawFrame id=1258
[print] ts=1775101495.319558 dir=Downstream frame=InputAudioRawFrame id=1259
[print] ts=1775101495.320529 dir=Downstream frame=InputAudioRawFrame id=1260
[print] ts=1775101495.321567 dir=Downstream frame=InputAudioRawFrame id=1261
[print] ts=1775101495.322205 dir=Downstream frame=InputAudioRawFrame id=1262
[print] ts=1775101495.322905 dir=Downstream frame=InputAudioRawFrame id=1263
[print] ts=1775101495.323528 dir=Downstream frame=VADUserStartedSpeakingFrame id=1911
[print] ts=1775101495.323540 dir=Downstream frame=InputAudioRawFrame id=1264
[print] ts=1775101495.324308 dir=Downstream frame=InputAudioRawFrame id=1265
[print] ts=1775101495.324967 dir=Downstream frame=InputAudioRawFrame id=1266
[print] ts=1775101495.325814 dir=Downstream frame=InputAudioRawFrame id=1267
[print] ts=1775101495.326642 dir=Downstream frame=InputAudioRawFrame id=1268
[print] ts=1775101495.327097 dir=Downstream frame=InputAudioRawFrame id=1269
[print] ts=1775101495.328073 dir=Downstream frame=InputAudioRawFrame id=1270
[print] ts=1775101495.328825 dir=Downstream frame=InputAudioRawFrame id=1271
[print] ts=1775101495.329364 dir=Downstream frame=InputAudioRawFrame id=1272
[print] ts=1775101495.330755 dir=Downstream frame=InputAudioRawFrame id=1273
[print] ts=1775101495.332330 dir=Downstream frame=InputAudioRawFrame id=1274
[print] ts=1775101495.333509 dir=Downstream frame=InputAudioRawFrame id=1275
[print] ts=1775101495.334476 dir=Downstream frame=InputAudioRawFrame id=1276
[print] ts=1775101495.335152 dir=Downstream frame=InputAudioRawFrame id=1277
[print] ts=1775101495.335850 dir=Downstream frame=InputAudioRawFrame id=1278
[print] ts=1775101495.336655 dir=Downstream frame=InputAudioRawFrame id=1279
[print] ts=1775101495.337172 dir=Downstream frame=InputAudioRawFrame id=1280
[print] ts=1775101495.338367 dir=Downstream frame=InputAudioRawFrame id=1281
[print] ts=1775101495.339313 dir=Downstream frame=InputAudioRawFrame id=1282
[print] ts=1775101495.340041 dir=Downstream frame=InputAudioRawFrame id=1283
[print] ts=1775101495.340869 dir=Downstream frame=InputAudioRawFrame id=1284
[print] ts=1775101495.341364 dir=Downstream frame=InputAudioRawFrame id=1285
[print] ts=1775101495.342044 dir=Downstream frame=InputAudioRawFrame id=1286
[print] ts=1775101495.342548 dir=Downstream frame=InputAudioRawFrame id=1287
[print] ts=1775101495.343299 dir=Downstream frame=InputAudioRawFrame id=1288
[print] ts=1775101495.344055 dir=Downstream frame=InputAudioRawFrame id=1289
[print] ts=1775101495.344660 dir=Downstream frame=InputAudioRawFrame id=1290
[print] ts=1775101495.345699 dir=Downstream frame=InputAudioRawFrame id=1291
[print] ts=1775101495.346558 dir=Downstream frame=InputAudioRawFrame id=1292
[print] ts=1775101495.347159 dir=Downstream frame=InputAudioRawFrame id=1293
[print] ts=1775101495.348341 dir=Downstream frame=InputAudioRawFrame id=1294
[print] ts=1775101495.350476 dir=Downstream frame=InputAudioRawFrame id=1295
[print] ts=1775101495.352179 dir=Downstream frame=InputAudioRawFrame id=1296
[print] ts=1775101495.353181 dir=Downstream frame=InputAudioRawFrame id=1297
[print] ts=1775101495.354493 dir=Downstream frame=InputAudioRawFrame id=1298
[print] ts=1775101495.355188 dir=Downstream frame=InputAudioRawFrame id=1299
[print] ts=1775101495.355721 dir=Downstream frame=InputAudioRawFrame id=1300
[print] ts=1775101495.356432 dir=Downstream frame=InputAudioRawFrame id=1301
[print] ts=1775101495.357041 dir=Downstream frame=InputAudioRawFrame id=1302
[print] ts=1775101495.358494 dir=Downstream frame=InputAudioRawFrame id=1303
[print] ts=1775101495.359205 dir=Downstream frame=InputAudioRawFrame id=1304
[print] ts=1775101495.359789 dir=Downstream frame=InputAudioRawFrame id=1305
[print] ts=1775101495.360605 dir=Downstream frame=InputAudioRawFrame id=1306
[print] ts=1775101495.361115 dir=Downstream frame=InputAudioRawFrame id=1307
[print] ts=1775101495.361742 dir=Downstream frame=InputAudioRawFrame id=1308
[print] ts=1775101495.362510 dir=Downstream frame=InputAudioRawFrame id=1309
[print] ts=1775101495.363223 dir=Downstream frame=InputAudioRawFrame id=1310
[print] ts=1775101495.364018 dir=Downstream frame=InputAudioRawFrame id=1311
[print] ts=1775101495.364858 dir=Downstream frame=InputAudioRawFrame id=1312
[print] ts=1775101495.366710 dir=Downstream frame=InputAudioRawFrame id=1313
[print] ts=1775101495.367630 dir=Downstream frame=InputAudioRawFrame id=1314
[print] ts=1775101495.368603 dir=Downstream frame=InputAudioRawFrame id=1315
[print] ts=1775101495.369464 dir=Downstream frame=VADUserStartedSpeakingFrame id=1912
[print] ts=1775101495.369491 dir=Downstream frame=InputAudioRawFrame id=1316
[print] ts=1775101495.370222 dir=Downstream frame=InputAudioRawFrame id=1317
[print] ts=1775101495.371299 dir=Downstream frame=InputAudioRawFrame id=1318
[print] ts=1775101495.371703 dir=Downstream frame=InputAudioRawFrame id=1319
[print] ts=1775101495.372414 dir=Downstream frame=InputAudioRawFrame id=1320
[print] ts=1775101495.373262 dir=Downstream frame=InputAudioRawFrame id=1321
[print] ts=1775101495.373731 dir=Downstream frame=InputAudioRawFrame id=1322
[print] ts=1775101495.375288 dir=Downstream frame=InputAudioRawFrame id=1323
[print] ts=1775101495.375962 dir=Downstream frame=InputAudioRawFrame id=1324
[print] ts=1775101495.376621 dir=Downstream frame=InputAudioRawFrame id=1325
[print] ts=1775101495.377170 dir=Downstream frame=InputAudioRawFrame id=1326
[print] ts=1775101495.378606 dir=Downstream frame=InputAudioRawFrame id=1327
[print] ts=1775101495.379351 dir=Downstream frame=InputAudioRawFrame id=1328
[print] ts=1775101495.379969 dir=Downstream frame=InputAudioRawFrame id=1329
[print] ts=1775101495.380455 dir=Downstream frame=InputAudioRawFrame id=1330
[print] ts=1775101495.381652 dir=Downstream frame=InputAudioRawFrame id=1331
[print] ts=1775101495.382768 dir=Downstream frame=InputAudioRawFrame id=1332
[print] ts=1775101495.383847 dir=Downstream frame=VADUserStartedSpeakingFrame id=1913
[print] ts=1775101495.383881 dir=Downstream frame=InputAudioRawFrame id=1333
[print] ts=1775101495.385531 dir=Downstream frame=InputAudioRawFrame id=1334
[print] ts=1775101495.386439 dir=Downstream frame=InputAudioRawFrame id=1335
[print] ts=1775101495.387368 dir=Downstream frame=InputAudioRawFrame id=1336
[print] ts=1775101495.388389 dir=Downstream frame=InputAudioRawFrame id=1337
[print] ts=1775101495.389040 dir=Downstream frame=InputAudioRawFrame id=1338
[print] ts=1775101495.389635 dir=Downstream frame=InputAudioRawFrame id=1339
[print] ts=1775101495.390259 dir=Downstream frame=InputAudioRawFrame id=1340
[print] ts=1775101495.391172 dir=Downstream frame=InputAudioRawFrame id=1341
[print] ts=1775101495.392103 dir=Downstream frame=InputAudioRawFrame id=1342
[print] ts=1775101495.392604 dir=Downstream frame=InputAudioRawFrame id=1343
[print] ts=1775101495.393639 dir=Downstream frame=InputAudioRawFrame id=1344
[print] ts=1775101495.395116 dir=Downstream frame=InputAudioRawFrame id=1345
[print] ts=1775101495.395723 dir=Downstream frame=InputAudioRawFrame id=1346
[print] ts=1775101495.396679 dir=Downstream frame=InputAudioRawFrame id=1347
[print] ts=1775101495.397220 dir=Downstream frame=InputAudioRawFrame id=1348
[print] ts=1775101495.397861 dir=Downstream frame=InputAudioRawFrame id=1349
[print] ts=1775101495.399464 dir=Downstream frame=InputAudioRawFrame id=1350
[print] ts=1775101495.400475 dir=Downstream frame=InputAudioRawFrame id=1351
[print] ts=1775101495.401228 dir=Downstream frame=InputAudioRawFrame id=1352
[print] ts=1775101495.402205 dir=Downstream frame=InputAudioRawFrame id=1353
[print] ts=1775101495.402809 dir=Downstream frame=InputAudioRawFrame id=1354
[print] ts=1775101495.403810 dir=Downstream frame=InputAudioRawFrame id=1355
[print] ts=1775101495.404859 dir=Downstream frame=InputAudioRawFrame id=1356
[print] ts=1775101495.405594 dir=Downstream frame=InputAudioRawFrame id=1357
[print] ts=1775101495.406173 dir=Downstream frame=InputAudioRawFrame id=1358
[print] ts=1775101495.407170 dir=Downstream frame=InputAudioRawFrame id=1359
[print] ts=1775101495.407799 dir=Downstream frame=InputAudioRawFrame id=1360
[print] ts=1775101495.408468 dir=Downstream frame=InputAudioRawFrame id=1361
[print] ts=1775101495.409078 dir=Downstream frame=InputAudioRawFrame id=1362
[print] ts=1775101495.409676 dir=Downstream frame=InputAudioRawFrame id=1363
[print] ts=1775101495.410501 dir=Downstream frame=InputAudioRawFrame id=1364
[print] ts=1775101495.411093 dir=Downstream frame=InputAudioRawFrame id=1365
[print] ts=1775101495.411814 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1914
[print] ts=1775101495.411838 dir=Downstream frame=InputAudioRawFrame id=1366
[print] ts=1775101495.412896 dir=Downstream frame=InputAudioRawFrame id=1367
[print] ts=1775101495.413370 dir=Downstream frame=InputAudioRawFrame id=1368
[print] ts=1775101495.413964 dir=Downstream frame=InputAudioRawFrame id=1369
[print] ts=1775101495.415477 dir=Downstream frame=InputAudioRawFrame id=1370
[print] ts=1775101495.416631 dir=Downstream frame=InputAudioRawFrame id=1371
[print] ts=1775101495.417815 dir=Downstream frame=InputAudioRawFrame id=1372
[print] ts=1775101495.418422 dir=Downstream frame=InputAudioRawFrame id=1373
[print] ts=1775101495.419384 dir=Downstream frame=InputAudioRawFrame id=1374
[print] ts=1775101495.420250 dir=Downstream frame=InputAudioRawFrame id=1375
[print] ts=1775101495.420951 dir=Downstream frame=InputAudioRawFrame id=1376
[print] ts=1775101495.421440 dir=Downstream frame=InputAudioRawFrame id=1377
[print] ts=1775101495.422028 dir=Downstream frame=InputAudioRawFrame id=1378
[print] ts=1775101495.422760 dir=Downstream frame=InputAudioRawFrame id=1379
[print] ts=1775101495.423500 dir=Downstream frame=InputAudioRawFrame id=1380
[print] ts=1775101495.424362 dir=Downstream frame=InputAudioRawFrame id=1381
[print] ts=1775101495.425068 dir=Downstream frame=InputAudioRawFrame id=1382
[print] ts=1775101495.425681 dir=Downstream frame=InputAudioRawFrame id=1383
[print] ts=1775101495.426700 dir=Downstream frame=VADUserStartedSpeakingFrame id=1915
[print] ts=1775101495.426767 dir=Downstream frame=InputAudioRawFrame id=1384
[print] ts=1775101495.427344 dir=Downstream frame=InputAudioRawFrame id=1385
[print] ts=1775101495.428069 dir=Downstream frame=InputAudioRawFrame id=1386
[print] ts=1775101495.428625 dir=Downstream frame=InputAudioRawFrame id=1387
[print] ts=1775101495.429513 dir=Downstream frame=InputAudioRawFrame id=1388
[print] ts=1775101495.430475 dir=Downstream frame=InputAudioRawFrame id=1389
[print] ts=1775101495.430974 dir=Downstream frame=InputAudioRawFrame id=1390
[print] ts=1775101495.432507 dir=Downstream frame=InputAudioRawFrame id=1391
[print] ts=1775101495.433510 dir=Downstream frame=InputAudioRawFrame id=1392
[print] ts=1775101495.434154 dir=Downstream frame=InputAudioRawFrame id=1393
[print] ts=1775101495.434756 dir=Downstream frame=InputAudioRawFrame id=1394
[print] ts=1775101495.435590 dir=Downstream frame=InputAudioRawFrame id=1395
[print] ts=1775101495.436483 dir=Downstream frame=InputAudioRawFrame id=1396
[print] ts=1775101495.437544 dir=Downstream frame=InputAudioRawFrame id=1397
[print] ts=1775101495.438130 dir=Downstream frame=InputAudioRawFrame id=1398
[print] ts=1775101495.439108 dir=Downstream frame=InputAudioRawFrame id=1399
[print] ts=1775101495.439889 dir=Downstream frame=InputAudioRawFrame id=1400
[print] ts=1775101495.440711 dir=Downstream frame=InputAudioRawFrame id=1401
[print] ts=1775101495.441325 dir=Downstream frame=InputAudioRawFrame id=1402
[print] ts=1775101495.442373 dir=Downstream frame=InputAudioRawFrame id=1403
[print] ts=1775101495.443027 dir=Downstream frame=InputAudioRawFrame id=1404
[print] ts=1775101495.443571 dir=Downstream frame=InputAudioRawFrame id=1405
[print] ts=1775101495.444154 dir=Downstream frame=InputAudioRawFrame id=1406
[print] ts=1775101495.445753 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1916
[print] ts=1775101495.445779 dir=Downstream frame=InputAudioRawFrame id=1407
[print] ts=1775101495.446548 dir=Downstream frame=InputAudioRawFrame id=1408
[print] ts=1775101495.447202 dir=Downstream frame=InputAudioRawFrame id=1409
[print] ts=1775101495.447772 dir=Downstream frame=InputAudioRawFrame id=1410
[print] ts=1775101495.449447 dir=Downstream frame=InputAudioRawFrame id=1411
[print] ts=1775101495.450188 dir=Downstream frame=InputAudioRawFrame id=1412
[print] ts=1775101495.451049 dir=Downstream frame=InputAudioRawFrame id=1413
[print] ts=1775101495.451765 dir=Downstream frame=InputAudioRawFrame id=1414
[print] ts=1775101495.452490 dir=Downstream frame=InputAudioRawFrame id=1415
[print] ts=1775101495.453222 dir=Downstream frame=InputAudioRawFrame id=1416
[print] ts=1775101495.454106 dir=Downstream frame=InputAudioRawFrame id=1417
[print] ts=1775101495.454571 dir=Downstream frame=InputAudioRawFrame id=1418
[print] ts=1775101495.455289 dir=Downstream frame=InputAudioRawFrame id=1419
[print] ts=1775101495.455808 dir=Downstream frame=InputAudioRawFrame id=1420
[print] ts=1775101495.456465 dir=Downstream frame=InputAudioRawFrame id=1421
[print] ts=1775101495.457011 dir=Downstream frame=InputAudioRawFrame id=1422
[print] ts=1775101495.458027 dir=Downstream frame=InputAudioRawFrame id=1423
[print] ts=1775101495.459520 dir=Downstream frame=InputAudioRawFrame id=1424
[print] ts=1775101495.460109 dir=Downstream frame=InputAudioRawFrame id=1425
[print] ts=1775101495.460963 dir=Downstream frame=VADUserStartedSpeakingFrame id=1917
[print] ts=1775101495.460989 dir=Downstream frame=InputAudioRawFrame id=1426
[print] ts=1775101495.461599 dir=Downstream frame=InputAudioRawFrame id=1427
[print] ts=1775101495.462676 dir=Downstream frame=InputAudioRawFrame id=1428
[print] ts=1775101495.463899 dir=Downstream frame=InputAudioRawFrame id=1429
[print] ts=1775101495.465655 dir=Downstream frame=InputAudioRawFrame id=1430
[print] ts=1775101495.467183 dir=Downstream frame=InputAudioRawFrame id=1431
[print] ts=1775101495.468337 dir=Downstream frame=InputAudioRawFrame id=1432
[print] ts=1775101495.469406 dir=Downstream frame=InputAudioRawFrame id=1433
[print] ts=1775101495.470120 dir=Downstream frame=InputAudioRawFrame id=1434
[print] ts=1775101495.471172 dir=Downstream frame=InputAudioRawFrame id=1435
[print] ts=1775101495.471821 dir=Downstream frame=InputAudioRawFrame id=1436
[print] ts=1775101495.472718 dir=Downstream frame=InputAudioRawFrame id=1437
[print] ts=1775101495.473410 dir=Downstream frame=InputAudioRawFrame id=1438
[print] ts=1775101495.473896 dir=Downstream frame=InputAudioRawFrame id=1439
[print] ts=1775101495.474768 dir=Downstream frame=InputAudioRawFrame id=1440
[print] ts=1775101495.475665 dir=Downstream frame=InputAudioRawFrame id=1441
[print] ts=1775101495.476411 dir=Downstream frame=InputAudioRawFrame id=1442
[print] ts=1775101495.476994 dir=Downstream frame=InputAudioRawFrame id=1443
[print] ts=1775101495.477685 dir=Downstream frame=InputAudioRawFrame id=1444
[print] ts=1775101495.478780 dir=Downstream frame=InputAudioRawFrame id=1445
[print] ts=1775101495.479646 dir=Downstream frame=InputAudioRawFrame id=1446
[print] ts=1775101495.480706 dir=Downstream frame=VADUserStartedSpeakingFrame id=1918
[print] ts=1775101495.480737 dir=Downstream frame=InputAudioRawFrame id=1447
[print] ts=1775101495.481651 dir=Downstream frame=InputAudioRawFrame id=1448
[print] ts=1775101495.482736 dir=Downstream frame=InputAudioRawFrame id=1449
[print] ts=1775101495.484398 dir=Downstream frame=InputAudioRawFrame id=1450
[print] ts=1775101495.484987 dir=Downstream frame=InputAudioRawFrame id=1451
[print] ts=1775101495.485768 dir=Downstream frame=InputAudioRawFrame id=1452
[print] ts=1775101495.486664 dir=Downstream frame=InputAudioRawFrame id=1453
[print] ts=1775101495.487630 dir=Downstream frame=InputAudioRawFrame id=1454
[print] ts=1775101495.488167 dir=Downstream frame=InputAudioRawFrame id=1455
[print] ts=1775101495.488943 dir=Downstream frame=InputAudioRawFrame id=1456
[print] ts=1775101495.490172 dir=Downstream frame=VADUserStartedSpeakingFrame id=1919
[print] ts=1775101495.490250 dir=Downstream frame=InputAudioRawFrame id=1457
[print] ts=1775101495.490814 dir=Downstream frame=InputAudioRawFrame id=1458
[print] ts=1775101495.491845 dir=Downstream frame=InputAudioRawFrame id=1459
[print] ts=1775101495.492441 dir=Downstream frame=InputAudioRawFrame id=1460
[print] ts=1775101495.493186 dir=Downstream frame=InputAudioRawFrame id=1461
[print] ts=1775101495.494191 dir=Downstream frame=InputAudioRawFrame id=1462
[print] ts=1775101495.495150 dir=Downstream frame=InputAudioRawFrame id=1463
[print] ts=1775101495.496114 dir=Downstream frame=InputAudioRawFrame id=1464
[print] ts=1775101495.497175 dir=Downstream frame=InputAudioRawFrame id=1465
[print] ts=1775101495.499300 dir=Downstream frame=InputAudioRawFrame id=1466
[print] ts=1775101495.500830 dir=Downstream frame=InputAudioRawFrame id=1467
[print] ts=1775101495.502073 dir=Downstream frame=InputAudioRawFrame id=1468
[print] ts=1775101495.502919 dir=Downstream frame=InputAudioRawFrame id=1469
[print] ts=1775101495.503723 dir=Downstream frame=InputAudioRawFrame id=1470
[print] ts=1775101495.505018 dir=Downstream frame=InputAudioRawFrame id=1471
[print] ts=1775101495.505896 dir=Downstream frame=InputAudioRawFrame id=1472
[print] ts=1775101495.506933 dir=Downstream frame=InputAudioRawFrame id=1473
[print] ts=1775101495.508504 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1920
[print] ts=1775101495.508594 dir=Downstream frame=InputAudioRawFrame id=1474
[print] ts=1775101495.509674 dir=Downstream frame=InputAudioRawFrame id=1475
[print] ts=1775101495.511879 dir=Downstream frame=InputAudioRawFrame id=1476
[print] ts=1775101495.513115 dir=Downstream frame=InputAudioRawFrame id=1477
[print] ts=1775101495.515735 dir=Downstream frame=InputAudioRawFrame id=1478
[print] ts=1775101495.517727 dir=Downstream frame=InputAudioRawFrame id=1479
[print] ts=1775101495.519588 dir=Downstream frame=InputAudioRawFrame id=1480
[print] ts=1775101495.521392 dir=Downstream frame=InputAudioRawFrame id=1481
[print] ts=1775101495.523072 dir=Downstream frame=InputAudioRawFrame id=1482
[print] ts=1775101495.524751 dir=Downstream frame=InputAudioRawFrame id=1483
[print] ts=1775101495.525919 dir=Downstream frame=InputAudioRawFrame id=1484
[print] ts=1775101495.527092 dir=Downstream frame=InputAudioRawFrame id=1485
[print] ts=1775101495.529000 dir=Downstream frame=InputAudioRawFrame id=1486
[print] ts=1775101495.531629 dir=Downstream frame=InputAudioRawFrame id=1487
[print] ts=1775101495.533535 dir=Downstream frame=InputAudioRawFrame id=1488
[print] ts=1775101495.534899 dir=Downstream frame=InputAudioRawFrame id=1489
[print] ts=1775101495.536829 dir=Downstream frame=InputAudioRawFrame id=1490
[print] ts=1775101495.538204 dir=Downstream frame=InputAudioRawFrame id=1491
[print] ts=1775101495.539749 dir=Downstream frame=InputAudioRawFrame id=1492
[print] ts=1775101495.540658 dir=Downstream frame=InputAudioRawFrame id=1493
[print] ts=1775101495.542315 dir=Downstream frame=InputAudioRawFrame id=1494
[print] ts=1775101495.543808 dir=Downstream frame=InputAudioRawFrame id=1495
[print] ts=1775101495.545641 dir=Downstream frame=InputAudioRawFrame id=1496
[print] ts=1775101495.546825 dir=Downstream frame=InputAudioRawFrame id=1497
[print] ts=1775101495.548876 dir=Downstream frame=InputAudioRawFrame id=1498
[print] ts=1775101495.550129 dir=Downstream frame=InputAudioRawFrame id=1499
[print] ts=1775101495.551856 dir=Downstream frame=InputAudioRawFrame id=1500
[print] ts=1775101495.553030 dir=Downstream frame=InputAudioRawFrame id=1501
[print] ts=1775101495.554845 dir=Downstream frame=InputAudioRawFrame id=1502
[print] ts=1775101495.555969 dir=Downstream frame=InputAudioRawFrame id=1503
[print] ts=1775101495.557680 dir=Downstream frame=InputAudioRawFrame id=1504
[print] ts=1775101495.559014 dir=Downstream frame=InputAudioRawFrame id=1505
[print] ts=1775101495.561327 dir=Downstream frame=InputAudioRawFrame id=1506
[print] ts=1775101495.562509 dir=Downstream frame=InputAudioRawFrame id=1507
[print] ts=1775101495.564602 dir=Downstream frame=InputAudioRawFrame id=1508
[print] ts=1775101495.566091 dir=Downstream frame=InputAudioRawFrame id=1509
[print] ts=1775101495.568372 dir=Downstream frame=InputAudioRawFrame id=1510
[print] ts=1775101495.569628 dir=Downstream frame=InputAudioRawFrame id=1511
[print] ts=1775101495.570816 dir=Downstream frame=InputAudioRawFrame id=1512
[print] ts=1775101495.571911 dir=Downstream frame=InputAudioRawFrame id=1513
[print] ts=1775101495.574234 dir=Downstream frame=InputAudioRawFrame id=1514
[print] ts=1775101495.576216 dir=Downstream frame=InputAudioRawFrame id=1515
[print] ts=1775101495.578166 dir=Downstream frame=InputAudioRawFrame id=1516
[print] ts=1775101495.579301 dir=Downstream frame=InputAudioRawFrame id=1517
[print] ts=1775101495.580503 dir=Downstream frame=InputAudioRawFrame id=1518
[print] ts=1775101495.581879 dir=Downstream frame=InputAudioRawFrame id=1519
[print] ts=1775101495.584406 dir=Downstream frame=InputAudioRawFrame id=1520
[print] ts=1775101495.585640 dir=Downstream frame=InputAudioRawFrame id=1521
[print] ts=1775101495.588150 dir=Downstream frame=InputAudioRawFrame id=1522
[print] ts=1775101495.589555 dir=Downstream frame=InputAudioRawFrame id=1523
[print] ts=1775101495.592143 dir=Downstream frame=InputAudioRawFrame id=1524
[print] ts=1775101495.593391 dir=Downstream frame=InputAudioRawFrame id=1525
[print] ts=1775101495.595460 dir=Downstream frame=InputAudioRawFrame id=1526
[print] ts=1775101495.596663 dir=Downstream frame=InputAudioRawFrame id=1527
[print] ts=1775101495.598494 dir=Downstream frame=InputAudioRawFrame id=1528
[print] ts=1775101495.600061 dir=Downstream frame=InputAudioRawFrame id=1529
[print] ts=1775101495.602251 dir=Downstream frame=InputAudioRawFrame id=1530
[print] ts=1775101495.603483 dir=Downstream frame=InputAudioRawFrame id=1531
[print] ts=1775101495.605299 dir=Downstream frame=InputAudioRawFrame id=1532
[print] ts=1775101495.607522 dir=Downstream frame=InputAudioRawFrame id=1533
[print] ts=1775101495.608649 dir=Downstream frame=InputAudioRawFrame id=1534
[print] ts=1775101495.610065 dir=Downstream frame=InputAudioRawFrame id=1535
[print] ts=1775101495.611361 dir=Downstream frame=InputAudioRawFrame id=1536
[print] ts=1775101495.613410 dir=Downstream frame=InputAudioRawFrame id=1537
[print] ts=1775101495.614204 dir=Downstream frame=InputAudioRawFrame id=1538
[print] ts=1775101495.615800 dir=Downstream frame=InputAudioRawFrame id=1539
[print] ts=1775101495.617980 dir=Downstream frame=InputAudioRawFrame id=1540
[print] ts=1775101495.619446 dir=Downstream frame=InputAudioRawFrame id=1541
[print] ts=1775101495.621766 dir=Downstream frame=InputAudioRawFrame id=1542
[print] ts=1775101495.623246 dir=Downstream frame=InputAudioRawFrame id=1543
[print] ts=1775101495.625250 dir=Downstream frame=VADUserStartedSpeakingFrame id=1921
[print] ts=1775101495.625344 dir=Downstream frame=InputAudioRawFrame id=1544
[print] ts=1775101495.626532 dir=Downstream frame=InputAudioRawFrame id=1545
[print] ts=1775101495.628499 dir=Downstream frame=InputAudioRawFrame id=1546
[print] ts=1775101495.629673 dir=Downstream frame=InputAudioRawFrame id=1547
[print] ts=1775101495.632058 dir=Downstream frame=InputAudioRawFrame id=1548
[print] ts=1775101495.634079 dir=Downstream frame=InputAudioRawFrame id=1549
[print] ts=1775101495.636098 dir=Downstream frame=InputAudioRawFrame id=1550
[print] ts=1775101495.637416 dir=Downstream frame=InputAudioRawFrame id=1551
[print] ts=1775101495.639327 dir=Downstream frame=InputAudioRawFrame id=1552
[print] ts=1775101495.640981 dir=Downstream frame=InputAudioRawFrame id=1553
[print] ts=1775101495.642815 dir=Downstream frame=InputAudioRawFrame id=1554
[print] ts=1775101495.644518 dir=Downstream frame=InputAudioRawFrame id=1555
[print] ts=1775101495.646190 dir=Downstream frame=InputAudioRawFrame id=1556
[print] ts=1775101495.647588 dir=Downstream frame=InputAudioRawFrame id=1557
[print] ts=1775101495.652268 dir=Downstream frame=InputAudioRawFrame id=1558
[print] ts=1775101495.653616 dir=Downstream frame=InputAudioRawFrame id=1559
[print] ts=1775101495.655281 dir=Downstream frame=InputAudioRawFrame id=1560
[print] ts=1775101495.656576 dir=Downstream frame=InputAudioRawFrame id=1561
[print] ts=1775101495.658318 dir=Downstream frame=InputAudioRawFrame id=1562
[print] ts=1775101495.660240 dir=Downstream frame=InputAudioRawFrame id=1563
[print] ts=1775101495.661527 dir=Downstream frame=InputAudioRawFrame id=1564
[print] ts=1775101495.662850 dir=Downstream frame=InputAudioRawFrame id=1565
[print] ts=1775101495.664857 dir=Downstream frame=InputAudioRawFrame id=1566
[print] ts=1775101495.666401 dir=Downstream frame=InputAudioRawFrame id=1567
[print] ts=1775101495.668297 dir=Downstream frame=InputAudioRawFrame id=1568
[print] ts=1775101495.670270 dir=Downstream frame=InputAudioRawFrame id=1569
[print] ts=1775101495.672056 dir=Downstream frame=InputAudioRawFrame id=1570
[print] ts=1775101495.673466 dir=Downstream frame=InputAudioRawFrame id=1571
[print] ts=1775101495.674649 dir=Downstream frame=InputAudioRawFrame id=1572
[print] ts=1775101495.676357 dir=Downstream frame=InputAudioRawFrame id=1573
[print] ts=1775101495.678971 dir=Downstream frame=InputAudioRawFrame id=1574
[print] ts=1775101495.680087 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1922
[print] ts=1775101495.680148 dir=Downstream frame=InputAudioRawFrame id=1575
[print] ts=1775101495.681950 dir=Downstream frame=InputAudioRawFrame id=1576
[print] ts=1775101495.683235 dir=Downstream frame=InputAudioRawFrame id=1577
[print] ts=1775101495.684983 dir=Downstream frame=InputAudioRawFrame id=1578
[print] ts=1775101495.686189 dir=Downstream frame=InputAudioRawFrame id=1579
[print] ts=1775101495.688223 dir=Downstream frame=InputAudioRawFrame id=1580
[print] ts=1775101495.689459 dir=Downstream frame=InputAudioRawFrame id=1581
[print] ts=1775101495.691053 dir=Downstream frame=InputAudioRawFrame id=1582
[print] ts=1775101495.692829 dir=Downstream frame=InputAudioRawFrame id=1583
[print] ts=1775101495.694238 dir=Downstream frame=InputAudioRawFrame id=1584
[print] ts=1775101495.695261 dir=Downstream frame=InputAudioRawFrame id=1585
[print] ts=1775101495.696395 dir=Downstream frame=InputAudioRawFrame id=1586
[print] ts=1775101495.697606 dir=Downstream frame=InputAudioRawFrame id=1587
[print] ts=1775101495.699719 dir=Downstream frame=InputAudioRawFrame id=1588
[print] ts=1775101495.701197 dir=Downstream frame=InputAudioRawFrame id=1589
[print] ts=1775101495.702845 dir=Downstream frame=InputAudioRawFrame id=1590
[print] ts=1775101495.704302 dir=Downstream frame=InputAudioRawFrame id=1591
[print] ts=1775101495.705544 dir=Downstream frame=InputAudioRawFrame id=1592
[print] ts=1775101495.707479 dir=Downstream frame=InputAudioRawFrame id=1593
[print] ts=1775101495.709189 dir=Downstream frame=InputAudioRawFrame id=1594
[print] ts=1775101495.710958 dir=Downstream frame=InputAudioRawFrame id=1595
[print] ts=1775101495.712470 dir=Downstream frame=InputAudioRawFrame id=1596
[print] ts=1775101495.713723 dir=Downstream frame=InputAudioRawFrame id=1597
[print] ts=1775101495.716301 dir=Downstream frame=InputAudioRawFrame id=1598
[print] ts=1775101495.717674 dir=Downstream frame=InputAudioRawFrame id=1599
[print] ts=1775101495.718802 dir=Downstream frame=InputAudioRawFrame id=1600
[print] ts=1775101495.720619 dir=Downstream frame=InputAudioRawFrame id=1601
[print] ts=1775101495.722115 dir=Downstream frame=InputAudioRawFrame id=1602
[print] ts=1775101495.723694 dir=Downstream frame=InputAudioRawFrame id=1603
[print] ts=1775101495.724993 dir=Downstream frame=InputAudioRawFrame id=1604
[print] ts=1775101495.726821 dir=Downstream frame=InputAudioRawFrame id=1605
[print] ts=1775101495.728709 dir=Downstream frame=InputAudioRawFrame id=1606
[print] ts=1775101495.730202 dir=Downstream frame=InputAudioRawFrame id=1607
[print] ts=1775101495.731709 dir=Downstream frame=InputAudioRawFrame id=1608
[print] ts=1775101495.732752 dir=Downstream frame=InputAudioRawFrame id=1609
[print] ts=1775101495.734680 dir=Downstream frame=InputAudioRawFrame id=1610
[print] ts=1775101495.736343 dir=Downstream frame=InputAudioRawFrame id=1611
[print] ts=1775101495.737579 dir=Downstream frame=InputAudioRawFrame id=1612
[print] ts=1775101495.738773 dir=Downstream frame=InputAudioRawFrame id=1613
[print] ts=1775101495.740365 dir=Downstream frame=VADUserStartedSpeakingFrame id=1923
[print] ts=1775101495.740438 dir=Downstream frame=InputAudioRawFrame id=1614
[print] ts=1775101495.741858 dir=Downstream frame=InputAudioRawFrame id=1615
[print] ts=1775101495.744237 dir=Downstream frame=InputAudioRawFrame id=1616
[print] ts=1775101495.745327 dir=Downstream frame=InputAudioRawFrame id=1617
[print] ts=1775101495.748212 dir=Downstream frame=InputAudioRawFrame id=1618
[print] ts=1775101495.749850 dir=Downstream frame=InputAudioRawFrame id=1619
[print] ts=1775101495.751744 dir=Downstream frame=InputAudioRawFrame id=1620
[print] ts=1775101495.753017 dir=Downstream frame=InputAudioRawFrame id=1621
[print] ts=1775101495.754574 dir=Downstream frame=InputAudioRawFrame id=1622
[print] ts=1775101495.755808 dir=Downstream frame=InputAudioRawFrame id=1623
[print] ts=1775101495.757013 dir=Downstream frame=InputAudioRawFrame id=1624
[print] ts=1775101495.758222 dir=Downstream frame=InputAudioRawFrame id=1625
[print] ts=1775101495.760077 dir=Downstream frame=InputAudioRawFrame id=1626
[print] ts=1775101495.761819 dir=Downstream frame=InputAudioRawFrame id=1627
[print] ts=1775101495.762954 dir=Downstream frame=InputAudioRawFrame id=1628
[print] ts=1775101495.764083 dir=Downstream frame=InputAudioRawFrame id=1629
[print] ts=1775101495.768168 dir=Downstream frame=InputAudioRawFrame id=1630
[print] ts=1775101495.769264 dir=Downstream frame=InputAudioRawFrame id=1631
[print] ts=1775101495.770978 dir=Downstream frame=InputAudioRawFrame id=1632
[print] ts=1775101495.772317 dir=Downstream frame=InputAudioRawFrame id=1633
[print] ts=1775101495.773744 dir=Downstream frame=InputAudioRawFrame id=1634
[print] ts=1775101495.775176 dir=Downstream frame=InputAudioRawFrame id=1635
[print] ts=1775101495.776495 dir=Downstream frame=InputAudioRawFrame id=1636
[print] ts=1775101495.777577 dir=Downstream frame=InputAudioRawFrame id=1637
[print] ts=1775101495.778694 dir=Downstream frame=InputAudioRawFrame id=1638
[print] ts=1775101495.779871 dir=Downstream frame=InputAudioRawFrame id=1639
[print] ts=1775101495.781695 dir=Downstream frame=InputAudioRawFrame id=1640
[print] ts=1775101495.783269 dir=Downstream frame=InputAudioRawFrame id=1641
[print] ts=1775101495.785240 dir=Downstream frame=InputAudioRawFrame id=1642
[print] ts=1775101495.786538 dir=Downstream frame=InputAudioRawFrame id=1643
[print] ts=1775101495.788298 dir=Downstream frame=InputAudioRawFrame id=1644
[print] ts=1775101495.789581 dir=Downstream frame=InputAudioRawFrame id=1645
[print] ts=1775101495.791077 dir=Downstream frame=InputAudioRawFrame id=1646
[print] ts=1775101495.792608 dir=Downstream frame=InputAudioRawFrame id=1647
[print] ts=1775101495.794231 dir=Downstream frame=InputAudioRawFrame id=1648
[print] ts=1775101495.795250 dir=Downstream frame=InputAudioRawFrame id=1649
[print] ts=1775101495.797101 dir=Downstream frame=InputAudioRawFrame id=1650
[print] ts=1775101495.798726 dir=Downstream frame=InputAudioRawFrame id=1651
[print] ts=1775101495.800695 dir=Downstream frame=InputAudioRawFrame id=1652
[print] ts=1775101495.802027 dir=Downstream frame=InputAudioRawFrame id=1653
[print] ts=1775101495.803607 dir=Downstream frame=InputAudioRawFrame id=1654
[print] ts=1775101495.804619 dir=Downstream frame=InputAudioRawFrame id=1655
[print] ts=1775101495.806034 dir=Downstream frame=InputAudioRawFrame id=1656
[print] ts=1775101495.807321 dir=Downstream frame=InputAudioRawFrame id=1657
[print] ts=1775101495.808474 dir=Downstream frame=InputAudioRawFrame id=1658
[print] ts=1775101495.809507 dir=Downstream frame=InputAudioRawFrame id=1659
[print] ts=1775101495.811197 dir=Downstream frame=InputAudioRawFrame id=1660
[print] ts=1775101495.812883 dir=Downstream frame=InputAudioRawFrame id=1661
[print] ts=1775101495.815252 dir=Downstream frame=InputAudioRawFrame id=1662
[print] ts=1775101495.817379 dir=Downstream frame=InputAudioRawFrame id=1663
[print] ts=1775101495.819012 dir=Downstream frame=InputAudioRawFrame id=1664
[print] ts=1775101495.820780 dir=Downstream frame=InputAudioRawFrame id=1665
[print] ts=1775101495.821665 dir=Downstream frame=InputAudioRawFrame id=1666
[print] ts=1775101495.824230 dir=Downstream frame=InputAudioRawFrame id=1667
[print] ts=1775101495.825313 dir=Downstream frame=InputAudioRawFrame id=1668
[print] ts=1775101495.826826 dir=Downstream frame=InputAudioRawFrame id=1669
[print] ts=1775101495.828658 dir=Downstream frame=InputAudioRawFrame id=1670
[print] ts=1775101495.829921 dir=Downstream frame=InputAudioRawFrame id=1671
[print] ts=1775101495.831607 dir=Downstream frame=InputAudioRawFrame id=1672
[print] ts=1775101495.833001 dir=Downstream frame=InputAudioRawFrame id=1673
[print] ts=1775101495.835077 dir=Downstream frame=InputAudioRawFrame id=1674
[print] ts=1775101495.836458 dir=Downstream frame=InputAudioRawFrame id=1675
[print] ts=1775101495.838585 dir=Downstream frame=InputAudioRawFrame id=1676
[print] ts=1775101495.839990 dir=Downstream frame=InputAudioRawFrame id=1677
[print] ts=1775101495.842023 dir=Downstream frame=VADUserStartedSpeakingFrame id=1924
[print] ts=1775101495.842059 dir=Downstream frame=InputAudioRawFrame id=1678
[print] ts=1775101495.843308 dir=Downstream frame=InputAudioRawFrame id=1679
[print] ts=1775101495.845643 dir=Downstream frame=InputAudioRawFrame id=1680
[print] ts=1775101495.846780 dir=Downstream frame=InputAudioRawFrame id=1681
[print] ts=1775101495.847907 dir=Downstream frame=InputAudioRawFrame id=1682
[print] ts=1775101495.849334 dir=Downstream frame=InputAudioRawFrame id=1683
[print] ts=1775101495.851431 dir=Downstream frame=InputAudioRawFrame id=1684
[print] ts=1775101495.852913 dir=Downstream frame=InputAudioRawFrame id=1685
[print] ts=1775101495.854988 dir=Downstream frame=InputAudioRawFrame id=1686
[print] ts=1775101495.856223 dir=Downstream frame=InputAudioRawFrame id=1687
[print] ts=1775101495.858157 dir=Downstream frame=InputAudioRawFrame id=1688
[print] ts=1775101495.859375 dir=Downstream frame=InputAudioRawFrame id=1689
[print] ts=1775101495.860993 dir=Downstream frame=InputAudioRawFrame id=1690
[print] ts=1775101495.862611 dir=Downstream frame=InputAudioRawFrame id=1691
[print] ts=1775101495.864248 dir=Downstream frame=InputAudioRawFrame id=1692
[print] ts=1775101495.865676 dir=Downstream frame=InputAudioRawFrame id=1693
[print] ts=1775101495.868217 dir=Downstream frame=VADUserStartedSpeakingFrame id=1925
[print] ts=1775101495.868307 dir=Downstream frame=InputAudioRawFrame id=1694
[print] ts=1775101495.869456 dir=Downstream frame=InputAudioRawFrame id=1695
[print] ts=1775101495.870896 dir=Downstream frame=InputAudioRawFrame id=1696
[print] ts=1775101495.872669 dir=Downstream frame=InputAudioRawFrame id=1697
[print] ts=1775101495.873551 dir=Downstream frame=InputAudioRawFrame id=1698
[print] ts=1775101495.874755 dir=Downstream frame=InputAudioRawFrame id=1699
[print] ts=1775101495.876551 dir=Downstream frame=InputAudioRawFrame id=1700
[print] ts=1775101495.878278 dir=Downstream frame=InputAudioRawFrame id=1701
[print] ts=1775101495.880147 dir=Downstream frame=InputAudioRawFrame id=1702
[print] ts=1775101495.881645 dir=Downstream frame=InputAudioRawFrame id=1703
[print] ts=1775101495.883849 dir=Downstream frame=InputAudioRawFrame id=1704
[print] ts=1775101495.885345 dir=Downstream frame=InputAudioRawFrame id=1705
[print] ts=1775101495.886916 dir=Downstream frame=InputAudioRawFrame id=1706
[print] ts=1775101495.888096 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1926
[print] ts=1775101495.888172 dir=Downstream frame=InputAudioRawFrame id=1707
[print] ts=1775101495.890666 dir=Downstream frame=InputAudioRawFrame id=1708
[print] ts=1775101495.891647 dir=Downstream frame=InputAudioRawFrame id=1709
[print] ts=1775101495.893495 dir=Downstream frame=InputAudioRawFrame id=1710
[print] ts=1775101495.895219 dir=Downstream frame=InputAudioRawFrame id=1711
[print] ts=1775101495.897352 dir=Downstream frame=InputAudioRawFrame id=1712
[print] ts=1775101495.899564 dir=Downstream frame=InputAudioRawFrame id=1713
[print] ts=1775101495.901494 dir=Downstream frame=InputAudioRawFrame id=1714
[print] ts=1775101495.902880 dir=Downstream frame=InputAudioRawFrame id=1715
[print] ts=1775101495.904951 dir=Downstream frame=InputAudioRawFrame id=1716
[print] ts=1775101495.906729 dir=Downstream frame=InputAudioRawFrame id=1717
[print] ts=1775101495.908456 dir=Downstream frame=InputAudioRawFrame id=1718
[print] ts=1775101495.909423 dir=Downstream frame=InputAudioRawFrame id=1719
[print] ts=1775101495.911974 dir=Downstream frame=InputAudioRawFrame id=1720
[print] ts=1775101495.914042 dir=Downstream frame=InputAudioRawFrame id=1721
[print] ts=1775101495.915399 dir=Downstream frame=VADUserStartedSpeakingFrame id=1927
[print] ts=1775101495.915490 dir=Downstream frame=InputAudioRawFrame id=1722
[print] ts=1775101495.916764 dir=Downstream frame=InputAudioRawFrame id=1723
[print] ts=1775101495.918810 dir=Downstream frame=InputAudioRawFrame id=1724
[print] ts=1775101495.920054 dir=Downstream frame=InputAudioRawFrame id=1725
[print] ts=1775101495.921841 dir=Downstream frame=InputAudioRawFrame id=1726
[print] ts=1775101495.923154 dir=Downstream frame=InputAudioRawFrame id=1727
[print] ts=1775101495.925002 dir=Downstream frame=InputAudioRawFrame id=1728
[print] ts=1775101495.926255 dir=Downstream frame=InputAudioRawFrame id=1729
[print] ts=1775101495.928052 dir=Downstream frame=InputAudioRawFrame id=1730
[print] ts=1775101495.929389 dir=Downstream frame=InputAudioRawFrame id=1731
[print] ts=1775101495.932713 dir=Downstream frame=InputAudioRawFrame id=1732
[print] ts=1775101495.935049 dir=Downstream frame=InputAudioRawFrame id=1733
[print] ts=1775101495.936280 dir=Downstream frame=InputAudioRawFrame id=1734
[print] ts=1775101495.937964 dir=Downstream frame=InputAudioRawFrame id=1735
[print] ts=1775101495.939436 dir=Downstream frame=InputAudioRawFrame id=1736
[print] ts=1775101495.941209 dir=Downstream frame=InputAudioRawFrame id=1737
[print] ts=1775101495.942503 dir=Downstream frame=InputAudioRawFrame id=1738
[print] ts=1775101495.944728 dir=Downstream frame=InputAudioRawFrame id=1739
[print] ts=1775101495.946522 dir=Downstream frame=InputAudioRawFrame id=1740
[print] ts=1775101495.947921 dir=Downstream frame=InputAudioRawFrame id=1741
[print] ts=1775101495.949887 dir=Downstream frame=InputAudioRawFrame id=1742
[print] ts=1775101495.951848 dir=Downstream frame=InputAudioRawFrame id=1743
[print] ts=1775101495.953841 dir=Downstream frame=InputAudioRawFrame id=1744
[print] ts=1775101495.956502 dir=Downstream frame=InputAudioRawFrame id=1745
[print] ts=1775101495.957900 dir=Downstream frame=InputAudioRawFrame id=1746
[print] ts=1775101495.960755 dir=Downstream frame=InputAudioRawFrame id=1747
[print] ts=1775101495.962536 dir=Downstream frame=InputAudioRawFrame id=1748
[print] ts=1775101495.965825 dir=Downstream frame=InputAudioRawFrame id=1749
[print] ts=1775101495.967466 dir=Downstream frame=InputAudioRawFrame id=1750
[print] ts=1775101495.969478 dir=Downstream frame=InputAudioRawFrame id=1751
[print] ts=1775101495.970748 dir=Downstream frame=InputAudioRawFrame id=1752
[print] ts=1775101495.972559 dir=Downstream frame=InputAudioRawFrame id=1753
[print] ts=1775101495.973745 dir=Downstream frame=InputAudioRawFrame id=1754
[print] ts=1775101495.975024 dir=Downstream frame=InputAudioRawFrame id=1755
[print] ts=1775101495.977592 dir=Downstream frame=InputAudioRawFrame id=1756
[print] ts=1775101495.978868 dir=Downstream frame=InputAudioRawFrame id=1757
[print] ts=1775101495.980186 dir=Downstream frame=InputAudioRawFrame id=1758
[print] ts=1775101495.981407 dir=Downstream frame=InputAudioRawFrame id=1759
[print] ts=1775101495.982820 dir=Downstream frame=InputAudioRawFrame id=1760
[print] ts=1775101495.984620 dir=Downstream frame=InputAudioRawFrame id=1761
[print] ts=1775101495.985997 dir=Downstream frame=InputAudioRawFrame id=1762
[print] ts=1775101495.987361 dir=Downstream frame=InputAudioRawFrame id=1763
[print] ts=1775101495.988723 dir=Downstream frame=InputAudioRawFrame id=1764
[print] ts=1775101495.989987 dir=Downstream frame=InputAudioRawFrame id=1765
[print] ts=1775101495.991595 dir=Downstream frame=InputAudioRawFrame id=1766
[print] ts=1775101495.992867 dir=Downstream frame=InputAudioRawFrame id=1767
[print] ts=1775101495.994262 dir=Downstream frame=InputAudioRawFrame id=1768
[print] ts=1775101495.995497 dir=Downstream frame=InputAudioRawFrame id=1769
[print] ts=1775101495.996457 dir=Downstream frame=InputAudioRawFrame id=1770
[print] ts=1775101495.997665 dir=Downstream frame=InputAudioRawFrame id=1771
[print] ts=1775101495.999834 dir=Downstream frame=InputAudioRawFrame id=1772
[print] ts=1775101496.001489 dir=Downstream frame=InputAudioRawFrame id=1773
[print] ts=1775101496.006364 dir=Downstream frame=VADUserStartedSpeakingFrame id=1928
[print] ts=1775101496.006454 dir=Downstream frame=InputAudioRawFrame id=1774
[print] ts=1775101496.007906 dir=Downstream frame=InputAudioRawFrame id=1775
[print] ts=1775101496.009088 dir=Downstream frame=InputAudioRawFrame id=1776
[print] ts=1775101496.010228 dir=Downstream frame=InputAudioRawFrame id=1777
[print] ts=1775101496.011392 dir=Downstream frame=InputAudioRawFrame id=1778
[print] ts=1775101496.012543 dir=Downstream frame=InputAudioRawFrame id=1779
[print] ts=1775101496.013649 dir=Downstream frame=InputAudioRawFrame id=1780
[print] ts=1775101496.015087 dir=Downstream frame=InputAudioRawFrame id=1781
[print] ts=1775101496.016561 dir=Downstream frame=InputAudioRawFrame id=1782
[print] ts=1775101496.018074 dir=Downstream frame=InputAudioRawFrame id=1783
[print] ts=1775101496.019327 dir=Downstream frame=InputAudioRawFrame id=1784
[print] ts=1775101496.020538 dir=Downstream frame=InputAudioRawFrame id=1785
[print] ts=1775101496.021644 dir=Downstream frame=InputAudioRawFrame id=1786
[print] ts=1775101496.023026 dir=Downstream frame=InputAudioRawFrame id=1787
[print] ts=1775101496.024085 dir=Downstream frame=InputAudioRawFrame id=1788
[print] ts=1775101496.025251 dir=Downstream frame=InputAudioRawFrame id=1789
[print] ts=1775101496.027227 dir=Downstream frame=InputAudioRawFrame id=1790
[print] ts=1775101496.029201 dir=Downstream frame=InputAudioRawFrame id=1791
[print] ts=1775101496.030881 dir=Downstream frame=InputAudioRawFrame id=1792
[print] ts=1775101496.033570 dir=Downstream frame=InputAudioRawFrame id=1793
[print] ts=1775101496.035428 dir=Downstream frame=InputAudioRawFrame id=1794
[print] ts=1775101496.036563 dir=Downstream frame=InputAudioRawFrame id=1795
[print] ts=1775101496.038424 dir=Downstream frame=InputAudioRawFrame id=1796
[print] ts=1775101496.039560 dir=Downstream frame=InputAudioRawFrame id=1797
[print] ts=1775101496.041406 dir=Downstream frame=InputAudioRawFrame id=1798
[print] ts=1775101496.043673 dir=Downstream frame=InputAudioRawFrame id=1799
[print] ts=1775101496.045649 dir=Downstream frame=InputAudioRawFrame id=1800
[print] ts=1775101496.046992 dir=Downstream frame=VADUserStartedSpeakingFrame id=1929
[print] ts=1775101496.047078 dir=Downstream frame=InputAudioRawFrame id=1801
[print] ts=1775101496.048513 dir=Downstream frame=InputAudioRawFrame id=1802
[print] ts=1775101496.049880 dir=Downstream frame=InputAudioRawFrame id=1803
[print] ts=1775101496.051979 dir=Downstream frame=InputAudioRawFrame id=1804
[print] ts=1775101496.053220 dir=Downstream frame=InputAudioRawFrame id=1805
[print] ts=1775101496.054400 dir=Downstream frame=InputAudioRawFrame id=1806
[print] ts=1775101496.055531 dir=Downstream frame=InputAudioRawFrame id=1807
[print] ts=1775101496.057281 dir=Downstream frame=InputAudioRawFrame id=1808
[print] ts=1775101496.058466 dir=Downstream frame=InputAudioRawFrame id=1809
[print] ts=1775101496.059632 dir=Downstream frame=InputAudioRawFrame id=1810
[print] ts=1775101496.060788 dir=Downstream frame=InputAudioRawFrame id=1811
[print] ts=1775101496.062451 dir=Downstream frame=InputAudioRawFrame id=1812
[print] ts=1775101496.063434 dir=Downstream frame=InputAudioRawFrame id=1813
[print] ts=1775101496.065191 dir=Downstream frame=InputAudioRawFrame id=1814
[print] ts=1775101496.066554 dir=Downstream frame=InputAudioRawFrame id=1815
[print] ts=1775101496.068306 dir=Downstream frame=InputAudioRawFrame id=1816
[print] ts=1775101496.070128 dir=Downstream frame=InputAudioRawFrame id=1817
[print] ts=1775101496.071034 dir=Downstream frame=InputAudioRawFrame id=1818
[print] ts=1775101496.072149 dir=Downstream frame=InputAudioRawFrame id=1819
[print] ts=1775101496.073431 dir=Downstream frame=InputAudioRawFrame id=1820
[print] ts=1775101496.074522 dir=Downstream frame=InputAudioRawFrame id=1821
[print] ts=1775101496.077012 dir=Downstream frame=InputAudioRawFrame id=1822
[print] ts=1775101496.079414 dir=Downstream frame=InputAudioRawFrame id=1823
[print] ts=1775101496.081500 dir=Downstream frame=InputAudioRawFrame id=1824
[print] ts=1775101496.083205 dir=Downstream frame=InputAudioRawFrame id=1825
[print] ts=1775101496.084889 dir=Downstream frame=InputAudioRawFrame id=1826
[print] ts=1775101496.086539 dir=Downstream frame=InputAudioRawFrame id=1827
[print] ts=1775101496.087934 dir=Downstream frame=InputAudioRawFrame id=1828
[print] ts=1775101496.089128 dir=Downstream frame=InputAudioRawFrame id=1829
[print] ts=1775101496.090954 dir=Downstream frame=InputAudioRawFrame id=1830
[print] ts=1775101496.092759 dir=Downstream frame=InputAudioRawFrame id=1831
[print] ts=1775101496.094414 dir=Downstream frame=InputAudioRawFrame id=1832
[print] ts=1775101496.095655 dir=Downstream frame=InputAudioRawFrame id=1833
[print] ts=1775101496.097545 dir=Downstream frame=InputAudioRawFrame id=1834
[print] ts=1775101496.099052 dir=Downstream frame=InputAudioRawFrame id=1835
[print] ts=1775101496.101009 dir=Downstream frame=InputAudioRawFrame id=1836
[print] ts=1775101496.102398 dir=Downstream frame=InputAudioRawFrame id=1837
[print] ts=1775101496.105160 dir=Downstream frame=InputAudioRawFrame id=1838
[print] ts=1775101496.106514 dir=Downstream frame=InputAudioRawFrame id=1839
[print] ts=1775101496.108476 dir=Downstream frame=InputAudioRawFrame id=1840
[print] ts=1775101496.109867 dir=Downstream frame=VADUserStartedSpeakingFrame id=1930
[print] ts=1775101496.109951 dir=Downstream frame=InputAudioRawFrame id=1841
[print] ts=1775101496.111359 dir=Downstream frame=InputAudioRawFrame id=1842
[print] ts=1775101496.112675 dir=Downstream frame=InputAudioRawFrame id=1843
[print] ts=1775101496.113948 dir=Downstream frame=InputAudioRawFrame id=1844
[print] ts=1775101496.115180 dir=Downstream frame=InputAudioRawFrame id=1845
[print] ts=1775101496.116736 dir=Downstream frame=InputAudioRawFrame id=1846
[print] ts=1775101496.118303 dir=Downstream frame=InputAudioRawFrame id=1847
[print] ts=1775101496.119478 dir=Downstream frame=InputAudioRawFrame id=1848
[print] ts=1775101496.120887 dir=Downstream frame=InputAudioRawFrame id=1849
[print] ts=1775101496.122311 dir=Downstream frame=InputAudioRawFrame id=1850
[print] ts=1775101496.124463 dir=Downstream frame=VADUserStartedSpeakingFrame id=1931
[print] ts=1775101496.124548 dir=Downstream frame=InputAudioRawFrame id=1851
[print] ts=1775101496.126249 dir=Downstream frame=InputAudioRawFrame id=1852
[print] ts=1775101496.128164 dir=Downstream frame=InputAudioRawFrame id=1853
[print] ts=1775101496.130618 dir=Downstream frame=InputAudioRawFrame id=1854
[print] ts=1775101496.132191 dir=Downstream frame=InputAudioRawFrame id=1855
[print] ts=1775101496.135160 dir=Downstream frame=InputAudioRawFrame id=1856
[print] ts=1775101496.137051 dir=Downstream frame=InputAudioRawFrame id=1857
[print] ts=1775101496.138962 dir=Downstream frame=InputAudioRawFrame id=1858
[print] ts=1775101496.140002 dir=Downstream frame=InputAudioRawFrame id=1859
[print] ts=1775101496.141037 dir=Downstream frame=InputAudioRawFrame id=1860
[print] ts=1775101496.142460 dir=Downstream frame=InputAudioRawFrame id=1861
[print] ts=1775101496.143676 dir=Downstream frame=InputAudioRawFrame id=1862
[print] ts=1775101496.145108 dir=Downstream frame=InputAudioRawFrame id=1863
[print] ts=1775101496.147117 dir=Downstream frame=InputAudioRawFrame id=1864
[print] ts=1775101496.149848 dir=Downstream frame=InputAudioRawFrame id=1865
[print] ts=1775101496.151744 dir=Downstream frame=InputAudioRawFrame id=1866
[print] ts=1775101496.153106 dir=Downstream frame=InputAudioRawFrame id=1867
[print] ts=1775101496.155142 dir=Downstream frame=InputAudioRawFrame id=1868
[print] ts=1775101496.156929 dir=Downstream frame=InputAudioRawFrame id=1869
[print] ts=1775101496.158344 dir=Downstream frame=VADUserStoppedSpeakingFrame id=1932
[print] ts=1775101496.158430 dir=Downstream frame=InputAudioRawFrame id=1870
[print] ts=1775101496.160026 dir=Downstream frame=InputAudioRawFrame id=1871
[print] ts=1775101496.161829 dir=Downstream frame=InputAudioRawFrame id=1872
[print] ts=1775101496.162987 dir=Downstream frame=InputAudioRawFrame id=1873
[print] ts=1775101496.164012 dir=Downstream frame=InputAudioRawFrame id=1874
[print] ts=1775101496.165639 dir=Downstream frame=InputAudioRawFrame id=1875
[print] ts=1775101496.167136 dir=Downstream frame=InputAudioRawFrame id=1876
[print] ts=1775101496.168339 dir=Downstream frame=EndFrame id=1882
=== pipeline test complete ===