-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalid_corpus.json
2620 lines (2620 loc) · 574 KB
/
valid_corpus.json
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
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0000.wav", "duration": 3.285, "text": "the bogus legislature numbered thirty six members"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0001.wav", "duration": 3.45, "text": "this was at the march election eighteen fifty five"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0002.wav", "duration": 8.3, "text": "that summer's emigration however being mainly from the free states greatly changed the relative strength of the two parties"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0003.wav", "duration": 19.8050625, "text": "for general service therefore requiring no special effort the numerical strength of the factions was about equal while on extraordinary occasions the two thousand border ruffian reserve lying a little farther back from the state line could at any time easily turn the scale"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0004.wav", "duration": 20.155, "text": "the free state men had only their convictions their intelligence their courage and the moral support of the north the conspiracy had its secret combination the territorial officials the legislature the bogus laws the courts the militia officers the president and the army"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0005.wav", "duration": 5.18, "text": "this was a formidable array of advantages slavery was playing with loaded dice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0006.wav", "duration": 17.005, "text": "coming by way of the missouri river towns he fell first among border ruffian companionship and influences and perhaps having his inclinations already molded by his washington instructions his early impressions were decidedly adverse to the free state cause"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0007.wav", "duration": 11.53, "text": "his reception speech at westport in which he maintained the legality of the legislature and his determination to enforce their laws delighted his pro slavery auditors"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0008.wav", "duration": 19.065, "text": "all the territorial dignitaries were present governor shannon presided john calhoun the surveyor general made the principal speech a denunciation of the abolitionists supporting the topeka movement chief justice lecompte dignified the occasion with approving remarks"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0009.wav", "duration": 18.56, "text": "all dissent all non compliance all hesitation all mere silence even were in their stronghold towns like leavenworth branded as abolitionism declared to be hostility to the public welfare and punished with proscription personal violence expulsion and frequently death"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0010.wav", "duration": 8.54, "text": "of the lynchings the mobs and the murders it would be impossible except in a very extended work to note the frequent and atrocious details"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0011.wav", "duration": 20.355, "text": "the present chapters can only touch upon the more salient movements of the civil war in kansas which happily were not sanguinary if however the individual and more isolated cases of bloodshed could be described they would show a startling aggregate of barbarity and loss of life for opinion's sake"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0012.wav", "duration": 4.075, "text": "several hundred free state men promptly responded to the summons"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0013.wav", "duration": 2.675, "text": "it was in fact the best weapon of its day"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0014.wav", "duration": 5.295, "text": "the leaders of the conspiracy became distrustful of their power to crush the town"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0015.wav", "duration": 14.99, "text": "one of his militia generals suggested that the governor should require the outlaws at lawrence and elsewhere to surrender the sharps rifles another wrote asking him to call out the government troops at fort leavenworth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0016.wav", "duration": 11.61, "text": "the governor on his part becoming doubtful of the legality of employing missouri militia to enforce kansas laws was also eager to secure the help of federal troops"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0017.wav", "duration": 15.11, "text": "sheriff jones had his pockets always full of writs issued in the spirit of persecution but was often baffled by the sharp wits and ready resources of the free state people and sometimes defied outright"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0018.wav", "duration": 11.35, "text": "little by little however the latter became hemmed and bound in the meshes of the various devices and proceedings which the territorial officials evolved from the bogus laws"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0019.wav", "duration": 8.93, "text": "to embarrass this damaging exposure judge lecompte issued a writ against the ex governor on a frivolous charge of contempt"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0020.wav", "duration": 10.975, "text": "the incident was not violent nor even dramatic no posse was summoned no further effort made and reeder fearing personal violence soon fled in disguise"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0021.wav", "duration": 7.93, "text": "but the affair was magnified as a crowning proof that the free state men were insurrectionists and outlaws"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0022.wav", "duration": 11.795, "text": "from these again sprang barricaded and fortified dwellings camps and scouting parties finally culminating in roving guerrilla bands half partisan half predatory"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0023.wav", "duration": 5.5, "text": "their distinctive characters however display one broad and unfailing difference"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0024.wav", "duration": 10.23, "text": "the free state men clung to their prairie towns and prairie ravines with all the obstinacy and courage of true defenders of their homes and firesides"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0025.wav", "duration": 5.485, "text": "their assumed character changed with their changing opportunities or necessities"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0026.wav", "duration": 15.06, "text": "in the shooting of sheriff jones in lawrence and in the refusal of ex governor beeder to allow the deputy marshal to arrest him they discovered grave offenses against the territorial and united states laws"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0027.wav", "duration": 5.905, "text": "footnote sumner to shannon may twelfth eighteen fifty six"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0028.wav", "duration": 9.6, "text": "private persons who had leased the free state hotel vainly besought the various authorities to prevent the destruction of their property"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0029.wav", "duration": 7.06, "text": "ten days were consumed in these negotiations but the spirit of vengeance refused to yield"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0030.wav", "duration": 7.25, "text": "he summoned half a dozen citizens to join his posse who followed obeyed and assisted him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0031.wav", "duration": 6.75, "text": "he continued his pretended search and to give color to his errand made two arrests"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0032.wav", "duration": 20.28, "text": "the free state hotel a stone building in dimensions fifty by seventy feet three stories high and handsomely furnished previously occupied only for lodging rooms on that day for the first time opened its table accommodations to the public and provided a free dinner in honor of the occasion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0033.wav", "duration": 6.775, "text": "as he had promised to protect the hotel the reassured citizens began to laugh at their own fears"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0034.wav", "duration": 2.71, "text": "to their sorrow they were soon undeceived"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0035.wav", "duration": 5.625, "text": "the military force partly rabble partly organized had meanwhile moved into the town"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0036.wav", "duration": 7.705, "text": "he planted a company before the hotel and demanded a surrender of the arms belonging to the free state military companies"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0037.wav", "duration": 11.02, "text": "half an hour later turning a deaf ear to all remonstrance he gave the proprietors until five o'clock to remove their families and personal property from the free state hotel"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0038.wav", "duration": 7.92, "text": "atchison who had been haranguing the mob planted his two guns before the building and trained them upon it"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0039.wav", "duration": 6.815, "text": "the inmates being removed at the appointed hour a few cannon balls were fired through the stone walls"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0040.wav", "duration": 11.76, "text": "in this incident contrasting the creative and the destructive spirit of the factions the emigrant aid society of massachusetts finds its most honorable and triumphant vindication"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0041.wav", "duration": 12.415, "text": "the whole proceeding was so childish the miserable plot so transparent the outrage so gross as to bring disgust to the better class of border ruffians who were witnesses and accessories"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0042.wav", "duration": 9.225, "text": "relocated footnote governor robinson being on his way east the steamboat on which he was traveling stopped at lexington missouri"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0043.wav", "duration": 11.035, "text": "in a few days an officer came with a requisition from governor shannon and took the prisoner by land to westport and afterwards from there to kansas city and leavenworth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0044.wav", "duration": 17.105, "text": "here he was placed in the custody of captain martin of the kickapoo rangers who proved a kind jailer and materially assisted in protecting him from the dangerous intentions of the mob which at that time held leavenworth under a reign of terror"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0045.wav", "duration": 6.805, "text": "captain martin said i shall give you a pistol to help protect yourself if worse comes to worst"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7729/102255/7729-102255-0046.wav", "duration": 19.945, "text": "in the early morning of the next day may twenty ninth a company of dragoons with one empty saddle came down from the fort and while the pro slavery men still slept the prisoner and his escort were on their way across the prairies to lecompton in the charge of officers of the united states army"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0000.wav", "duration": 11.17, "text": "to celebrate the arrival of her son silvia gave a splendid supper to which she had invited all her relatives and it was a good opportunity for me to make their acquaintance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0001.wav", "duration": 12.195, "text": "without saying it positively she made me understand that being herself an illustrious member of the republic of letters she was well aware that she was speaking to an insect"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0002.wav", "duration": 8.78, "text": "in order to please her i spoke to her of the abbe conti and i had occasion to quote two lines of that profound writer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0003.wav", "duration": 21.48, "text": "madam corrected me with a patronizing air for my pronunciation of the word scevra which means divided saying that it ought to be pronounced sceura and she added that i ought to be very glad to have learned so much on the first day of my arrival in paris telling me that it would be an important day in my life"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0004.wav", "duration": 16.46, "text": "her face was an enigma for it inspired everyone with the warmest sympathy and yet if you examined it attentively there was not one beautiful feature she could not be called handsome but no one could have thought her ugly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0005.wav", "duration": 18.54, "text": "silvia was the adoration of france and her talent was the real support of all the comedies which the greatest authors wrote for her especially of the plays of marivaux for without her his comedies would never have gone to posterity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0006.wav", "duration": 23.74, "text": "silvia did not think that her good conduct was a merit for she knew that she was virtuous only because her self love compelled her to be so and she never exhibited any pride or assumed any superiority towards her theatrical sisters although satisfied to shine by their talent or their beauty they cared little about rendering themselves conspicuous by their virtue"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0007.wav", "duration": 12.49, "text": "two years before her death i saw her perform the character of marianne in the comedy of marivaux and in spite of her age and declining health the illusion was complete"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0008.wav", "duration": 23.86, "text": "she was honourably buried in the church of saint sauveur without the slightest opposition from the venerable priest who far from sharing the anti christain intolerancy of the clergy in general said that her profession as an actress had not hindered her from being a good christian and that the earth was the common mother of all human beings as jesus christ had been the saviour of all mankind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0009.wav", "duration": 18.31, "text": "you will forgive me dear reader if i have made you attend the funeral of silvia ten years before her death believe me i have no intention of performing a miracle you may console yourself with the idea that i shall spare you that unpleasant task when poor silvia dies"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0010.wav", "duration": 2.755, "text": "i never had any family"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0011.wav", "duration": 7.37, "text": "i had a name i believe in my young days but i have forgotten it since i have been in service"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0012.wav", "duration": 2.86, "text": "i shall call you esprit"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0013.wav", "duration": 3.3, "text": "you do me a great honour"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0014.wav", "duration": 5.71, "text": "here go and get me change for a louis i have it sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0015.wav", "duration": 2.61, "text": "at your service sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0016.wav", "duration": 4.195, "text": "madame quinson besides can answer your enquiries"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0017.wav", "duration": 17.99, "text": "i see a quantity of chairs for hire at the rate of one sou men reading the newspaper under the shade of the trees girls and men breakfasting either alone or in company waiters who were rapidly going up and down a narrow staircase hidden under the foliage"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0018.wav", "duration": 6.21, "text": "i sit down at a small table a waiter comes immediately to enquire my wishes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0019.wav", "duration": 3.305, "text": "i tell him to give me some coffee if it is good"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0020.wav", "duration": 13.215, "text": "then turning towards me he says that i look like a foreigner and when i say that i am an italian he begins to speak to me of the court of the city of the theatres and at last he offers to accompany me everywhere"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0021.wav", "duration": 2.96, "text": "i thank him and take my leave"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0022.wav", "duration": 8.315, "text": "i address him in italian and he answers very wittily but his way of speaking makes me smile and i tell him why"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0023.wav", "duration": 8.185, "text": "my remark pleases him but i soon prove to him that it is not the right way to speak however perfect may have been the language of that ancient writer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0024.wav", "duration": 5.515, "text": "i see a crowd in one corner of the garden everybody standing still and looking up"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0025.wav", "duration": 3.0, "text": "is there not a meridian everywhere"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0026.wav", "duration": 4.69, "text": "yes but the meridian of the palais royal is the most exact"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0027.wav", "duration": 3.0, "text": "that is true badauderie"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0028.wav", "duration": 5.265, "text": "all these honest persons are waiting their turn to get their snuff boxes filled"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0029.wav", "duration": 8.605, "text": "it is sold everywhere but for the last three weeks nobody will use any snuff but that sold at the civet cat"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0030.wav", "duration": 2.84, "text": "is it better than anywhere else"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0031.wav", "duration": 4.4, "text": "but how did she manage to render it so fashionable"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0032.wav", "duration": 13.64, "text": "simply by stopping her carriage two or three times before the shop to have her snuff box filled and by saying aloud to the young girl who handed back the box that her snuff was the very best in paris"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0033.wav", "duration": 28.575, "text": "you are now in the only country in the world where wit can make a fortune by selling either a genuine or a false article in the first case it receives the welcome of intelligent and talented people and in the second fools are always ready to reward it for silliness is truly a characteristic of the people here and however wonderful it may appear silliness is the daughter of wit"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0034.wav", "duration": 18.895, "text": "let a man run and everybody will run after him the crowd will not stop unless the man is proved to be mad but to prove it is indeed a difficult task because we have a crowd of men who mad from their birth are still considered wise"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0035.wav", "duration": 20.65, "text": "it seems to me i replied that such approval such ratification of the opinion expressed by the king the princes of the blood et cetera is rather a proof of the affection felt for them by the nation for the french carry that affection to such an extent that they believe them infallible"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0036.wav", "duration": 5.24, "text": "when the king comes to paris everybody calls out vive le roi"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0037.wav", "duration": 5.89, "text": "she introduced me to all her guests and gave me some particulars respecting every one of them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0038.wav", "duration": 5.77, "text": "what sir i said to him am i fortunate enough to see you"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0039.wav", "duration": 8.825, "text": "he himself recited the same passage in french and politely pointed out the parts in which he thought that i had improved on the original"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0040.wav", "duration": 10.66, "text": "for the first day sir i think that what you have done gives great hopes of you and without any doubt you will make rapid progress"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0041.wav", "duration": 10.895, "text": "i believe it sir and that is what i fear therefore the principal object of my visit here is to devote myself entirely to the study of the french language"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0042.wav", "duration": 15.165, "text": "i am a very unpleasant pupil always asking questions curious troublesome insatiable and even supposing that i could meet with the teacher i require i am afraid i am not rich enough to pay him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0043.wav", "duration": 4.205, "text": "i reside in the marais rue de douze portes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0044.wav", "duration": 6.98, "text": "i will make you translate them into french and you need not be afraid of my finding you insatiable"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0045.wav", "duration": 20.375, "text": "he had a good appetite could tell a good story without laughing was celebrated for his witty repartees and his sociable manners but he spent his life at home seldom going out and seeing hardly anyone because he always had a pipe in his mouth and was surrounded by at least twenty cats with which he would amuse himself all day"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3729/6852/3729-6852-0046.wav", "duration": 12.605, "text": "his housekeeper had the management of everything she never allowed him to be in need of anything and she gave no account of his money which she kept altogether because he never asked her to render any accounts"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0000.wav", "duration": 4.615, "text": "it was the indian whose dark silhouette appeared suddenly upon his blind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0001.wav", "duration": 3.265, "text": "he was pacing swiftly up and down his room"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0002.wav", "duration": 5.905, "text": "this set of rooms is quite the oldest in the college and it is not unusual for visitors to go over them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0003.wav", "duration": 4.1, "text": "no names please said holmes as we knocked at gilchrist's door"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0004.wav", "duration": 9.005, "text": "of course he did not realize that it was i who was knocking but none the less his conduct was very uncourteous and indeed under the circumstances rather suspicious"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0005.wav", "duration": 2.515, "text": "that is very important said holmes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0006.wav", "duration": 19.215, "text": "you don't seem to realize the position"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0007.wav", "duration": 16.16, "text": "to morrow is the examination"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0008.wav", "duration": 6.795, "text": "i cannot allow the examination to be held if one of the papers has been tampered with the situation must be faced"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0009.wav", "duration": 4.685, "text": "it is possible that i may be in a position then to indicate some course of action"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0010.wav", "duration": 4.47, "text": "i will take the black clay with me also the pencil cuttings good bye"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0011.wav", "duration": 5.0, "text": "when we were out in the darkness of the quadrangle we again looked up at the windows"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0012.wav", "duration": 2.485, "text": "the foul mouthed fellow at the top"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0013.wav", "duration": 20.025, "text": "he is the one with the worst record"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0014.wav", "duration": 3.97, "text": "why bannister the servant what's his game in the matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0015.wav", "duration": 3.47, "text": "he impressed me as being a perfectly honest man"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0016.wav", "duration": 5.96, "text": "my friend did not appear to be depressed by his failure but shrugged his shoulders in half humorous resignation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0017.wav", "duration": 16.0, "text": "no good my dear watson"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0018.wav", "duration": 3.345, "text": "i think so you have formed a conclusion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0019.wav", "duration": 3.125, "text": "yes my dear watson i have solved the mystery"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0020.wav", "duration": 2.86, "text": "look at that he held out his hand"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0021.wav", "duration": 4.01, "text": "on the palm were three little pyramids of black doughy clay"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0022.wav", "duration": 18.54, "text": "and one more this morning"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0023.wav", "duration": 8.735, "text": "in a few hours the examination would commence and he was still in the dilemma between making the facts public and allowing the culprit to compete for the valuable scholarship"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0024.wav", "duration": 9.185, "text": "he could hardly stand still so great was his mental agitation and he ran towards holmes with two eager hands outstretched thank heaven that you have come"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0025.wav", "duration": 2.375, "text": "you know him i think so"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0026.wav", "duration": 6.995, "text": "if this matter is not to become public we must give ourselves certain powers and resolve ourselves into a small private court martial"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0027.wav", "duration": 3.36, "text": "no sir certainly not"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0028.wav", "duration": 2.655, "text": "there was no man sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0029.wav", "duration": 8.075, "text": "his troubled blue eyes glanced at each of us and finally rested with an expression of blank dismay upon bannister in the farther corner"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0030.wav", "duration": 19.305, "text": "just close the door said holmes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0031.wav", "duration": 6.47, "text": "we want to know mister gilchrist how you an honourable man ever came to commit such an action as that of yesterday"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0032.wav", "duration": 4.995, "text": "for a moment gilchrist with upraised hand tried to control his writhing features"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0033.wav", "duration": 7.0, "text": "come come said holmes kindly it is human to err and at least no one can accuse you of being a callous criminal"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0034.wav", "duration": 4.49, "text": "well well don't trouble to answer listen and see that i do you no injustice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0035.wav", "duration": 2.63, "text": "he could examine the papers in his own office"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0036.wav", "duration": 2.475, "text": "the indian i also thought nothing of"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0037.wav", "duration": 2.965, "text": "when i approached your room i examined the window"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0038.wav", "duration": 2.955, "text": "no one less than that would have a chance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0039.wav", "duration": 4.885, "text": "i entered and i took you into my confidence as to the suggestions of the side table"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0040.wav", "duration": 5.985, "text": "he returned carrying his jumping shoes which are provided as you are aware with several sharp spikes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0041.wav", "duration": 7.99, "text": "no harm would have been done had it not been that as he passed your door he perceived the key which had been left by the carelessness of your servant"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0042.wav", "duration": 5.06, "text": "a sudden impulse came over him to enter and see if they were indeed the proofs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0043.wav", "duration": 18.585, "text": "he put his shoes on the table"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0044.wav", "duration": 2.895, "text": "gloves said the young man"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0045.wav", "duration": 3.625, "text": "suddenly he heard him at the very door there was no possible escape"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0046.wav", "duration": 2.35, "text": "have i told the truth mister gilchrist"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0047.wav", "duration": 5.25, "text": "i have a letter here mister soames which i wrote to you early this morning in the middle of a restless night"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0048.wav", "duration": 9.265, "text": "it will be clear to you from what i have said that only you could have let this young man out since you were left in the room and must have locked the door when you went out"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0049.wav", "duration": 7.575, "text": "it was simple enough sir if you only had known but with all your cleverness it was impossible that you could know"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141084/1580-141084-0050.wav", "duration": 2.78, "text": "if mister soames saw them the game was up"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0000.wav", "duration": 8.94, "text": "i will endeavour in my statement to avoid such terms as would serve to limit the events to any particular place or give a clue as to the people concerned"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0001.wav", "duration": 10.255, "text": "i had always known him to be restless in his manner but on this particular occasion he was in such a state of uncontrollable agitation that it was clear something very unusual had occurred"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0002.wav", "duration": 6.135, "text": "my friend's temper had not improved since he had been deprived of the congenial surroundings of baker street"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0003.wav", "duration": 6.55, "text": "without his scrapbooks his chemicals and his homely untidiness he was an uncomfortable man"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0004.wav", "duration": 4.515, "text": "i had to read it over carefully as the text must be absolutely correct"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0005.wav", "duration": 2.745, "text": "i was absent rather more than an hour"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0006.wav", "duration": 10.85, "text": "the only duplicate which existed so far as i knew was that which belonged to my servant bannister a man who has looked after my room for ten years and whose honesty is absolutely above suspicion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0007.wav", "duration": 4.565, "text": "the moment i looked at my table i was aware that someone had rummaged among my papers"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0008.wav", "duration": 4.305, "text": "the proof was in three long slips i had left them all together"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0009.wav", "duration": 7.04, "text": "the alternative was that someone passing had observed the key in the door had known that i was out and had entered to look at the papers"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0010.wav", "duration": 5.32, "text": "i gave him a little brandy and left him collapsed in a chair while i made a most careful examination of the room"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0011.wav", "duration": 2.825, "text": "a broken tip of lead was lying there also"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0012.wav", "duration": 7.065, "text": "not only this but on the table i found a small ball of black dough or clay with specks of something which looks like sawdust in it"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0013.wav", "duration": 4.32, "text": "above all things i desire to settle the matter quietly and discreetly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0014.wav", "duration": 2.855, "text": "to the best of my belief they were rolled up"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0015.wav", "duration": 4.985, "text": "did anyone know that these proofs would be there no one save the printer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0016.wav", "duration": 4.255, "text": "i was in such a hurry to come to you you left your door open"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0017.wav", "duration": 20.52, "text": "so it seems to me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0018.wav", "duration": 2.675, "text": "now mister soames at your disposal"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0019.wav", "duration": 2.705, "text": "above were three students one on each story"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0020.wav", "duration": 5.135, "text": "then he approached it and standing on tiptoe with his neck craned he looked into the room"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0021.wav", "duration": 3.715, "text": "there is no opening except the one pane said our learned guide"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0022.wav", "duration": 3.295, "text": "i am afraid there are no signs here said he"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0023.wav", "duration": 3.33, "text": "one could hardly hope for any upon so dry a day"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0024.wav", "duration": 4.48, "text": "you left him in a chair you say which chair by the window there"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0025.wav", "duration": 3.905, "text": "the man entered and took the papers sheet by sheet from the central table"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0026.wav", "duration": 4.775, "text": "as a matter of fact he could not said soames for i entered by the side door"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0027.wav", "duration": 5.225, "text": "how long would it take him to do that using every possible contraction a quarter of an hour not less"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0028.wav", "duration": 2.585, "text": "then he tossed it down and seized the next"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0029.wav", "duration": 10.055, "text": "he was in the midst of that when your return caused him to make a very hurried retreat very hurried since he had not time to replace the papers which would tell you that he had been there"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0030.wav", "duration": 3.48, "text": "mister soames was somewhat overwhelmed by this flood of information"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0031.wav", "duration": 6.25, "text": "holmes held out a small chip with the letters n n and a space of clear wood after them you see"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0032.wav", "duration": 4.135, "text": "watson i have always done you an injustice there are others"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0033.wav", "duration": 7.45, "text": "i was hoping that if the paper on which he wrote was thin some trace of it might come through upon this polished surface no i see nothing"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0034.wav", "duration": 6.99, "text": "as holmes drew the curtain i was aware from some little rigidity and alertness of his attitude that he was prepared for an emergency"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0035.wav", "duration": 4.98, "text": "holmes turned away and stooped suddenly to the floor halloa what's this"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0036.wav", "duration": 3.98, "text": "holmes held it out on his open palm in the glare of the electric light"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0037.wav", "duration": 5.73, "text": "what could he do he caught up everything which would betray him and he rushed into your bedroom to conceal himself"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0038.wav", "duration": 7.535, "text": "i understand you to say that there are three students who use this stair and are in the habit of passing your door yes there are"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0039.wav", "duration": 3.725, "text": "and they are all in for this examination yes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0040.wav", "duration": 3.75, "text": "one hardly likes to throw suspicion where there are no proofs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0041.wav", "duration": 3.575, "text": "let us hear the suspicions i will look after the proofs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0042.wav", "duration": 5.865, "text": "my scholar has been left very poor but he is hard working and industrious he will do well"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0043.wav", "duration": 2.74, "text": "the top floor belongs to miles mc laren"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0044.wav", "duration": 5.505, "text": "i dare not go so far as that but of the three he is perhaps the least unlikely"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0045.wav", "duration": 4.36, "text": "he was still suffering from this sudden disturbance of the quiet routine of his life"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0046.wav", "duration": 3.53, "text": "but i have occasionally done the same thing at other times"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0047.wav", "duration": 2.605, "text": "did you look at these papers on the table"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0048.wav", "duration": 2.785, "text": "how came you to leave the key in the door"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0049.wav", "duration": 3.8450625, "text": "anyone in the room could get out yes sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0050.wav", "duration": 3.085, "text": "i really don't think he knew much about it mister holmes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0051.wav", "duration": 15.84, "text": "only for a minute or so"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0052.wav", "duration": 3.45, "text": "oh i would not venture to say sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1580/141083/1580-141083-0053.wav", "duration": 4.015, "text": "you haven't seen any of them no sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0000.wav", "duration": 15.77, "text": "eleven o'clock had struck it was a fine clear night they were the only persons on the road and they sauntered leisurely along to avoid paying the price of fatigue for the recreation provided for the toledans in their valley or on the banks of their river"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0001.wav", "duration": 12.44, "text": "secure as he thought in the careful administration of justice in that city and the character of its well disposed inhabitants the good hidalgo was far from thinking that any disaster could befal his family"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0002.wav", "duration": 8.91, "text": "rodolfo and his companions with their faces muffled in their cloaks stared rudely and insolently at the mother the daughter and the servant maid"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0003.wav", "duration": 27.12, "text": "in a moment he communicated his thoughts to his companions and in the next moment they resolved to turn back and carry her off to please rodolfo for the rich who are open handed always find parasites ready to encourage their bad propensities and thus to conceive this wicked design to communicate it approve it resolve on ravishing leocadia and to carry that design into effect was the work of a moment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0004.wav", "duration": 12.475, "text": "they drew their swords hid their faces in the flaps of their cloaks turned back and soon came in front of the little party who had not yet done giving thanks to god for their escape from those audacious men"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0005.wav", "duration": 5.645, "text": "finally the one party went off exulting and the other was left in desolation and woe"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0006.wav", "duration": 8.045, "text": "rodolfo arrived at his own house without any impediment and leocadia's parents reached theirs heart broken and despairing"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0007.wav", "duration": 5.825, "text": "meanwhile rodolfo had leocadia safe in his custody and in his own apartment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0008.wav", "duration": 19.935, "text": "who touches me am i in bed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0009.wav", "duration": 2.375, "text": "mother dear father do you hear me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0010.wav", "duration": 4.12, "text": "it is the only amends i ask of you for the wrong you have done me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0011.wav", "duration": 2.665, "text": "she found the door but it was locked outside"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0012.wav", "duration": 8.595, "text": "she succeeded in opening the window and the moonlight shone in so brightly that she could distinguish the colour of some damask hangings in the room"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0013.wav", "duration": 6.865, "text": "she saw that the bed was gilded and so rich that it seemed that of a prince rather than of a private gentleman"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0014.wav", "duration": 7.72, "text": "among other things on which she cast her eyes was a small crucifix of solid silver standing on a cabinet near the window"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0015.wav", "duration": 11.02, "text": "this person was rodolfo who though he had gone to look for his friends had changed his mind in that respect not thinking it advisable to acquaint them with what had passed between him and the girl"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0016.wav", "duration": 9.49, "text": "on the contrary he resolved to tell them that repenting of his violence and moved by her tears he had only carried her half way towards his house and then let her go"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0017.wav", "duration": 5.88, "text": "choking with emotion leocadi made a sign to her parents that she wished to be alone with them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0018.wav", "duration": 15.4149375, "text": "that would be very well my child replied her father if your plan were not liable to be frustrated by ordinary cunning but no doubt this image has been already missed by its owner and he will have set it down for certain that it was taken out of the room by the person he locked up there"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0019.wav", "duration": 12.06, "text": "what you had best do my child is to keep it and pray to it that since it was a witness to your undoing it will deign to vindicate your cause by its righteous judgment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0020.wav", "duration": 9.82, "text": "thus did this humane and right minded father comfort his unhappy daughter and her mother embracing her again did all she could to soothe her feelings"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0021.wav", "duration": 10.98, "text": "she meanwhile passed her life with her parents in the strictest retirement never letting herself be seen but shunning every eye lest it should read her misfortune in her face"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0022.wav", "duration": 13.645, "text": "time rolled on the hour of her delivery arrived it took place in the utmost secrecy her mother taking upon her the office of midwife and she gave birth to a son one of the most beautiful ever seen"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0023.wav", "duration": 13.92, "text": "when the boy walked through the streets blessings were showered upon him by all who saw him blessings upon his beauty upon the mother that bore him upon the father that begot him upon those who brought him up so well"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0024.wav", "duration": 8.845, "text": "one day when the boy was sent by his grandfather with a message to a relation he passed along a street in which there was a great concourse of horsemen"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0025.wav", "duration": 8.785, "text": "the bed she too well remembered was there and above all the cabinet on which had stood the image she had taken away was still on the same spot"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0026.wav", "duration": 14.5, "text": "luis was out of danger in a fortnight in a month he rose from his bed and during all that time he was visited daily by his mother and grandmother and treated by the master and mistress of the house as if he was their own child"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0027.wav", "duration": 23.26, "text": "thus saying and pressing the crucifix to her breast she fell fainting into the arms of dona estafania who as a gentlewoman to whose sex pity is as natural as cruelty is to man instantly pressed her lips to those of the fainting girl shedding over her so many tears that there needed no other sprinkling of water to recover leocadia from her swoon"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0028.wav", "duration": 12.25, "text": "i have great things to tell you senor said dona estafania to her husband the cream and substance of which is this the fainting girl before you is your daughter and that boy is your grandson"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0029.wav", "duration": 7.305, "text": "this truth which i have learned from her lips is confirmed by his face in which we have both beheld that of our son"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0030.wav", "duration": 22.285, "text": "just then leocadia came to herself and embracing the cross seemed changed into a sea of tears and the gentleman remained in utter bewilderment until his wife had repeated to him from beginning to end leocadia's whole story and he believed it through the blessed dispensation of heaven which had confirmed it by so many convincing testimonies"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0031.wav", "duration": 28.42, "text": "so persuasive were her entreaties and so strong her assurances that no harm whatever could result to them from the information she sought they were induced to confess that one summer's night the same she had mentioned themselves and another friend being out on a stroll with rodolfo they had been concerned in the abduction of a girl whom rodolfo carried off whilst the rest of them detained her family who made a great outcry and would have defended her if they could"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0032.wav", "duration": 17.43, "text": "for god's sake my lady mother give me a wife who would be an agreeable companion not one who will disgust me so that we may both bear evenly and with mutual good will the yoke imposed on us by heaven instead of pulling this way and that way and fretting each other to death"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0033.wav", "duration": 9.15, "text": "her bearing was graceful and animated she led her son by the hand and before her walked two maids with wax lights and silver candlesticks"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0034.wav", "duration": 13.055, "text": "all rose to do her reverence as if something from heaven had miraculously appeared before them but gazing on her entranced with admiration not one of them was able to address a single word to her"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0035.wav", "duration": 17.52, "text": "she reflected how near she stood to the crisis which was to determine whether she was to be blessed or unhappy for ever and racked by the intensity of her emotions she suddenly changed colour her head dropped and she fell forward in a swoon into the arms of the dismayed estafania"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0036.wav", "duration": 11.535, "text": "his mother had left her to him as being her destined protector but when she saw that he too was insensible she was near making a third and would have done so had he not come to himself"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0037.wav", "duration": 11.45, "text": "know then son of my heart that this fainting lady is your real bride i say real because she is the one whom your father and i have chosen for you and the portrait was a pretence"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0038.wav", "duration": 13.8, "text": "just at the moment when the tears of the pitying beholders flowed fastest and their ejaculations were most expressive of despair leocadia gave signs of recovery and brought back gladness to the hearts of all"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0039.wav", "duration": 14.375, "text": "when she came to her senses and blushing to find herself in rodolfo's arms would have disengaged herself no senora he said that must not be strive not to withdraw from the arms of him who holds you in his soul"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0040.wav", "duration": 12.51, "text": "this was done for the event took place at a time when the consent of the parties was sufficient for the celebration of a marriage without any of the preliminary formalities which are now so properly required"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5639/40744/5639-40744-0041.wav", "duration": 17.2, "text": "nor was rodolfo less surprised than they and the better to assure himself of so wonderful a fact he begged leocadia to give him some token which should make perfectly clear to him that which indeed he did not doubt since it was authenticated by his parents"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0000.wav", "duration": 5.08, "text": "the paris plant like that at the crystal palace was a temporary exhibit"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0001.wav", "duration": 14.63, "text": "the london plant was less temporary but not permanent supplying before it was torn out no fewer than three thousand lamps in hotels churches stores and dwellings in the vicinity of holborn viaduct"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0002.wav", "duration": 13.115, "text": "there messrs johnson and hammer put into practice many of the ideas now standard in the art and secured much useful data for the work in new york of which the story has just been told"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0003.wav", "duration": 16.76, "text": "the dynamo electric machine though small was robust for under all the varying speeds of water power and the vicissitudes of the plant to which it belonged it continued in active use until eighteen ninety nine seventeen years"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0004.wav", "duration": 19.91, "text": "owing to his insistence on low pressure direct current for use in densely populated districts as the only safe and truly universal profitable way of delivering electrical energy to the consumers edison has been frequently spoken of as an opponent of the alternating current"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0005.wav", "duration": 6.9, "text": "why if we erect a station at the falls it is a great economy to get it up to the city"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0006.wav", "duration": 4.12, "text": "there seems no good reason for believing that it will change"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0007.wav", "duration": 13.445, "text": "broad as the prairies and free in thought as the winds that sweep them he is idiosyncratically opposed to loose and wasteful methods to plans of empire that neglect the poor at the gate"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0008.wav", "duration": 9.125, "text": "everything he has done has been aimed at the conservation of energy the contraction of space the intensification of culture"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0009.wav", "duration": 9.605, "text": "for some years it was not found feasible to operate motors on alternating current circuits and that reason was often urged against it seriously"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0010.wav", "duration": 10.82, "text": "it could not be used for electroplating or deposition nor could it charge storage batteries all of which are easily within the ability of the direct current"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0011.wav", "duration": 15.875, "text": "but when it came to be a question of lighting a scattered suburb a group of dwellings on the outskirts a remote country residence or a farm house the alternating current in all elements save its danger was and is ideal"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0012.wav", "duration": 11.145, "text": "edison was intolerant of sham and shoddy and nothing would satisfy him that could not stand cross examination by microscope test tube and galvanometer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0013.wav", "duration": 13.89, "text": "unless he could secure an engine of smoother running and more exactly governed and regulated than those available for his dynamo and lamp edison realized that he would find it almost impossible to give a steady light"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0014.wav", "duration": 3.75, "text": "mister edison was a leader far ahead of the time"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0015.wav", "duration": 8.875, "text": "he obtained the desired speed and load with a friction brake also regulator of speed but waited for an indicator to verify it"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0016.wav", "duration": 20.015, "text": "then again there was no known way to lubricate an engine for continuous running and mister edison informed me that as a marine engine started before the ship left new york and continued running until it reached its home port so an engine for his purposes must produce light at all times"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0017.wav", "duration": 19.915, "text": "edison had installed his historic first great central station system in new york on the multiple arc system covered by his feeder and main invention which resulted in a notable saving in the cost of conductors as against a straight two wire system throughout of the tree kind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0018.wav", "duration": 12.54, "text": "he soon foresaw that still greater economy would be necessary for commercial success not alone for the larger territory opening but for the compact districts of large cities"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0019.wav", "duration": 14.82, "text": "the strong position held by the edison system under the strenuous competition that was already springing up was enormously improved by the introduction of the three wire system and it gave an immediate impetus to incandescent lighting"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0020.wav", "duration": 10.35, "text": "it was specially suited for a trial plant also in the early days when a yield of six or eight lamps to the horse power was considered subject for congratulation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0021.wav", "duration": 10.95, "text": "the street conductors were of the overhead pole line construction and were installed by the construction company that had been organized by edison to build and equip central stations"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0022.wav", "duration": 13.665, "text": "meanwhile he had called upon me to make a report of the three wire system known in england as the hopkinson both doctor john hopkinson and mister edison being independent inventors at practically the same time"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0023.wav", "duration": 11.06, "text": "i think he was perhaps more appreciative than i was of the discipline of the edison construction department and thought it would be well for us to wait until the morning of the fourth before we started up"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0024.wav", "duration": 4.77, "text": "but the plant ran and it was the first three wire station in this country"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0025.wav", "duration": 15.28, "text": "they were later used as reserve machines and finally with the engine retired from service as part of the collection of edisonia but they remain in practically as good condition as when installed in eighteen eighty three"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0026.wav", "duration": 17.595, "text": "the arc lamp installed outside a customer's premises or in a circuit for public street lighting burned so many hours nightly so many nights in the month and was paid for at that rate subject to rebate for hours when the lamp might be out through accident"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0027.wav", "duration": 8.62, "text": "edison held that the electricity sold must be measured just like gas or water and he proceeded to develop a meter"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0028.wav", "duration": 25.94, "text": "there was infinite scepticism around him on the subject and while other inventors were also giving the subject their thought the public took it for granted that anything so utterly intangible as electricity that could not be seen or weighed and only gave secondary evidence of itself at the exact point of use could not be brought to accurate registration"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0029.wav", "duration": 6.425, "text": "hence the edison electrolytic meter is no longer used despite its excellent qualities"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0030.wav", "duration": 9.98, "text": "the principle employed in the edison electrolytic meter is that which exemplifies the power of electricity to decompose a chemical substance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0031.wav", "duration": 16.585, "text": "associated with this simple form of apparatus were various ingenious details and refinements to secure regularity of operation freedom from inaccuracy and immunity from such tampering as would permit theft of current or damage"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0032.wav", "duration": 11.69, "text": "the standard edison meter practice was to remove the cells once a month to the meter room of the central station company for examination another set being substituted"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0033.wav", "duration": 17.605, "text": "in december eighteen eighty eight mister w j jenks read an interesting paper before the american institute of electrical engineers on the six years of practical experience had up to that time with the meter then more generally in use than any other"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0034.wav", "duration": 8.605, "text": "the others having been in operation too short a time to show definite results although they also went quickly to a dividend basis"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0035.wav", "duration": 25.49, "text": "in this connection it should be mentioned that the association of edison illuminating companies in the same year adopted resolutions unanimously to the effect that the edison meter was accurate and that its use was not expensive for stations above one thousand lights and that the best financial results were invariably secured in a station selling current by meter"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0036.wav", "duration": 7.085, "text": "the meter continued in general service during eighteen ninety nine and probably up to the close of the century"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0037.wav", "duration": 7.965, "text": "he weighed and reweighed the meter plates and pursued every line of investigation imaginable but all in vain"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0038.wav", "duration": 5.61, "text": "he felt he was up against it and that perhaps another kind of a job would suit him better"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0039.wav", "duration": 2.385, "text": "the problem was solved"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0040.wav", "duration": 5.455, "text": "we were more interested in the technical condition of the station than in the commercial part"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/2300/131720/2300-131720-0041.wav", "duration": 3.75, "text": "we had meters in which there were two bottles of liquid"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0000.wav", "duration": 2.59, "text": "chapter one origin"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0001.wav", "duration": 11.32, "text": "it engenders a whole world la pegre for which read theft and a hell la pegrenne for which read hunger"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0002.wav", "duration": 3.185, "text": "thus idleness is the mother"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0003.wav", "duration": 4.895, "text": "she has a son theft and a daughter hunger"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0004.wav", "duration": 19.215, "text": "what is slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0005.wav", "duration": 4.21, "text": "we have never understood this sort of objections"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0006.wav", "duration": 18.99, "text": "slang is odious"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0007.wav", "duration": 2.63, "text": "slang makes one shudder"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0008.wav", "duration": 3.59, "text": "who denies that of course it does"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0009.wav", "duration": 11.305, "text": "when it is a question of probing a wound a gulf a society since when has it been considered wrong to go too far to go to the bottom"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0010.wav", "duration": 15.165, "text": "we have always thought that it was sometimes a courageous act and at least a simple and useful deed worthy of the sympathetic attention which duty accepted and fulfilled merits"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0011.wav", "duration": 5.615, "text": "why should one not explore everything and study everything"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0012.wav", "duration": 2.735, "text": "why should one halt on the way"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0013.wav", "duration": 10.44, "text": "nothing is more lugubrious than the contemplation thus in its nudity in the broad light of thought of the horrible swarming of slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0014.wav", "duration": 6.115, "text": "now when has horror ever excluded study"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0015.wav", "duration": 3.86, "text": "since when has malady banished medicine"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0016.wav", "duration": 17.265, "text": "can one imagine a naturalist refusing to study the viper the bat the scorpion the centipede the tarantula and one who would cast them back into their darkness saying oh how ugly that is"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0017.wav", "duration": 10.585, "text": "he would be like a philologist refusing to examine a fact in language a philosopher hesitating to scrutinize a fact in humanity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0018.wav", "duration": 3.375, "text": "what is slang properly speaking"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0019.wav", "duration": 2.93, "text": "it is the language of wretchedness"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0020.wav", "duration": 22.5, "text": "we may be stopped the fact may be put to us in general terms which is one way of attenuating it we may be told that all trades professions it may be added all the accidents of the social hierarchy and all forms of intelligence have their own slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0021.wav", "duration": 14.48, "text": "the painter who says my grinder the notary who says my skip the gutter the hairdresser who says my mealyback the cobbler who says my cub talks slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0022.wav", "duration": 6.2, "text": "there is the slang of the affected lady as well as of the precieuses"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0023.wav", "duration": 12.07, "text": "the sugar manufacturer who says loaf clarified lumps bastard common burnt this honest manufacturer talks slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0024.wav", "duration": 5.14, "text": "algebra medicine botany have each their slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0025.wav", "duration": 9.215, "text": "to meet the needs of this conflict wretchedness has invented a language of combat which is slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0026.wav", "duration": 31.615, "text": "to keep afloat and to rescue from oblivion to hold above the gulf were it but a fragment of some language which man has spoken and which would otherwise be lost that is to say one of the elements good or bad of which civilization is composed or by which it is complicated to extend the records of social observation is to serve civilization itself"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0027.wav", "duration": 15.96, "text": "phoenician very good"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0028.wav", "duration": 3.265, "text": "even dialect let that pass"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0029.wav", "duration": 3.87, "text": "to this we reply in one word only"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0030.wav", "duration": 14.79, "text": "assuredly if the tongue which a nation or a province has spoken is worthy of interest the language which has been spoken by a misery is still more worthy of attention and study"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0031.wav", "duration": 14.31, "text": "and then we insist upon it the study of social deformities and infirmities and the task of pointing them out with a view to remedy is not a business in which choice is permitted"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0032.wav", "duration": 28.09, "text": "he must descend with his heart full of charity and severity at the same time as a brother and as a judge to those impenetrable casemates where crawl pell mell those who bleed and those who deal the blow those who weep and those who curse those who fast and those who devour those who endure evil and those who inflict it"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0033.wav", "duration": 5.545, "text": "do we really know the mountain well when we are not acquainted with the cavern"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0034.wav", "duration": 11.27, "text": "they constitute two different orders of facts which correspond to each other which are always interlaced and which often bring forth results"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0035.wav", "duration": 7.535, "text": "true history being a mixture of all things the true historian mingles in everything"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0036.wav", "duration": 5.435, "text": "facts form one of these and ideas the other"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0037.wav", "duration": 5.35, "text": "there it clothes itself in word masks in metaphor rags"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0038.wav", "duration": 3.885, "text": "in this guise it becomes horrible"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0039.wav", "duration": 15.42, "text": "one perceives without understanding it a hideous murmur sounding almost like human accents but more nearly resembling a howl than an articulate word"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0040.wav", "duration": 3.925, "text": "one thinks one hears hydras talking"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0041.wav", "duration": 2.975, "text": "it is unintelligible in the dark"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0042.wav", "duration": 10.375, "text": "it is black in misfortune it is blacker still in crime these two blacknesses amalgamated compose slang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0043.wav", "duration": 3.99, "text": "the earth is not devoid of resemblance to a jail"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0044.wav", "duration": 19.71, "text": "look closely at life"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0045.wav", "duration": 4.89, "text": "it is so made that everywhere we feel the sense of punishment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0046.wav", "duration": 4.59, "text": "each day has its own great grief or its little care"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0047.wav", "duration": 34.955, "text": "yesterday you were trembling for a health that is dear to you to day you fear for your own to morrow it will be anxiety about money the day after to morrow the diatribe of a slanderer the day after that the misfortune of some friend then the prevailing weather then something that has been broken or lost then a pleasure with which your conscience and your vertebral column reproach you again the course of public affairs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0048.wav", "duration": 5.215, "text": "this without reckoning in the pains of the heart and so it goes on"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0049.wav", "duration": 5.91, "text": "there is hardly one day out of a hundred which is wholly joyous and sunny"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0050.wav", "duration": 3.895, "text": "and you belong to that small class who are happy"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0051.wav", "duration": 6.17, "text": "in this world evidently the vestibule of another there are no fortunate"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0052.wav", "duration": 6.275, "text": "the real human division is this the luminous and the shady"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0053.wav", "duration": 8.095, "text": "to diminish the number of the shady to augment the number of the luminous that is the object"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0054.wav", "duration": 4.315, "text": "that is why we cry education science"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0055.wav", "duration": 7.225, "text": "to teach reading means to light the fire every syllable spelled out sparkles"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0056.wav", "duration": 6.345, "text": "however he who says light does not necessarily say joy"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0057.wav", "duration": 4.61, "text": "people suffer in the light excess burns"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0058.wav", "duration": 3.11, "text": "the flame is the enemy of the wing"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4507/16021/4507-16021-0059.wav", "duration": 6.205, "text": "to burn without ceasing to fly therein lies the marvel of genius"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0000.wav", "duration": 10.435, "text": "he hoped there would be stew for dinner turnips and carrots and bruised potatoes and fat mutton pieces to be ladled out in thick peppered flour fattened sauce"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0001.wav", "duration": 3.275, "text": "stuff it into you his belly counselled him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0002.wav", "duration": 6.625, "text": "after early nightfall the yellow lamps would light up here and there the squalid quarter of the brothels"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0003.wav", "duration": 2.68, "text": "hello bertie any good in your mind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0004.wav", "duration": 5.2150625, "text": "number ten fresh nelly is waiting on you good night husband"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0005.wav", "duration": 9.635, "text": "the music came nearer and he recalled the words the words of shelley's fragment upon the moon wandering companionless pale for weariness"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0006.wav", "duration": 10.555, "text": "the dull light fell more faintly upon the page whereon another equation began to unfold itself slowly and to spread abroad its widening tail"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0007.wav", "duration": 4.275, "text": "a cold lucid indifference reigned in his soul"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0008.wav", "duration": 6.73, "text": "the chaos in which his ardour extinguished itself was a cold indifferent knowledge of himself"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0009.wav", "duration": 10.575, "text": "at most by an alms given to a beggar whose blessing he fled from he might hope wearily to win for himself some measure of actual grace"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0010.wav", "duration": 4.405, "text": "well now ennis i declare you have a head and so has my stick"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0011.wav", "duration": 12.445, "text": "on saturday mornings when the sodality met in the chapel to recite the little office his place was a cushioned kneeling desk at the right of the altar from which he led his wing of boys through the responses"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0012.wav", "duration": 11.64, "text": "her eyes seemed to regard him with mild pity her holiness a strange light glowing faintly upon her frail flesh did not humiliate the sinner who approached her"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0013.wav", "duration": 7.915, "text": "if ever he was impelled to cast sin from him and to repent the impulse that moved him was the wish to be her knight"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0014.wav", "duration": 20.025, "text": "he tried to think how it could be"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0015.wav", "duration": 5.815, "text": "but the dusk deepening in the schoolroom covered over his thoughts the bell rang"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0016.wav", "duration": 3.54, "text": "then you can ask him questions on the catechism dedalus"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0017.wav", "duration": 8.87, "text": "stephen leaning back and drawing idly on his scribbler listened to the talk about him which heron checked from time to time by saying"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0018.wav", "duration": 15.72, "text": "it was strange too that he found an arid pleasure in following up to the end the rigid lines of the doctrines of the church and penetrating into obscure silences only to hear and feel the more deeply his own condemnation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0019.wav", "duration": 13.895, "text": "the sentence of saint james which says that he who offends against one commandment becomes guilty of all had seemed to him first a swollen phrase until he had begun to grope in the darkness of his own state"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0020.wav", "duration": 16.79, "text": "if a man had stolen a pound in his youth and had used that pound to amass a huge fortune how much was he obliged to give back the pound he had stolen only or the pound together with the compound interest accruing upon it or all his huge fortune"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0021.wav", "duration": 6.55, "text": "if a layman in giving baptism pour the water before saying the words is the child baptized"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0022.wav", "duration": 11.175, "text": "how comes it that while the first beatitude promises the kingdom of heaven to the poor of heart the second beatitude promises also to the meek that they shall possess the land"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0023.wav", "duration": 13.275, "text": "why was the sacrament of the eucharist instituted under the two species of bread and wine if jesus christ be present body and blood soul and divinity in the bread alone and in the wine alone"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0024.wav", "duration": 11.655, "text": "if the wine change into vinegar and the host crumble into corruption after they have been consecrated is jesus christ still present under their species as god and as man"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0025.wav", "duration": 6.61, "text": "a gentle kick from the tall boy in the bench behind urged stephen to ask a difficult question"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0026.wav", "duration": 4.01, "text": "the rector did not ask for a catechism to hear the lesson from"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0027.wav", "duration": 2.71, "text": "he clasped his hands on the desk and said"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0028.wav", "duration": 7.83, "text": "the retreat will begin on wednesday afternoon in honour of saint francis xavier whose feast day is saturday"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0029.wav", "duration": 4.67, "text": "on friday confession will be heard all the afternoon after beads"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0030.wav", "duration": 2.715, "text": "beware of making that mistake"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0031.wav", "duration": 6.615, "text": "stephen's heart began slowly to fold and fade with fear like a withering flower"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0032.wav", "duration": 4.09, "text": "he is called as you know the apostle of the indies"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0033.wav", "duration": 3.33, "text": "a great saint saint francis xavier"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0034.wav", "duration": 5.81, "text": "the rector paused and then shaking his clasped hands before him went on"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0035.wav", "duration": 3.445, "text": "he had the faith in him that moves mountains"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0036.wav", "duration": 3.25, "text": "a great saint saint francis xavier"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134686/1089-134686-0037.wav", "duration": 5.21, "text": "in the silence their dark fire kindled the dusk into a tawny glow"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0000.wav", "duration": 18.765, "text": "he could wait no longer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0001.wav", "duration": 5.415, "text": "for a full hour he had paced up and down waiting but he could wait no longer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0002.wav", "duration": 11.6, "text": "he set off abruptly for the bull walking rapidly lest his father's shrill whistle might call him back and in a few moments he had rounded the curve at the police barrack and was safe"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0003.wav", "duration": 19.575, "text": "the university"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0004.wav", "duration": 5.1750625, "text": "pride after satisfaction uplifted him like long slow waves"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0005.wav", "duration": 5.36, "text": "whose feet are as the feet of harts and underneath the everlasting arms"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0006.wav", "duration": 5.895, "text": "the pride of that dim image brought back to his mind the dignity of the office he had refused"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0007.wav", "duration": 3.44, "text": "soon the whole bridge was trembling and resounding"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0008.wav", "duration": 14.985, "text": "the uncouth faces passed him two by two stained yellow or red or livid by the sea and as he strove to look at them with ease and indifference a faint stain of personal shame and commiseration rose to his own face"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0009.wav", "duration": 20.055, "text": "angry with himself he tried to hide his face from their eyes by gazing down sideways into the shallow swirling water under the bridge but he still saw a reflection therein of their top heavy silk hats and humble tape like collars and loosely hanging clerical clothes brother hickey"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0010.wav", "duration": 3.195, "text": "brother mac ardle brother keogh"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0011.wav", "duration": 20.01, "text": "their piety would be like their names like their faces like their clothes and it was idle for him to tell himself that their humble and contrite hearts it might be paid a far richer tribute of devotion than his had ever been a gift tenfold more acceptable than his elaborate adoration"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0012.wav", "duration": 15.03, "text": "it was idle for him to move himself to be generous towards them to tell himself that if he ever came to their gates stripped of his pride beaten and in beggar's weeds that they would be generous towards him loving him as themselves"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0013.wav", "duration": 16.33, "text": "idle and embittering finally to argue against his own dispassionate certitude that the commandment of love bade us not to love our neighbour as ourselves with the same amount and intensity of love but to love him as ourselves with the same kind of love"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0014.wav", "duration": 4.755, "text": "the phrase and the day and the scene harmonized in a chord"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0015.wav", "duration": 3.395, "text": "words was it their colours"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0016.wav", "duration": 9.06, "text": "they were voyaging across the deserts of the sky a host of nomads on the march voyaging high over ireland westward bound"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0017.wav", "duration": 11.695, "text": "the europe they had come from lay out there beyond the irish sea europe of strange tongues and valleyed and woodbegirt and citadelled and of entrenched and marshalled races"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0018.wav", "duration": 3.09, "text": "again again"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0019.wav", "duration": 3.155, "text": "a voice from beyond the world was calling"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0020.wav", "duration": 3.99, "text": "hello stephanos here comes the dedalus"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0021.wav", "duration": 13.37, "text": "their diving stone poised on its rude supports and rocking under their plunges and the rough hewn stones of the sloping breakwater over which they scrambled in their horseplay gleamed with cold wet lustre"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0022.wav", "duration": 5.635, "text": "he stood still in deference to their calls and parried their banter with easy words"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0023.wav", "duration": 7.735, "text": "it was a pain to see them and a sword like pain to see the signs of adolescence that made repellent their pitiable nakedness"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0024.wav", "duration": 19.935, "text": "stephanos dedalos"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1089/134691/1089-134691-0025.wav", "duration": 8.005, "text": "a moment before the ghost of the ancient kingdom of the danes had looked forth through the vesture of the hazewrapped city"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0000.wav", "duration": 13.48, "text": "since the period of our tale the active spirit of the country has surrounded it with a belt of rich and thriving settlements though none but the hunter or the savage is ever known even now to penetrate its wild recesses"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0001.wav", "duration": 9.52, "text": "the dews were suffered to exhale and the sun had dispersed the mists and was shedding a strong and clear light in the forest when the travelers resumed their journey"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0002.wav", "duration": 7.46, "text": "after proceeding a few miles the progress of hawkeye who led the advance became more deliberate and watchful"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0003.wav", "duration": 9.865, "text": "he often stopped to examine the trees nor did he cross a rivulet without attentively considering the quantity the velocity and the color of its waters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0004.wav", "duration": 6.425, "text": "distrusting his own judgment his appeals to the opinion of chingachgook were frequent and earnest"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0005.wav", "duration": 5.915, "text": "yet here are we within a short range of the scaroons and not a sign of a trail have we crossed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0006.wav", "duration": 4.845, "text": "let us retrace our steps and examine as we go with keener eyes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0007.wav", "duration": 5.54, "text": "chingachgook had caught the look and motioning with his hand he bade him speak"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0008.wav", "duration": 7.875, "text": "the eyes of the whole party followed the unexpected movement and read their success in the air of triumph that the youth assumed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0009.wav", "duration": 3.88, "text": "it would have been more wonderful had he spoken without a bidding"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0010.wav", "duration": 10.195, "text": "see said uncas pointing north and south at the evident marks of the broad trail on either side of him the dark hair has gone toward the forest"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0011.wav", "duration": 13.695, "text": "if a rock or a rivulet or a bit of earth harder than common severed the links of the clew they followed the true eye of the scout recovered them at a distance and seldom rendered the delay of a single moment necessary"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0012.wav", "duration": 10.49, "text": "extinguished brands were lying around a spring the offals of a deer were scattered about the place and the trees bore evident marks of having been browsed by the horses"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0013.wav", "duration": 6.55, "text": "a circle of a few hundred feet in circumference was drawn and each of the party took a segment for his portion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0014.wav", "duration": 3.515, "text": "the examination however resulted in no discovery"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0015.wav", "duration": 6.385, "text": "the whole party crowded to the spot where uncas pointed out the impression of a moccasin in the moist alluvion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122612/1320-122612-0016.wav", "duration": 3.49, "text": "run back uncas and bring me the size of the singer's foot"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0000.wav", "duration": 7.835, "text": "notwithstanding the high resolution of hawkeye he fully comprehended all the difficulties and danger he was about to incur"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0001.wav", "duration": 14.055, "text": "in his return to the camp his acute and practised intellects were intently engaged in devising means to counteract a watchfulness and suspicion on the part of his enemies that he knew were in no degree inferior to his own"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0002.wav", "duration": 13.585, "text": "in other words while he had implicit faith in the ability of balaam's ass to speak he was somewhat skeptical on the subject of a bear's singing and yet he had been assured of the latter on the testimony of his own exquisite organs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0003.wav", "duration": 6.285, "text": "there was something in his air and manner that betrayed to the scout the utter confusion of the state of his mind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0004.wav", "duration": 12.26, "text": "the ingenious hawkeye who recalled the hasty manner in which the other had abandoned his post at the bedside of the sick woman was not without his suspicions concerning the subject of so much solemn deliberation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0005.wav", "duration": 4.4, "text": "the bear shook his shaggy sides and then a well known voice replied"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0006.wav", "duration": 5.655, "text": "can these things be returned david breathing more freely as the truth began to dawn upon him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0007.wav", "duration": 18.525, "text": "come come returned hawkeye uncasing his honest countenance the better to assure the wavering confidence of his companion you may see a skin which if it be not as white as one of the gentle ones has no tinge of red to it that the winds of the heaven and the sun have not bestowed now let us to business"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0008.wav", "duration": 4.185, "text": "the young man is in bondage and much i fear his death is decreed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0009.wav", "duration": 7.705, "text": "i greatly mourn that one so well disposed should die in his ignorance and i have sought a goodly hymn can you lead me to him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0010.wav", "duration": 10.0, "text": "the task will not be difficult returned david hesitating though i greatly fear your presence would rather increase than mitigate his unhappy fortunes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0011.wav", "duration": 9.76, "text": "the lodge in which uncas was confined was in the very center of the village and in a situation perhaps more difficult than any other to approach or leave without observation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0012.wav", "duration": 7.59, "text": "four or five of the latter only lingered about the door of the prison of uncas wary but close observers of the manner of their captive"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0013.wav", "duration": 10.755, "text": "delivered in a strong tone of assent announced the gratification the savage would receive in witnessing such an exhibition of weakness in an enemy so long hated and so much feared"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0014.wav", "duration": 4.9, "text": "they drew back a little from the entrance and motioned to the supposed conjurer to enter"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0015.wav", "duration": 5.125, "text": "but the bear instead of obeying maintained the seat it had taken and growled"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0016.wav", "duration": 10.085, "text": "the cunning man is afraid that his breath will blow upon his brothers and take away their courage too continued david improving the hint he received they must stand further off"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0017.wav", "duration": 5.655, "text": "then as if satisfied of their safety the scout left his position and slowly entered the place"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0018.wav", "duration": 9.695, "text": "it was silent and gloomy being tenanted solely by the captive and lighted by the dying embers of a fire which had been used for the purposed of cookery"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0019.wav", "duration": 8.23, "text": "uncas occupied a distant corner in a reclining attitude being rigidly bound both hands and feet by strong and painful withes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0020.wav", "duration": 8.895, "text": "the scout who had left david at the door to ascertain they were not observed thought it prudent to preserve his disguise until assured of their privacy"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0021.wav", "duration": 5.335, "text": "what shall we do with the mingoes at the door they count six and this singer is as good as nothing"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0022.wav", "duration": 3.855, "text": "the delawares are children of the tortoise and they outstrip the deer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0023.wav", "duration": 7.815, "text": "uncas who had already approached the door in readiness to lead the way now recoiled and placed himself once more in the bottom of the lodge"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0024.wav", "duration": 7.555, "text": "but hawkeye who was too much occupied with his own thoughts to note the movement continued speaking more to himself than to his companion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0025.wav", "duration": 6.36, "text": "so uncas you had better take the lead while i will put on the skin again and trust to cunning for want of speed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0026.wav", "duration": 5.225, "text": "well what can't be done by main courage in war must be done by circumvention"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0027.wav", "duration": 5.6899375, "text": "as soon as these dispositions were made the scout turned to david and gave him his parting instructions"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0028.wav", "duration": 15.995, "text": "my pursuits are peaceful and my temper i humbly trust is greatly given to mercy and love returned david a little nettled at so direct an attack on his manhood but there are none who can say that i have ever forgotten my faith in the lord even in the greatest straits"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0029.wav", "duration": 7.875, "text": "if you are not then knocked on the head your being a non composser will protect you and you'll then have a good reason to expect to die in your bed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0030.wav", "duration": 3.98, "text": "so choose for yourself to make a rush or tarry here"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0031.wav", "duration": 6.285, "text": "bravely and generously has he battled in my behalf and this and more will i dare in his service"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0032.wav", "duration": 11.28, "text": "keep silent as long as may be and it would be wise when you do speak to break out suddenly in one of your shoutings which will serve to remind the indians that you are not altogether as responsible as men should be"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0033.wav", "duration": 11.045, "text": "if however they take your scalp as i trust and believe they will not depend on it uncas and i will not forget the deed but revenge it as becomes true warriors and trusty friends"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0034.wav", "duration": 9.485, "text": "hold said david perceiving that with this assurance they were about to leave him i am an unworthy and humble follower of one who taught not the damnable principle of revenge"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0035.wav", "duration": 18.22, "text": "then heaving a heavy sigh probably among the last he ever drew in pining for a condition he had so long abandoned he added it is what i would wish to practise myself as one without a cross of blood though it is not always easy to deal with an indian as you would with a fellow christian"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0036.wav", "duration": 12.37, "text": "god bless you friend i do believe your scent is not greatly wrong when the matter is duly considered and keeping eternity before the eyes though much depends on the natural gifts and the force of temptation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0037.wav", "duration": 7.18, "text": "the delaware dog he said leaning forward and peering through the dim light to catch the expression of the other's features is he afraid"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0038.wav", "duration": 20.16, "text": "will the hurons hear his groans"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0039.wav", "duration": 7.055, "text": "the mohican started on his feet and shook his shaggy covering as though the animal he counterfeited was about to make some desperate effort"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0040.wav", "duration": 7.975, "text": "he had no occasion to delay for at the next instant a burst of cries filled the outer air and ran along the whole extent of the village"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1320/122617/1320-122617-0041.wav", "duration": 4.15, "text": "uncas cast his skin and stepped forth in his own beautiful proportions"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0000.wav", "duration": 19.485, "text": "and how odd the directions will look"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0001.wav", "duration": 12.18, "text": "poor alice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0002.wav", "duration": 14.715, "text": "it was the white rabbit returning splendidly dressed with a pair of white kid gloves in one hand and a large fan in the other he came trotting along in a great hurry muttering to himself as he came oh the duchess the duchess"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0003.wav", "duration": 3.585, "text": "oh won't she be savage if i've kept her waiting"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0004.wav", "duration": 12.02, "text": "alice took up the fan and gloves and as the hall was very hot she kept fanning herself all the time she went on talking dear dear how queer everything is to day"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0005.wav", "duration": 3.105, "text": "and yesterday things went on just as usual"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0006.wav", "duration": 2.715, "text": "i wonder if i've been changed in the night"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0007.wav", "duration": 3.385, "text": "i almost think i can remember feeling a little different"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0008.wav", "duration": 3.745, "text": "i'll try if i know all the things i used to know"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0009.wav", "duration": 3.115, "text": "i shall never get to twenty at that rate"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0010.wav", "duration": 8.315, "text": "how cheerfully he seems to grin how neatly spread his claws and welcome little fishes in with gently smiling jaws"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0011.wav", "duration": 4.87, "text": "no i've made up my mind about it if i'm mabel i'll stay down here"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0012.wav", "duration": 5.245, "text": "it'll be no use their putting their heads down and saying come up again dear"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0013.wav", "duration": 3.475, "text": "i am so very tired of being all alone here"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0014.wav", "duration": 3.815, "text": "and i declare it's too bad that it is"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0015.wav", "duration": 6.2, "text": "i wish i hadn't cried so much said alice as she swam about trying to find her way out"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0016.wav", "duration": 4.895, "text": "i shall be punished for it now i suppose by being drowned in my own tears"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0017.wav", "duration": 3.07, "text": "that will be a queer thing to be sure"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0018.wav", "duration": 3.64, "text": "i am very tired of swimming about here o mouse"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0019.wav", "duration": 6.63, "text": "cried alice again for this time the mouse was bristling all over and she felt certain it must be really offended"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123440/260-123440-0020.wav", "duration": 4.995, "text": "we won't talk about her any more if you'd rather not we indeed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0000.wav", "duration": 3.04, "text": "the roarings become lost in the distance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0001.wav", "duration": 5.08, "text": "the weather if we may use that term will change before long"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0002.wav", "duration": 7.25, "text": "the atmosphere is charged with vapours pervaded with the electricity generated by the evaporation of saline waters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0003.wav", "duration": 8.905, "text": "the electric light can scarcely penetrate through the dense curtain which has dropped over the theatre on which the battle of the elements is about to be waged"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0004.wav", "duration": 4.31, "text": "the air is heavy the sea is calm"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0005.wav", "duration": 12.55, "text": "from time to time a fleecy tuft of mist with yet some gleaming light left upon it drops down upon the dense floor of grey and loses itself in the opaque and impenetrable mass"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0006.wav", "duration": 4.88, "text": "the atmosphere is evidently charged and surcharged with electricity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0007.wav", "duration": 11.2, "text": "the wind never lulls but to acquire increased strength the vast bank of heavy clouds is a huge reservoir of fearful windy gusts and rushing storms"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0008.wav", "duration": 5.515, "text": "there's a heavy storm coming on i cried pointing towards the horizon"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0009.wav", "duration": 3.435, "text": "those clouds seem as if they were going to crush the sea"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0010.wav", "duration": 9.995, "text": "on the mast already i see the light play of a lambent saint elmo's fire the outstretched sail catches not a breath of wind and hangs like a sheet of lead"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0011.wav", "duration": 8.98, "text": "but if we have now ceased to advance why do we yet leave that sail loose which at the first shock of the tempest may capsize us in a moment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0012.wav", "duration": 3.545, "text": "that will be safest no no never"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0013.wav", "duration": 11.3850625, "text": "the piled up vapours condense into water and the air put into violent action to supply the vacuum left by the condensation of the mists rouses itself into a whirlwind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0014.wav", "duration": 14.44, "text": "hans stirs not"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0015.wav", "duration": 21.185, "text": "from the under surface of the clouds there are continual emissions of lurid light electric matter is in continual evolution from their component molecules the gaseous elements of the air need to be slaked with moisture for innumerable columns of water rush upwards into the air and fall back again in white foam"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0016.wav", "duration": 4.865, "text": "i refer to the thermometer it indicates the figure is obliterated"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0017.wav", "duration": 5.225, "text": "is the atmospheric condition having once reached this density to become final"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0018.wav", "duration": 3.245, "text": "the raft bears on still to the south east"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0019.wav", "duration": 2.955, "text": "at noon the violence of the storm redoubles"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0020.wav", "duration": 2.9, "text": "each of us is lashed to some part of the raft"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0021.wav", "duration": 2.71, "text": "the waves rise above our heads"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0022.wav", "duration": 3.705, "text": "they seem to be we are lost but i am not sure"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0023.wav", "duration": 21.465, "text": "he nods his consent"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0024.wav", "duration": 14.595, "text": "the fireball half of it white half azure blue and the size of a ten inch shell moved slowly about the raft but revolving on its own axis with astonishing velocity as if whipped round by the force of the whirlwind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0025.wav", "duration": 13.445, "text": "here it comes there it glides now it is up the ragged stump of the mast thence it lightly leaps on the provision bag descends with a light bound and just skims the powder magazine horrible"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0026.wav", "duration": 16.04, "text": "we shall be blown up but no the dazzling disk of mysterious light nimbly leaps aside it approaches hans who fixes his blue eye upon it steadily it threatens the head of my uncle who falls upon his knees with his head down to avoid it"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0027.wav", "duration": 6.305, "text": "a suffocating smell of nitrogen fills the air it enters the throat it fills the lungs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123288/260-123288-0028.wav", "duration": 2.61, "text": "we suffer stifling pains"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0000.wav", "duration": 7.04, "text": "saturday august fifteenth the sea unbroken all round no land in sight"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0001.wav", "duration": 3.07, "text": "the horizon seems extremely distant"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0002.wav", "duration": 9.985, "text": "all my danger and sufferings were needed to strike a spark of human feeling out of him but now that i am well his nature has resumed its sway"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0003.wav", "duration": 7.37, "text": "you seem anxious my uncle i said seeing him continually with his glass to his eye anxious"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0004.wav", "duration": 3.465, "text": "one might be with less reason than now"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0005.wav", "duration": 4.81, "text": "i am not complaining that the rate is slow but that the sea is so wide"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0006.wav", "duration": 7.405, "text": "we are losing time and the fact is i have not come all this way to take a little sail upon a pond on a raft"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0007.wav", "duration": 4.55, "text": "he called this sea a pond and our long voyage taking a little sail"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0008.wav", "duration": 3.735, "text": "therefore don't talk to me about views and prospects"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0009.wav", "duration": 5.795, "text": "i take this as my answer and i leave the professor to bite his lips with impatience"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0010.wav", "duration": 2.575, "text": "sunday august sixteenth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0011.wav", "duration": 4.255, "text": "nothing new weather unchanged the wind freshens"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0012.wav", "duration": 2.43, "text": "but there seemed no reason to fear"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0013.wav", "duration": 4.73, "text": "the shadow of the raft was clearly outlined upon the surface of the waves"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0014.wav", "duration": 2.98, "text": "truly this sea is of infinite width"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0015.wav", "duration": 5.21, "text": "it must be as wide as the mediterranean or the atlantic and why not"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0016.wav", "duration": 7.0, "text": "these thoughts agitated me all day and my imagination scarcely calmed down after several hours sleep"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0017.wav", "duration": 3.975, "text": "i shudder as i recall these monsters to my remembrance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0018.wav", "duration": 5.67, "text": "i saw at the hamburg museum the skeleton of one of these creatures thirty feet in length"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0019.wav", "duration": 11.905, "text": "i suppose professor liedenbrock was of my opinion too and even shared my fears for after having examined the pick his eyes traversed the ocean from side to side"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0020.wav", "duration": 3.06, "text": "tuesday august eighteenth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0021.wav", "duration": 2.55, "text": "during his watch i slept"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0022.wav", "duration": 3.235, "text": "two hours afterwards a terrible shock awoke me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0023.wav", "duration": 5.875, "text": "the raft was heaved up on a watery mountain and pitched down again at a distance of twenty fathoms"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0024.wav", "duration": 3.04, "text": "there's a whale a whale cried the professor"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0025.wav", "duration": 9.205, "text": "flight was out of the question now the reptiles rose they wheeled around our little raft with a rapidity greater than that of express trains"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0026.wav", "duration": 6.94, "text": "two monsters only were creating all this commotion and before my eyes are two reptiles of the primitive world"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0027.wav", "duration": 7.17, "text": "i can distinguish the eye of the ichthyosaurus glowing like a red hot coal and as large as a man's head"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0028.wav", "duration": 7.465, "text": "its jaw is enormous and according to naturalists it is armed with no less than one hundred and eighty two teeth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0029.wav", "duration": 4.545, "text": "those huge creatures attacked each other with the greatest animosity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0030.wav", "duration": 7.53, "text": "suddenly the ichthyosaurus and the plesiosaurus disappear below leaving a whirlpool eddying in the water"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/260/123286/260-123286-0031.wav", "duration": 5.06, "text": "as for the ichthyosaurus has he returned to his submarine cavern"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0000.wav", "duration": 17.74, "text": "though thrown into prison for this enterprise and detained some time he was not discouraged but still continued by his countenance and protection to infuse spirit into the distressed royalists"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0001.wav", "duration": 22.45, "text": "among other persons of distinction who united themselves to him was lord napier of merchiston son of the famous inventor of the logarithms the person to whom the title of a great man is more justly due than to any other whom his country ever produced"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0002.wav", "duration": 24.54, "text": "while the former foretold that the scottish covenanters were secretly forming a union with the english parliament and inculcated the necessity of preventing them by some vigorous undertaking the latter still insisted that every such attempt would precipitate them into measures to which otherwise they were not perhaps inclined"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0003.wav", "duration": 13.085, "text": "the king's ears were now open to montrose's counsels who proposed none but the boldest and most daring agreeably to the desperate state of the royal cause in scotland"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0004.wav", "duration": 21.255, "text": "five hundred men more who had been levied by the covenanters were persuaded to embrace the royal cause and with this combined force he hastened to attack lord elcho who lay at perth with an army of six thousand men assembled upon the first news of the irish invasion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0005.wav", "duration": 26.16, "text": "dreading the superior power of argyle who having joined his vassals to a force levied by the public was approaching with a considerable army montrose hastened northwards in order to rouse again the marquis of huntley and the gordons who having before hastily taken arms had been instantly suppressed by the covenanters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0006.wav", "duration": 16.98, "text": "this nobleman's character though celebrated for political courage and conduct was very low for military prowess and after some skirmishes in which he was worsted he here allowed montrose to escape him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0007.wav", "duration": 10.085, "text": "by quick marches through these inaccessible mountains that general freed himself from the superior forces of the covenanters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0008.wav", "duration": 20.98, "text": "with these and some reenforcements of the atholemen and macdonalds whom he had recalled montrose fell suddenly upon argyle's country and let loose upon it all the rage of war carrying off the cattle burning the houses and putting the inhabitants to the sword"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0009.wav", "duration": 28.41, "text": "this severity by which montrose sullied his victories was the result of private animosity against the chieftain as much as of zeal for the public cause argyle collecting three thousand men marched in quest of the enemy who had retired with their plunder and he lay at innerlochy supposing himself still at a considerable distance from them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0010.wav", "duration": 13.62, "text": "by a quick and unexpected march montrose hastened to innerlochy and presented himself in order of battle before the surprised but not affrightened covenanters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0011.wav", "duration": 6.48, "text": "his conduct and presence of mind in this emergence appeared conspicuous"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0012.wav", "duration": 19.885, "text": "montrose weak in cavalry here lined his troops of horse with infantry and after putting the enemy's horse to rout fell with united force upon their foot who were entirely cut in pieces though with the loss of the gallant lord gordon on the part of the royalists"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0013.wav", "duration": 13.61, "text": "from the same men new regiments and new companies were formed different officers appointed and the whole military force put into such hands as the independents could rely on"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0014.wav", "duration": 17.88, "text": "besides members of parliament who were excluded many officers unwilling to serve under the new generals threw up their commissions and unwarily facilitated the project of putting the army entirely into the hands of that faction"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0015.wav", "duration": 12.655, "text": "though the discipline of the former parliamentary army was not contemptible a more exact plan was introduced and rigorously executed by these new commanders"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0016.wav", "duration": 27.525, "text": "valor indeed was very generally diffused over the one party as well as the other during this period discipline also was attained by the forces of the parliament but the perfection of the military art in concerting the general plans of action and the operations of the field seems still on both sides to have been in a great measure wanting"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274381/8224-274381-0017.wav", "duration": 17.825, "text": "historians at least perhaps from their own ignorance and inexperience have not remarked any thing but a headlong impetuous conduct each party hurrying to a battle where valor and fortune chiefly determined the success"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0000.wav", "duration": 7.605, "text": "he passed through henley saint albans and came so near to london as harrow on the hill"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0001.wav", "duration": 20.33, "text": "the scottish generals and commissioners affected great surprise on the appearance of the king and though they paid him all the exterior respect due to his dignity they instantly set a guard upon him under color of protection and made him in reality a prisoner"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0002.wav", "duration": 9.815, "text": "they informed the english parliament of this unexpected incident and assured them that they had entered into no private treaty with the king"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0003.wav", "duration": 3.87, "text": "or hath he given us any gift"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0004.wav", "duration": 20.64, "text": "and the men of israel answered the men of judah and said we have ten parts in the king and we have also more right in david than ye why then did ye despise us that our advice should not be first had in bringing back our king"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0005.wav", "duration": 8.745, "text": "another preacher after reproaching him to his face with his misgovernment ordered this psalm to be sung"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0006.wav", "duration": 6.81, "text": "the king stood up and called for that psalm which begins with these words"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0007.wav", "duration": 6.23, "text": "have mercy lord on me i pray for men would me devour"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0008.wav", "duration": 13.42, "text": "the good natured audience in pity to fallen majesty showed for once greater deference to the king than to the minister and sung the psalm which the former had called for"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0009.wav", "duration": 4.805, "text": "the parliament and the scots laid their proposals before the king"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0010.wav", "duration": 14.6, "text": "before the settlement of terms the administration must be possessed entirely by the parliaments of both kingdoms and how incompatible that scheme with the liberty of the king is easily imagined"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0011.wav", "duration": 22.36, "text": "the english it is evident had they not been previously assured of receiving the king would never have parted with so considerable a sum and while they weakened themselves by the same measure have strengthened a people with whom they must afterwards have so material an interest to discuss"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0012.wav", "duration": 18.73, "text": "if any still retained rancor against him in his present condition they passed in silence while his well wishers more generous than prudent accompanied his march with tears with acclamations and with prayers for his safety"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/8224/274384/8224-274384-0013.wav", "duration": 5.44, "text": "his death in this conjuncture was a public misfortune"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0000.wav", "duration": 4.905, "text": "he began a confused complaint against the wizard who had vanished behind the curtain on the left"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0001.wav", "duration": 3.61, "text": "give not so earnest a mind to these mummeries child"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0002.wav", "duration": 2.97, "text": "a golden fortune and a happy life"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0003.wav", "duration": 4.315, "text": "he was like unto my father in a way and yet was not my father"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0004.wav", "duration": 3.885, "text": "also there was a stripling page who turned into a maid"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0005.wav", "duration": 5.07, "text": "this was so sweet a lady sir and in some manner i do think she died"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0006.wav", "duration": 2.935, "text": "but then the picture was gone as quickly as it came"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0007.wav", "duration": 3.55, "text": "sister nell do you hear these marvels"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0008.wav", "duration": 3.535, "text": "take your place and let us see what the crystal can show to you"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0009.wav", "duration": 4.51, "text": "like as not young master though i am an old man"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0010.wav", "duration": 8.295, "text": "forthwith all ran to the opening of the tent to see what might be amiss but master will who peeped out first needed no more than one glance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0011.wav", "duration": 6.375, "text": "he gave way to the others very readily and retreated unperceived by the squire and mistress fitzooth to the rear of the tent"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0012.wav", "duration": 2.61, "text": "cries of a nottingham a nottingham"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0013.wav", "duration": 4.45, "text": "before them fled the stroller and his three sons capless and terrified"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0014.wav", "duration": 7.485, "text": "what is the tumult and rioting cried out the squire authoritatively and he blew twice on a silver whistle which hung at his belt"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0015.wav", "duration": 5.375, "text": "nay we refused their request most politely most noble said the little stroller"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0016.wav", "duration": 3.72, "text": "and then they became vexed and would have snatched your purse from us"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0017.wav", "duration": 5.11, "text": "i could not see my boy injured excellence for but doing his duty as one of cumberland's sons"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0018.wav", "duration": 2.405, "text": "so i did push this fellow"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0019.wav", "duration": 5.475, "text": "it is enough said george gamewell sharply and he turned upon the crowd"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0020.wav", "duration": 5.105, "text": "shame on you citizens cried he i blush for my fellows of nottingham"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0021.wav", "duration": 2.69, "text": "surely we can submit with good grace"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0022.wav", "duration": 4.67, "text": "tis fine for you to talk old man answered the lean sullen apprentice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0023.wav", "duration": 5.025, "text": "but i wrestled with this fellow and do know that he played unfairly in the second bout"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0024.wav", "duration": 6.025, "text": "spoke the squire losing all patience and it was to you that i gave another purse in consolation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0025.wav", "duration": 4.41, "text": "come to me men here here he raised his voice still louder"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0026.wav", "duration": 4.92, "text": "the strollers took their part in it with hearty zest now that they had some chance of beating off their foes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0027.wav", "duration": 6.87, "text": "robin and the little tumbler between them tried to force the squire to stand back and very valiantly did these two comport themselves"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0028.wav", "duration": 5.355, "text": "the head and chief of the riot the nottingham apprentice with clenched fists threatened montfichet"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0029.wav", "duration": 3.495, "text": "the squire helped to thrust them all in and entered swiftly himself"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0030.wav", "duration": 5.685, "text": "now be silent on your lives he began but the captured apprentice set up an instant shout"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0031.wav", "duration": 2.925, "text": "silence you knave cried montfichet"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0032.wav", "duration": 4.28, "text": "he felt for and found the wizard's black cloth the squire was quite out of breath"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0033.wav", "duration": 5.685, "text": "thrusting open the proper entrance of the tent robin suddenly rushed forth with his burden with a great shout"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0034.wav", "duration": 4.23, "text": "a montfichet a montfichet gamewell to the rescue"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0035.wav", "duration": 7.95, "text": "taking advantage of this the squire's few men redoubled their efforts and encouraged by robin's and the little stroller's cries fought their way to him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0036.wav", "duration": 2.9349375, "text": "george montfichet will never forget this day"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0037.wav", "duration": 4.315, "text": "what is your name lording asked the little stroller presently"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0038.wav", "duration": 18.45, "text": "robin fitzooth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0039.wav", "duration": 3.805, "text": "and mine is will stuteley shall we be comrades"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0040.wav", "duration": 3.95, "text": "right willingly for between us we have won the battle answered robin"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0041.wav", "duration": 6.825, "text": "i like you will you are the second will that i have met and liked within two days is there a sign in that"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0042.wav", "duration": 2.785, "text": "montfichet called out for robin to give him an arm"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0043.wav", "duration": 6.735, "text": "friends said montfichet faintly to the wrestlers bear us escort so far as the sheriff's house"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0044.wav", "duration": 2.77, "text": "it will not be safe for you to stay here now"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0045.wav", "duration": 3.475, "text": "pray follow us with mine and my lord sheriff's men"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0046.wav", "duration": 3.55, "text": "nottingham castle was reached and admittance was demanded"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0047.wav", "duration": 4.775, "text": "master monceux the sheriff of nottingham was mightily put about when told of the rioting"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0048.wav", "duration": 3.02, "text": "and henry might return to england at any moment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0049.wav", "duration": 8.25, "text": "have your will child if the boy also wills it montfichet answered feeling too ill to oppose anything very strongly just then"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0050.wav", "duration": 5.58, "text": "he made an effort to hide his condition from them all and robin felt his fingers tighten upon his arm"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0051.wav", "duration": 3.135, "text": "beg me a room of the sheriff child quickly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0052.wav", "duration": 2.65, "text": "but who is this fellow plucking at your sleeve"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0053.wav", "duration": 4.22, "text": "he is my esquire excellency returned robin with dignity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0054.wav", "duration": 7.86, "text": "mistress fitzooth had been carried off by the sheriff's daughter and her maids as soon as they had entered the house so that robin alone had the care of montfichet"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0055.wav", "duration": 3.965, "text": "robin was glad when at length they were left to their own devices"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0056.wav", "duration": 3.565, "text": "the wine did certainly bring back the color to the squire's cheeks"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0057.wav", "duration": 5.065, "text": "these escapades are not for old gamewell lad his day has come to twilight"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0058.wav", "duration": 14.56, "text": "will you forgive me now"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0059.wav", "duration": 19.53, "text": "it will be no disappointment to me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0060.wav", "duration": 3.735, "text": "no thanks i am glad to give you such easy happiness"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0061.wav", "duration": 5.53, "text": "you are a worthy leech will presently whispered robin the wine has worked a marvel"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70968/61-70968-0062.wav", "duration": 2.555, "text": "ay and show you some pretty tricks"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0000.wav", "duration": 6.075, "text": "young fitzooth had been commanded to his mother's chamber so soon as he had come out from his converse with the squire"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0001.wav", "duration": 6.155, "text": "there befell an anxious interview mistress fitzooth arguing for and against the squire's project in a breath"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0002.wav", "duration": 4.165, "text": "most of all robin thought of his father what would he counsel"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0003.wav", "duration": 3.835, "text": "if for a whim you beggar yourself i cannot stay you"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0004.wav", "duration": 10.515, "text": "but take it whilst i live and wear montfichet's shield in the days when my eyes can be rejoiced by so brave a sight for you will ne'er disgrace our scutcheon i warrant me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0005.wav", "duration": 16.16, "text": "the lad had checked him then"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0006.wav", "duration": 2.335, "text": "never that sir he had said"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0007.wav", "duration": 4.485, "text": "he was in deep converse with the clerk and entered the hall holding him by the arm"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0008.wav", "duration": 19.35, "text": "now to bed boy"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0009.wav", "duration": 3.405, "text": "tis late and i go myself within a short space"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0010.wav", "duration": 3.045, "text": "dismiss your squire robin and bid me good e e n"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0011.wav", "duration": 6.075, "text": "as any in england i would say said gamewell proudly that is in his day"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0012.wav", "duration": 3.135, "text": "yet he will teach you a few tricks when morning is come"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0013.wav", "duration": 4.35, "text": "there was no chance to alter his sleeping room to one nearer to gamewell's chamber"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0014.wav", "duration": 3.405, "text": "presently he crossed the floor of his room with decided step"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0015.wav", "duration": 8.415, "text": "will cried he softly and stuteley who had chosen his couch across the door of his young master's chamber sprang up at once in answer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0016.wav", "duration": 4.37, "text": "we will go out together to the bower there is a way down to the court from my window"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0017.wav", "duration": 2.55, "text": "rest and be still until i warn you"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0018.wav", "duration": 4.6, "text": "the hours passed wearily by and movement could yet be heard about the hall"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0019.wav", "duration": 3.78, "text": "at last all was quiet and black in the courtyard of gamewell"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0020.wav", "duration": 5.025, "text": "will whispered robin opening his door as he spoke are you ready"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0021.wav", "duration": 5.405, "text": "they then renewed their journey and under the better light made a safe crossing of the stable roofs"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0022.wav", "duration": 3.97, "text": "robin entered the hut dragging the unwilling esquire after him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0023.wav", "duration": 3.705, "text": "be not so foolish friend said fitzooth crossly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0024.wav", "duration": 7.235, "text": "they moved thereafter cautiously about the hut groping before and about them to find something to show that warrenton had fulfilled his mission"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0025.wav", "duration": 7.435, "text": "they were upon the verge of an open trap in the far corner of the hut and stuteley had tripped over the edge of the reversed flap mouth of this pit"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0026.wav", "duration": 5.475, "text": "fitzooth's hand rested at last upon the top rung of a ladder and slowly the truth came to him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0027.wav", "duration": 5.08, "text": "robin carefully descended the ladder and found himself soon upon firm rocky ground"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0028.wav", "duration": 6.55, "text": "stuteley was by his side in a flash and then they both began feeling about them to ascertain the shape and character of this vault"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0029.wav", "duration": 4.03, "text": "from the blackness behind the light they heard a voice warrenton's"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0030.wav", "duration": 3.24, "text": "save me masters but you startled me rarely"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0031.wav", "duration": 5.135, "text": "cried he waving the lanthorn before him to make sure that these were no ghosts in front of him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0032.wav", "duration": 3.135, "text": "enquired robin with his suspicions still upon him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0033.wav", "duration": 3.42, "text": "truly such a horse should be worth much in nottingham fair"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0034.wav", "duration": 4.485, "text": "nay nay lording answered warrenton with a half laugh"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0035.wav", "duration": 7.405, "text": "warrenton spoke thus with significance to show robin that he was not to think geoffrey's claims to the estate would be passed by"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0036.wav", "duration": 6.785, "text": "robin fitzooth saw that his doubts of warrenton had been unfair and he became ashamed of himself for harboring them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0037.wav", "duration": 5.98, "text": "his tones rang pleasantly on warrenton's ears and forthwith a good fellowship was heralded between them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0038.wav", "duration": 10.4, "text": "the old servant told him quietly as they crept back to gamewell that this passage way led from the hut in the pleasance to sherwood and that geoffrey for the time was hiding with the outlaws in the forest"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0039.wav", "duration": 6.665, "text": "he implores us to be discreet as the grave in this matter for in sooth his life is in the hollow of our hands"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/61/70970/61-70970-0040.wav", "duration": 4.165, "text": "they regained their apartment apparently without disturbing the household of gamewell"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0000.wav", "duration": 12.62, "text": "to fade away like morning beauty from her mortal day down by the river of adona her soft voice is heard and thus her gentle lamentation falls like morning dew"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0001.wav", "duration": 2.885, "text": "o life of this our spring"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0002.wav", "duration": 2.755, "text": "why fades the lotus of the water"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0003.wav", "duration": 3.08, "text": "why fade these children of the spring"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0004.wav", "duration": 13.99, "text": "thel is like a watry bow and like a parting cloud like a reflection in a glass like shadows in the water like dreams of infants like a smile upon an infants face"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0005.wav", "duration": 7.035, "text": "like the doves voice like transient day like music in the air ah"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0006.wav", "duration": 8.11, "text": "and gentle sleep the sleep of death and gently hear the voice of him that walketh in the garden in the evening time"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0007.wav", "duration": 32.77, "text": "the lilly of the valley breathing in the humble grass answerd the lovely maid and said i am a watry weed and i am very small and love to dwell in lowly vales so weak the gilded butterfly scarce perches on my head yet i am visited from heaven and he that smiles on all walks in the valley and each morn over me spreads his hand saying rejoice thou humble grass thou new born lily flower"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0008.wav", "duration": 19.95, "text": "thou gentle maid of silent valleys and of modest brooks for thou shall be clothed in light and fed with morning manna till summers heat melts thee beside the fountains and the springs to flourish in eternal vales they why should thel complain"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0009.wav", "duration": 4.06, "text": "why should the mistress of the vales of har utter a sigh"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0010.wav", "duration": 6.28, "text": "she ceasd and smild in tears then sat down in her silver shrine"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0011.wav", "duration": 10.395, "text": "which thou dost scatter on every little blade of grass that springs revives the milked cow and tames the fire breathing steed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0012.wav", "duration": 10.09, "text": "but thel is like a faint cloud kindled at the rising sun i vanish from my pearly throne and who shall find my place"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0013.wav", "duration": 4.315, "text": "and why it scatters its bright beauty thro the humid air"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0014.wav", "duration": 4.52, "text": "descend o little cloud and hover before the eyes of thel"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0015.wav", "duration": 14.465, "text": "o little cloud the virgin said i charge thee to tell me why thou complainest now when in one hour thou fade away then we shall seek thee but not find ah thel is like to thee"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0016.wav", "duration": 5.105, "text": "i pass away yet i complain and no one hears my voice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0017.wav", "duration": 4.95, "text": "the cloud then shewd his golden head and his bright form emerg'd"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0018.wav", "duration": 4.255, "text": "and fearest thou because i vanish and am seen no more"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0019.wav", "duration": 21.44, "text": "it is to tenfold life to love to peace and raptures holy unseen descending weigh my light wings upon balmy flowers and court the fair eyed dew to take me to her shining tent the weeping virgin trembling kneels before the risen sun"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0020.wav", "duration": 9.8, "text": "till we arise link'd in a golden band and never part but walk united bearing food to all our tender flowers"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0021.wav", "duration": 10.24, "text": "lives not alone nor or itself fear not and i will call the weak worm from its lowly bed and thou shalt hear its voice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0022.wav", "duration": 4.61, "text": "come forth worm and the silent valley to thy pensive queen"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0023.wav", "duration": 9.625, "text": "the helpless worm arose and sat upon the lillys leaf and the bright cloud saild on to find his partner in the vale"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0024.wav", "duration": 3.44, "text": "image of weakness art thou but a worm"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0025.wav", "duration": 9.265, "text": "i see they lay helpless and naked weeping and none to answer none to cherish thee with mothers smiles"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0026.wav", "duration": 8.1, "text": "and says thou mother of my children i have loved thee and i have given thee a crown that none can take away"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0027.wav", "duration": 5.225, "text": "and lay me down in thy cold bed and leave my shining lot"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0028.wav", "duration": 4.955, "text": "or an eye of gifts and graces showring fruits and coined gold"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0029.wav", "duration": 3.63, "text": "why a tongue impress'd with honey from every wind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/157963/908-157963-0030.wav", "duration": 4.52, "text": "why an ear a whirlpool fierce to draw creations in"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0000.wav", "duration": 19.125, "text": "all is said without a word"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0001.wav", "duration": 11.315, "text": "i sit beneath thy looks as children do in the noon sun with souls that tremble through their happy eyelids from an unaverred yet prodigal inward joy"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0002.wav", "duration": 4.79, "text": "i did not wrong myself so but i placed a wrong on thee"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0003.wav", "duration": 6.565, "text": "when called before i told how hastily i dropped my flowers or brake off from a game"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0004.wav", "duration": 14.755, "text": "shall i never miss home talk and blessing and the common kiss that comes to each in turn nor count it strange when i look up to drop on a new range of walls and floors another home than this"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0005.wav", "duration": 4.49, "text": "alas i have grieved so i am hard to love"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0006.wav", "duration": 5.89, "text": "open thy heart wide and fold within the wet wings of thy dove"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0007.wav", "duration": 5.8, "text": "could it mean to last a love set pendulous between sorrow and sorrow"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0008.wav", "duration": 10.005, "text": "nay i rather thrilled distrusting every light that seemed to gild the onward path and feared to overlean a finger even"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0009.wav", "duration": 7.705, "text": "and though i have grown serene and strong since then i think that god has willed a still renewable fear"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0010.wav", "duration": 2.51, "text": "o love o troth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0011.wav", "duration": 2.335, "text": "and love be false"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0012.wav", "duration": 7.615, "text": "if he to keep one oath must lose one joy by his life's star foretold"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0013.wav", "duration": 6.18, "text": "slow to world greetings quick with its o list when the angels speak"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0014.wav", "duration": 7.56, "text": "a ring of amethyst i could not wear here plainer to my sight than that first kiss"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0015.wav", "duration": 21.465, "text": "that was the chrism of love which love's own crown with sanctifying sweetness did precede the third upon my lips was folded down in perfect purple state since when indeed i have been proud and said my love my own"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0016.wav", "duration": 6.48, "text": "dearest teach me so to pour out gratitude as thou dost good"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0017.wav", "duration": 7.795, "text": "mussulmans and giaours throw kerchiefs at a smile and have no ruth for any weeping"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0018.wav", "duration": 3.915, "text": "but thou art not such a lover my beloved"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0019.wav", "duration": 9.54, "text": "thou canst wait through sorrow and sickness to bring souls to touch and think it soon when others cry too late"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0020.wav", "duration": 5.895, "text": "i thank all who have loved me in their hearts with thanks and love from mine"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0021.wav", "duration": 10.905, "text": "oh to shoot my soul's full meaning into future years that they should lend it utterance and salute love that endures from life that disappears"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0022.wav", "duration": 14.1, "text": "then i long tried by natural ills received the comfort fast while budding at thy sight my pilgrim's staff gave out green leaves with morning dews impearled"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0023.wav", "duration": 8.515, "text": "i love thee freely as men strive for right i love thee purely as they turn from praise"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0024.wav", "duration": 7.54, "text": "i love thee with the passion put to use in my old griefs and with my childhood's faith"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/908/31957/908-31957-0025.wav", "duration": 20.56, "text": "i love thee with a love i seemed to lose with my lost saints i love thee with the breath smiles tears of all my life and if god choose i shall but love thee better after death"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79759/7021-79759-0000.wav", "duration": 4.775, "text": "nature of the effect produced by early impressions"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79759/7021-79759-0001.wav", "duration": 2.48, "text": "that is comparatively nothing"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79759/7021-79759-0002.wav", "duration": 5.25, "text": "they are chiefly formed from combinations of the impressions made in childhood"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79759/7021-79759-0003.wav", "duration": 4.62, "text": "vast importance and influence of this mental furnishing"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79759/7021-79759-0004.wav", "duration": 24.47, "text": "without going to any such extreme as this we can easily see on reflection how vast an influence on the ideas and conceptions as well as on the principles of action in mature years must be exerted by the nature and character of the images which the period of infancy and childhood impresses upon the mind"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79759/7021-79759-0005.wav", "duration": 13.02, "text": "the pain produced by an act of hasty and angry violence to which a father subjects his son may soon pass away but the memory of it does not pass away with the pain"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0000.wav", "duration": 3.02, "text": "but anders cared nothing about that"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0001.wav", "duration": 11.33, "text": "he made a bow so deep that his back came near breaking and he was dumbfounded i can tell you when he saw it was nobody but anders"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0002.wav", "duration": 6.455, "text": "he was such a big boy that he wore high boots and carried a jack knife"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0003.wav", "duration": 15.29, "text": "now this knife was a splendid one though half the blade was gone and the handle was a little cracked and anders knew that one is almost a man as soon as one has a jack knife"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0004.wav", "duration": 2.805, "text": "yes why not thought anders"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0005.wav", "duration": 5.015, "text": "seeing that i am so fine i may as well go and visit the king"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0006.wav", "duration": 3.58, "text": "i am going to the court ball answered anders"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0007.wav", "duration": 16.675, "text": "and she took anders hand and walked with him up the broad marble stairs where soldiers were posted at every third step and through the magnificent halls where courtiers in silk and velvet stood bowing wherever he went"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0008.wav", "duration": 7.125, "text": "for like as not they must have thought him a prince when they saw his fine cap"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0009.wav", "duration": 8.54, "text": "at the farther end of the largest hall a table was set with golden cups and golden plates in long rows"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0010.wav", "duration": 8.015, "text": "on huge silver platters were pyramids of tarts and cakes and red wine sparkled in glittering decanters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0011.wav", "duration": 8.995, "text": "the princess sat down under a blue canopy with bouquets of roses and she let anders sit in a golden chair by her side"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0012.wav", "duration": 5.33, "text": "but you must not eat with your cap on your head she said and was going to take it off"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0013.wav", "duration": 12.13, "text": "the princess certainly was beautiful and he would have dearly liked to be kissed by her but the cap which his mother had made he would not give up on any condition"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0014.wav", "duration": 20.655, "text": "he only shook his head"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0015.wav", "duration": 11.545, "text": "well but now said the princess and she filled his pockets with cakes and put her own heavy gold chain around his neck and bent down and kissed him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0016.wav", "duration": 4.28, "text": "that is a very fine cap you have he said"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0017.wav", "duration": 19.395, "text": "so it is said anders"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0018.wav", "duration": 8.22, "text": "and it is made of mother's best yarn and she knitted it herself and everybody wants to get it away from me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0019.wav", "duration": 3.255, "text": "with one jump anders got out of his chair"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0020.wav", "duration": 6.45, "text": "he darted like an arrow through all the halls down all the stairs and across the yard"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0021.wav", "duration": 5.365, "text": "he still held on to it with both hands as he rushed into his mother's cottage"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0022.wav", "duration": 5.145, "text": "and all his brothers and sisters stood round and listened with their mouths open"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0023.wav", "duration": 9.03, "text": "but when his big brother heard that he had refused to give his cap for a king's golden crown he said that anders was a stupid"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0024.wav", "duration": 19.485, "text": "anders face grew red"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0025.wav", "duration": 2.775, "text": "but his mother hugged him close"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0026.wav", "duration": 2.74, "text": "no my little son she said"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/85628/7021-85628-0027.wav", "duration": 8.5, "text": "if you dressed in silk and gold from top to toe you could not look any nicer than in your little red cap"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0000.wav", "duration": 11.125, "text": "to such persons these indirect modes of training children in habits of subordination to their will or rather of yielding to their influence are specially useful"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0001.wav", "duration": 5.995, "text": "della had a young sister named maria and a cousin whose name was jane"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0002.wav", "duration": 9.225, "text": "now delia contrived to obtain a great influence and ascendency over the minds of the children by means of these dolls"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0003.wav", "duration": 4.985, "text": "to give an idea of these conversations i will report one of them in full"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0004.wav", "duration": 6.465, "text": "you have come andella andella was the name of jane's doll to make rosalie a visit"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0005.wav", "duration": 18.99, "text": "i am very glad"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0006.wav", "duration": 5.965, "text": "i expect you have been a very good girl andella since you were here last"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0007.wav", "duration": 6.99, "text": "then turning to jane she asked in a somewhat altered tone has she been a good girl jane"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0008.wav", "duration": 18.415, "text": "for instance one day the children had been playing upon the piazza with blocks and other playthings and finally had gone into the house leaving all the things on the floor of the piazza instead of putting them away in their places as they ought to have done"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0009.wav", "duration": 3.635, "text": "they were now playing with their dolls in the parlor"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0010.wav", "duration": 12.025, "text": "delia came to the parlor and with an air of great mystery beckoned the children aside and said to them in a whisper leave andella and rosalie here and don't say a word to them"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0011.wav", "duration": 10.315, "text": "so saying she led the way on tiptoe followed by the children out of the room and round by a circuitous route to the piazza there"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0012.wav", "duration": 3.26, "text": "said she pointing to the playthings see"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0013.wav", "duration": 7.365, "text": "put these playthings all away quick and carefully and we will not let them know any thing about your leaving them out"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79740/7021-79740-0014.wav", "duration": 14.175, "text": "and this method of treating the case was much more effectual in making them disposed to avoid committing a similar fault another time than any direct rebukes or expressions of displeasure addressed personally to them would have been"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0000.wav", "duration": 2.44, "text": "the three modes of management"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0001.wav", "duration": 11.49, "text": "to suppose that the object of this work is to aid in effecting such a substitution as that is entirely to mistake its nature and design"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0002.wav", "duration": 2.69, "text": "by reason and affection"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0003.wav", "duration": 32.88, "text": "as the chaise drives away mary stands bewildered and perplexed on the door step her mind in a tumult of excitement in which hatred of the doctor distrust and suspicion of her mother disappointment vexation and ill humor surge and swell among those delicate organizations on which the structure and development of the soul so closely depend doing perhaps an irreparable injury"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0004.wav", "duration": 17.945, "text": "the mother as soon as the chaise is so far turned that mary can no longer watch the expression of her countenance goes away from the door with a smile of complacency and satisfaction upon her face at the ingenuity and success of her little artifice"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0005.wav", "duration": 8.01, "text": "so you will be a good girl i know and not make any trouble but will stay at home contentedly won't you"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0006.wav", "duration": 11.34, "text": "the mother in managing the case in this way relies partly on convincing the reason of the child and partly on an appeal to her affection"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0007.wav", "duration": 12.455, "text": "if you should not be a good girl but should show signs of making us any trouble i shall have to send you out somewhere to the back part of the house until we are gone"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0008.wav", "duration": 11.765, "text": "but this last supposition is almost always unnecessary for if mary has been habitually managed on this principle she will not make any trouble"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7021/79730/7021-79730-0009.wav", "duration": 12.585, "text": "it is indeed true that the importance of tact and skill in the training of the young and of cultivating their reason and securing their affection can not be overrated"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0000.wav", "duration": 10.725, "text": "you will find me continually speaking of four men titian holbein turner and tintoret in almost the same terms"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0001.wav", "duration": 9.04, "text": "they unite every quality and sometimes you will find me referring to them as colorists sometimes as chiaroscurists"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0002.wav", "duration": 17.96, "text": "by being studious of color they are studious of division and while the chiaroscurist devotes himself to the representation of degrees of force in one thing unseparated light the colorists have for their function the attainment of beauty by arrangement of the divisions of light"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0003.wav", "duration": 12.61, "text": "my first and principal reason was that they enforced beyond all resistance on any student who might attempt to copy them this method of laying portions of distinct hue side by side"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0004.wav", "duration": 10.65, "text": "some of the touches indeed when the tint has been mixed with much water have been laid in little drops or ponds so that the pigment might crystallize hard at the edge"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0005.wav", "duration": 8.56, "text": "it is the head of a parrot with a little flower in his beak from a picture of carpaccio's one of his series of the life of saint george"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0006.wav", "duration": 2.4, "text": "then he comes to the beak of it"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0007.wav", "duration": 14.24, "text": "the brown ground beneath is left for the most part one touch of black is put for the hollow two delicate lines of dark gray define the outer curve and one little quivering touch of white draws the inner edge of the mandible"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0008.wav", "duration": 20.755, "text": "for believe me the final philosophy of art can only ratify their opinion that the beauty of a cock robin is to be red and of a grass plot to be green and the best skill of art is in instantly seizing on the manifold deliciousness of light which you can only seize by precision of instantaneous touch"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0009.wav", "duration": 23.06, "text": "now you will see in these studies that the moment the white is inclosed properly and harmonized with the other hues it becomes somehow more precious and pearly than the white paper and that i am not afraid to leave a whole field of untreated white paper all round it being sure that even the little diamonds in the round window will tell as jewels if they are gradated justly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0010.wav", "duration": 6.095, "text": "but in this vignette copied from turner you have the two principles brought out perfectly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0011.wav", "duration": 15.19, "text": "they are beyond all other works that i know existing dependent for their effect on low subdued tones their favorite choice in time of day being either dawn or twilight and even their brightest sunsets produced chiefly out of gray paper"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0012.wav", "duration": 14.65, "text": "it may be that a great colorist will use his utmost force of color as a singer his full power of voice but loud or low the virtue is in both cases always in refinement never in loudness"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0013.wav", "duration": 3.02, "text": "it must remember be one or the other"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0014.wav", "duration": 4.39, "text": "do not therefore think that the gothic school is an easy one"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0015.wav", "duration": 16.085, "text": "the law of that school is that everything shall be seen clearly or at least only in such mist or faintness as shall be delightful and i have no doubt that the best introduction to it would be the elementary practice of painting every study on a golden ground"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0016.wav", "duration": 16.595, "text": "this at once compels you to understand that the work is to be imaginative and decorative that it represents beautiful things in the clearest way but not under existing conditions and that in fact you are producing jeweler's work rather than pictures"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0017.wav", "duration": 4.615, "text": "that a style is restrained or severe does not mean that it is also erroneous"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0018.wav", "duration": 11.5499375, "text": "in all early gothic art indeed you will find failure of this kind especially distortion and rigidity which are in many respects painfully to be compared with the splendid repose of classic art"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0019.wav", "duration": 13.93, "text": "the large letter contains indeed entirely feeble and ill drawn figures that is merely childish and failing work of an inferior hand it is not characteristic of gothic or any other school"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0020.wav", "duration": 10.26, "text": "but observe you can only do this on one condition that of striving also to create in reality the beauty which you seek in imagination"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0021.wav", "duration": 14.02, "text": "it will be wholly impossible for you to retain the tranquillity of temper and felicity of faith necessary for noble purist painting unless you are actively engaged in promoting the felicity and peace of practical life"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0022.wav", "duration": 9.63, "text": "you must look at him in the face fight him conquer him with what scathe you may you need not think to keep out of the way of him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0023.wav", "duration": 23.67, "text": "the colorist says first of all as my delicious paroquet was ruby so this nasty viper shall be black and then is the question can i round him off even though he is black and make him slimy and yet springy and close down clotted like a pool of black blood on the earth all the same"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0024.wav", "duration": 15.24, "text": "nothing will be more precious to you i think in the practical study of art than the conviction which will force itself on you more and more every hour of the way all things are bound together little and great in spirit and in matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0025.wav", "duration": 7.45, "text": "you know i have just been telling you how this school of materialism and clay involved itself at last in cloud and fire"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0026.wav", "duration": 20.125, "text": "here is an equally typical greek school landscape by wilson lost wholly in golden mist the trees so slightly drawn that you don't know if they are trees or towers and no care for color whatever perfectly deceptive and marvelous effect of sunshine through the mist apollo and the python"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0027.wav", "duration": 11.245, "text": "now here is raphael exactly between the two trees still drawn leaf by leaf wholly formal but beautiful mist coming gradually into the distance"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0028.wav", "duration": 19.005, "text": "well then last here is turner's greek school of the highest class and you define his art absolutely as first the displaying intensely and with the sternest intellect of natural form as it is and then the envelopment of it with cloud and fire"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0029.wav", "duration": 3.705, "text": "only there are two sorts of cloud and fire"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0030.wav", "duration": 15.32, "text": "he knows them both"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0031.wav", "duration": 4.25, "text": "there's one and there's another the dudley and the flint"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0032.wav", "duration": 10.985, "text": "it is only a pencil outline by edward burne jones in illustration of the story of psyche it is the introduction of psyche after all her troubles into heaven"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0033.wav", "duration": 6.625, "text": "every plant in the grass is set formally grows perfectly and may be realized completely"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0034.wav", "duration": 20.905, "text": "exquisite order and universal with eternal life and light this is the faith and effort of the schools of crystal and you may describe and complete their work quite literally by taking any verses of chaucer in his tender mood and observing how he insists on the clearness and brightness first and then on the order"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0035.wav", "duration": 2.925, "text": "thus in chaucer's dream"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0036.wav", "duration": 7.97, "text": "in both these high mythical subjects the surrounding nature though suffering is still dignified and beautiful"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0037.wav", "duration": 14.51, "text": "every line in which the master traces it even where seemingly negligent is lovely and set down with a meditative calmness which makes these two etchings capable of being placed beside the most tranquil work of holbein or duerer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0038.wav", "duration": 5.365, "text": "but now here is a subject of which you will wonder at first why turner drew it at all"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0039.wav", "duration": 6.625, "text": "it has no beauty whatsoever no specialty of picturesqueness and all its lines are cramped and poor"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0040.wav", "duration": 3.23, "text": "the crampness and the poverty are all intended"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0041.wav", "duration": 10.07, "text": "it is a gleaner bringing down her one sheaf of corn to an old watermill itself mossy and rent scarcely able to get its stones to turn"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0042.wav", "duration": 2.66, "text": "the scene is absolutely arcadian"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0043.wav", "duration": 4.885, "text": "see that your lives be in nothing worse than a boy's climbing for his entangled kite"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/1188/133604/1188-133604-0044.wav", "duration": 18.545, "text": "it will be well for you if you join not with those who instead of kites fly falcons who instead of obeying the last words of the great cloud shepherd to feed his sheep live the lives how much less than vanity of the war wolf and the gier eagle"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0000.wav", "duration": 9.56, "text": "on the sixth of april eighteen thirty the church of jesus christ of latter day saints was formally organized and thus took on a legal existence"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0001.wav", "duration": 8.745, "text": "its origin was small a germ an insignificant seed hardly to be thought of as likely to arouse opposition"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0002.wav", "duration": 9.75, "text": "instead of but six regularly affiliated members and at most two score of adherents the organization numbers today many hundred thousand souls"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0003.wav", "duration": 16.72, "text": "in place of a single hamlet in the smallest corner of which the members could have congregated there now are about seventy stakes of zion and about seven hundred organized wards each ward and stake with its full complement of officers and priesthood organizations"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0004.wav", "duration": 16.68, "text": "the practise of gathering its proselytes into one place prevents the building up and strengthening of foreign branches and inasmuch as extensive and strong organizations are seldom met with abroad very erroneous ideas exist concerning the strength of the church"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0005.wav", "duration": 19.61, "text": "nevertheless the mustard seed among the smallest of all seeds has attained the proportions of a tree and the birds of the air are nesting in its branches the acorn is now an oak offering protection and the sweets of satisfaction to every earnest pilgrim journeying its way for truth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0006.wav", "duration": 13.065, "text": "their eyes were from the first turned in anticipation toward the evening sun not merely that the work of proselyting should be carried on in the west but that the headquarters of the church should be there established"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0007.wav", "duration": 17.22, "text": "the book of mormon had taught the people the true origin and destiny of the american indians and toward this dark skinned remnant of a once mighty people the missionaries of mormonism early turned their eyes and with their eyes went their hearts and their hopes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0008.wav", "duration": 10.555, "text": "it is notable that the indian tribes have generally regarded the religion of the latter day saints with favor seeing in the book of mormon striking agreement with their own traditions"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0009.wav", "duration": 12.15, "text": "the first well established seat of the church was in the pretty little town of kirtland ohio almost within sight of lake erie and here soon rose the first temple of modern times"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0010.wav", "duration": 6.72, "text": "to the fervent latter day saint a temple is not simply a church building a house for religious assembly"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0011.wav", "duration": 11.425, "text": "soon thousands of converts had rented or purchased homes in missouri independence jackson county being their center but from the first they were unpopular among the missourians"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0012.wav", "duration": 12.015, "text": "the lieutenant governor lilburn w boggs afterward governor was a pronounced mormon hater and throughout the period of the troubles he manifested sympathy with the persecutors"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0013.wav", "duration": 4.315, "text": "their sufferings have never yet been fitly chronicled by human scribe"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0014.wav", "duration": 12.61, "text": "making their way across the river most of the refugees found shelter among the more hospitable people of clay county and afterward established themselves in caldwell county therein founding the city of far west"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0015.wav", "duration": 13.475, "text": "a small settlement had been founded by mormon families on shoal creek and here on the thirtieth of october eighteen thirty eight a company of two hundred and forty fell upon the hapless settlers and butchered a score"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0016.wav", "duration": 14.515, "text": "be it said to the honor of some of the officers entrusted with the terrible commission that when they learned its true significance they resigned their authority rather than have anything to do with what they designated a cold blooded butchery"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0017.wav", "duration": 5.095, "text": "oh what a record to read what a picture to gaze upon how awful the fact"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0018.wav", "duration": 26.115, "text": "american school boys read with emotions of horror of the albigenses driven beaten and killed with a papal legate directing the butchery and of the vaudois hunted and hounded like beasts as the effect of a royal decree and they yet shall read in the history of their own country of scenes as terrible as these in the exhibition of injustice and inhuman hate"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0019.wav", "duration": 2.92, "text": "who began the quarrel was it the mormons"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0020.wav", "duration": 10.295, "text": "as a sample of the press comments against the brutality of the missourians i quote a paragraph from the quincy argus march sixteenth eighteen thirty nine"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13751/4077-13751-0021.wav", "duration": 19.705, "text": "it will be observed that an organized mob aided by many of the civil and military officers of missouri with governor boggs at their head have been the prominent actors in this business incited too it appears against the mormons by political hatred and by the additional motives of plunder and revenge"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0000.wav", "duration": 4.78, "text": "the army found the people in poverty and left them in comparative wealth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0001.wav", "duration": 3.77, "text": "but a word further concerning the expedition in general"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0002.wav", "duration": 17.78, "text": "it was through floyd's advice that buchanan ordered the military expedition to utah ostensibly to install certain federal officials and to repress an alleged infantile rebellion which in fact had never come into existence but in reality to further the interests of the secessionists"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0003.wav", "duration": 5.68, "text": "moreover had the people been inclined to rebellion what greater opportunity could they have wished"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0004.wav", "duration": 4.985, "text": "already a north and a south were talked of why not set up also a west"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0005.wav", "duration": 17.84, "text": "they knew no north no south no east no west they stood positively by the constitution and would have nothing to do in the bloody strife between brothers unless indeed they were summoned by the authority to which they had already once loyally responded to furnish men and arms for their country's need"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0006.wav", "duration": 12.7499375, "text": "what the latter day saints call celestial marriage is characteristic of the church and is in very general practise but of celestial marriage plurality of wives was an incident never an essential"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0007.wav", "duration": 13.95, "text": "we believe in a literal resurrection and an actual hereafter in which future state shall be recognized every sanctified and authorized relationship existing here on earth of parent and child brother and sister husband and wife"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0008.wav", "duration": 19.91, "text": "it has been my privilege to tread the soil of many lands to observe the customs and study the habits of more nations than one and i have yet to find the place and meet the people where and with whom the purity of man and woman is held more precious than among the maligned mormons in the mountain valleys of the west"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0009.wav", "duration": 7.65, "text": "at the inception of plural marriage among the latter day saints there was no law national or state against its practise"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0010.wav", "duration": 11.955, "text": "in eighteen sixty two a law was enacted with the purpose of suppressing plural marriage and as had been predicted in the national senate prior to its passage it lay for many years a dead letter"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0011.wav", "duration": 14.13, "text": "federal judges and united states attorneys in utah who were not mormons nor lovers of mormonism refused to entertain complaints or prosecute cases under the law because of its manifest injustice and inadequacy"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0012.wav", "duration": 22.095, "text": "this meant that for an alleged misdemeanor for which congress prescribed a maximum penalty of six months imprisonment and a fine of three hundred dollars a man might be imprisoned for life aye for many terms of a man's natural life did the court's power to enforce its sentences extend so far and might be fined millions of dollars"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0013.wav", "duration": 12.87, "text": "before this travesty on the administration of law could be brought before the court of last resort and there meet with the reversal and rebuke it deserved men were imprisoned under sentences of many years duration"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0014.wav", "duration": 10.97, "text": "the people contested these measures one by one in the courts presenting in case after case the different phases of the subject and urging the unconstitutionality of the measure"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0015.wav", "duration": 22.205, "text": "then the church was disincorporated and its property both real and personal confiscated and escheated to the government of the united states and although the personal property was soon restored real estate of great value long lay in the hands of the court's receiver and the mormon church had to pay the national government high rental on its own property"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/4077/13754/4077-13754-0016.wav", "duration": 11.895, "text": "and so the story of mormonism runs on its finale has not yet been written the current press presents continuously new stages of its progress new developments of its plan"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0000.wav", "duration": 8.23, "text": "and often has my mother said while on her lap i laid my head she feared for time i was not made but for eternity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0001.wav", "duration": 2.99, "text": "why are we to be denied each other's society"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0002.wav", "duration": 18.99, "text": "why are we to be divided"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0003.wav", "duration": 7.595, "text": "surely it must be because we are in danger of loving each other too well of losing sight of the creator in idolatry of the creature"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0004.wav", "duration": 3.105, "text": "we used to dispute about politics and religion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0005.wav", "duration": 7.34, "text": "she a tory and clergyman's daughter was always in a minority of one in our house of violent dissent and radicalism"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0006.wav", "duration": 8.3, "text": "her feeble health gave her her yielding manner for she could never oppose any one without gathering up all her strength for the struggle"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0007.wav", "duration": 7.775, "text": "he spoke french perfectly i have been told when need was but delighted usually in talking the broadest yorkshire"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0008.wav", "duration": 13.555, "text": "and so life and death have dispersed the circle of violent radicals and dissenters into which twenty years ago the little quiet resolute clergyman's daughter was received and by whom she was truly loved and honoured"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0009.wav", "duration": 6.73, "text": "january and february of eighteen thirty seven had passed away and still there was no reply from southey"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0010.wav", "duration": 4.79, "text": "i am not depreciating it when i say that in these times it is not rare"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0011.wav", "duration": 7.015, "text": "but it is not with a view to distinction that you should cultivate this talent if you consult your own happiness"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0012.wav", "duration": 5.8500625, "text": "you will say that a woman has no need of such a caution there can be no peril in it for her"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0013.wav", "duration": 9.175, "text": "the more she is engaged in her proper duties the less leisure will she have for it even as an accomplishment and a recreation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0014.wav", "duration": 6.68, "text": "to those duties you have not yet been called and when you are you will be less eager for celebrity"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0015.wav", "duration": 14.425, "text": "but do not suppose that i disparage the gift which you possess nor that i would discourage you from exercising it i only exhort you so to think of it and so to use it as to render it conducive to your own permanent good"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0016.wav", "duration": 11.865, "text": "farewell madam"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0017.wav", "duration": 12.73, "text": "though i may be but an ungracious adviser you will allow me therefore to subscribe myself with the best wishes for your happiness here and hereafter your true friend robert southey"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0018.wav", "duration": 2.92, "text": "sir march sixteenth"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0019.wav", "duration": 6.155, "text": "i had not ventured to hope for such a reply so considerate in its tone so noble in its spirit"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0020.wav", "duration": 8.645, "text": "i know the first letter i wrote to you was all senseless trash from beginning to end but i am not altogether the idle dreaming being it would seem to denote"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0021.wav", "duration": 4.18, "text": "i thought it therefore my duty when i left school to become a governess"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0022.wav", "duration": 5.825, "text": "in the evenings i confess i do think but i never trouble any one else with my thoughts"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0023.wav", "duration": 9.095, "text": "i carefully avoid any appearance of preoccupation and eccentricity which might lead those i live amongst to suspect the nature of my pursuits"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0024.wav", "duration": 12.255, "text": "i don't always succeed for sometimes when i'm teaching or sewing i would rather be reading or writing but i try to deny myself and my father's approbation amply rewarded me for the privation"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0025.wav", "duration": 9.205, "text": "again i thank you this incident i suppose will be renewed no more if i live to be an old woman i shall remember it thirty years hence as a bright dream"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0026.wav", "duration": 16.735, "text": "p s pray sir excuse me for writing to you a second time i could not help writing partly to tell you how thankful i am for your kindness and partly to let you know that your advice shall not be wasted however sorrowfully and reluctantly it may be at first followed c b"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0027.wav", "duration": 4.58, "text": "i cannot deny myself the gratification of inserting southey's reply"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0028.wav", "duration": 5.53, "text": "keswick march twenty second eighteen thirty seven dear madam"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0029.wav", "duration": 6.055, "text": "your letter has given me great pleasure and i should not forgive myself if i did not tell you so"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0030.wav", "duration": 8.9450625, "text": "of this second letter also she spoke and told me that it contained an invitation for her to go and see the poet if ever she visited the lakes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0031.wav", "duration": 4.0, "text": "on august twenty seventh eighteen thirty seven she writes"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0032.wav", "duration": 3.03, "text": "come come i am getting really tired of your absence"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0033.wav", "duration": 8.5, "text": "saturday after saturday comes round and i can have no hope of hearing your knock at the door and then being told that miss e is come oh dear"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0034.wav", "duration": 3.495, "text": "in this monotonous life of mine that was a pleasant event"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0035.wav", "duration": 9.37, "text": "i wish it would recur again but it will take two or three interviews before the stiffness the estrangement of this long separation will wear away"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0036.wav", "duration": 28.27, "text": "my eyes fill with tears when i contrast the bliss of such a state brightened by hopes of the future with the melancholy state i now live in uncertain that i ever felt true contrition wandering in thought and deed longing for holiness which i shall never never obtain smitten at times to the heart with the conviction that ghastly calvinistic doctrines are true darkened in short by the very shadows of spiritual death"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0037.wav", "duration": 14.2, "text": "if christian perfection be necessary to salvation i shall never be saved my heart is a very hotbed for sinful thoughts and when i decide on an action i scarcely remember to look to my redeemer for direction"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0038.wav", "duration": 11.535, "text": "and meantime i know the greatness of jehovah i acknowledge the perfection of his word i adore the purity of the christian faith my theory is right my practice horribly wrong"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0039.wav", "duration": 12.72, "text": "the christmas holidays came and she and anne returned to the parsonage and to that happy home circle in which alone their natures expanded amongst all other people they shrivelled up more or less"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0040.wav", "duration": 6.905, "text": "indeed there were only one or two strangers who could be admitted among the sisters without producing the same result"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0041.wav", "duration": 14.01, "text": "she was gone out into the village on some errand when as she was descending the steep street her foot slipped on the ice and she fell it was dark and no one saw her mischance till after a time her groans attracted the attention of a passer by"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0042.wav", "duration": 12.21, "text": "unfortunately the fracture could not be set till six o'clock the next morning as no surgeon was to be had before that time and she now lies at our house in a very doubtful and dangerous state"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0043.wav", "duration": 19.0, "text": "however remembering what you told me namely that you had commended the matter to a higher decision than ours and that you were resolved to submit with resignation to that decision whatever it might be i hold it my duty to yield also and to be silent it may be all for the best"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0044.wav", "duration": 9.72, "text": "after this disappointment i never dare reckon with certainty on the enjoyment of a pleasure again it seems as if some fatality stood between you and me"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0045.wav", "duration": 6.52, "text": "i am not good enough for you and you must be kept from the contamination of too intimate society"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0046.wav", "duration": 25.64, "text": "a good neighbour of the brontes a clever intelligent yorkshire woman who keeps a druggist's shop in haworth and from her occupation her experience and excellent sense holds the position of village doctress and nurse and as such has been a friend in many a time of trial and sickness and death in the households round told me a characteristic little incident connected with tabby's fractured leg"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0047.wav", "duration": 6.525, "text": "tabby had lived with them for ten or twelve years and was as charlotte expressed it one of the family"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0048.wav", "duration": 5.555, "text": "he refused at first to listen to the careful advice it was repugnant to his liberal nature"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0049.wav", "duration": 2.715, "text": "this decision was communicated to the girls"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0050.wav", "duration": 6.405, "text": "tabby had tended them in their childhood they and none other should tend her in her infirmity and age"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0051.wav", "duration": 4.915, "text": "at tea time they were sad and silent and the meal went away untouched by any of the three"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0052.wav", "duration": 3.0, "text": "she had another weight on her mind this christmas"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0053.wav", "duration": 11.945, "text": "but anne had begun to suffer just before the holidays and charlotte watched over her younger sisters with the jealous vigilance of some wild creature that changes her very nature if danger threatens her young"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0054.wav", "duration": 8.005, "text": "stung by anxiety for this little sister she upbraided miss w for her fancied indifference to anne's state of health"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0055.wav", "duration": 11.85, "text": "still her heart had received a shock in the perception of anne's delicacy and all these holidays she watched over her with the longing fond anxiety which is so full of sudden pangs of fear"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/3575/170457/3575-170457-0056.wav", "duration": 3.3700625, "text": "i doubt whether branwell was maintaining himself at this time"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0000.wav", "duration": 5.455, "text": "fast as his legs could carry him servadac had made his way to the top of the cliff"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0001.wav", "duration": 16.065, "text": "it was quite true that a vessel was in sight hardly more than six miles from the shore but owing to the increase in the earth's convexity and the consequent limitation of the range of vision the rigging of the topmasts alone was visible above the water"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0002.wav", "duration": 4.01, "text": "exclaimed servadac keeping his eye unmoved at his telescope"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0003.wav", "duration": 5.515, "text": "she is under sail but she is count timascheff's yacht he was right"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0004.wav", "duration": 6.015, "text": "if the count were on board a strange fatality was bringing him to the presence of his rival"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0005.wav", "duration": 7.4, "text": "he reckoned therefore not only upon ascertaining the extent of the late catastrophe but upon learning its cause"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0006.wav", "duration": 13.88, "text": "the wind being adverse the dobryna did not make very rapid progress but as the weather in spite of a few clouds remained calm and the sea was quite smooth she was enabled to hold a steady course"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0007.wav", "duration": 4.625, "text": "servadac took it for granted that the dobryna was endeavoring to put in"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0008.wav", "duration": 11.48, "text": "a narrow channel formed a passage through the ridge of rocks that protected it from the open sea and which even in the roughest weather would ensure the calmness of its waters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0009.wav", "duration": 11.65, "text": "slightly changing her course she first struck her mainsail and in order to facilitate the movements of her helmsman soon carried nothing but her two topsails brigantine and jib"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0010.wav", "duration": 2.935, "text": "captain servadac hastened towards him"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0011.wav", "duration": 6.02, "text": "i left you on a continent and here i have the honor of finding you on an island"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0012.wav", "duration": 4.73, "text": "never mind now interposed the captain we will talk of that by and by"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0013.wav", "duration": 2.96, "text": "nothing more than you know yourself"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0014.wav", "duration": 3.07, "text": "are you certain that this is the mediterranean"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0015.wav", "duration": 8.525, "text": "for some moments he seemed perfectly stupefied then recovering himself he began to overwhelm the count with a torrent of questions"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0016.wav", "duration": 4.17, "text": "to all these inquiries the count responded in the affirmative"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0017.wav", "duration": 5.665, "text": "some mysterious force seemed to have brought about a convulsion of the elements"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0018.wav", "duration": 2.885, "text": "you will take me on board count will you not"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0019.wav", "duration": 6.2400625, "text": "my yacht is at your service sir even should you require to make a tour round the world"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0020.wav", "duration": 20.7, "text": "the count shook his head"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0021.wav", "duration": 12.455, "text": "before starting it was indispensable that the engine of the dobryna should be repaired to sail under canvas only would in contrary winds and rough seas be both tedious and difficult"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0022.wav", "duration": 4.725, "text": "it was on the last day of january that the repairs of the schooner were completed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0023.wav", "duration": 17.57, "text": "a slight diminution in the excessively high temperature which had prevailed for the last few weeks was the only apparent change in the general order of things but whether this was to be attributed to any alteration in the earth's orbit was a question which would still require several days to decide"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28240/5105-28240-0024.wav", "duration": 8.2, "text": "doubts now arose and some discussion followed whether or not it was desirable for ben zoof to accompany his master"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0000.wav", "duration": 4.51, "text": "length of service fourteen years three months and five days"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0001.wav", "duration": 4.49, "text": "he seemed born to please without being conscious of the power he possessed"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0002.wav", "duration": 8.285, "text": "it must be owned and no one was more ready to confess it than himself that his literary attainments were by no means of a high order"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0003.wav", "duration": 14.81, "text": "we don't spin tops is a favorite saying amongst artillery officers indicating that they do not shirk their duty by frivolous pursuits but it must be confessed that servadac being naturally idle was very much given to spinning tops"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0004.wav", "duration": 4.735, "text": "once in action he was leading a detachment of infantry through an intrenchment"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0005.wav", "duration": 11.39, "text": "sometimes he would wander on foot upon the sandy shore and sometimes he would enjoy a ride along the summit of the cliff altogether being in no hurry at all to bring his task to an end"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0006.wav", "duration": 5.505, "text": "no cathedral not even burgos itself could vie with the church at montmartre"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0007.wav", "duration": 26.14, "text": "ben zoof's most ambitious desire was to induce the captain to go with him and end his days in his much loved home and so incessantly were servadac's ears besieged with descriptions of the unparalleled beauties and advantages of this eighteenth arrondissement of paris that he could scarcely hear the name of montmartre without a conscious thrill of aversion"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0008.wav", "duration": 10.73, "text": "when a private in the eighth cavalry he had been on the point of quitting the army at twenty eight years of age but unexpectedly he had been appointed orderly to captain servadac"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0009.wav", "duration": 14.595, "text": "the bond of union thus effected could never be severed and although ben zoof's achievements had fairly earned him the right of retirement he firmly declined all honors or any pension that might part him from his superior officer"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28233/5105-28233-0010.wav", "duration": 13.595, "text": "unlike his master he made no pretension to any gift of poetic power but his inexhaustible memory made him a living encyclopaedia and for his stock of anecdotes and trooper's tales he was matchless"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0000.wav", "duration": 6.455, "text": "her sea going qualities were excellent and would have amply sufficed for a circumnavigation of the globe"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0001.wav", "duration": 21.015, "text": "after an apprenticeship on a merchant ship he had entered the imperial navy and had already reached the rank of lieutenant when the count appointed him to the charge of his own private yacht in which he was accustomed to spend by far the greater part of his time throughout the winter generally cruising in the mediterranean whilst in the summer he visited more northern waters"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0002.wav", "duration": 10.96, "text": "the late astounding events however had rendered procope manifestly uneasy and not the less so from his consciousness that the count secretly partook of his own anxiety"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0003.wav", "duration": 3.98, "text": "steam up and canvas spread the schooner started eastwards"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0004.wav", "duration": 17.415, "text": "although only a moderate breeze was blowing the sea was rough a circumstance to be accounted for only by the diminution in the force of the earth's attraction rendering the liquid particles so buoyant that by the mere effect of oscillation they were carried to a height that was quite unprecedented"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0005.wav", "duration": 8.415, "text": "for a few miles she followed the line hitherto presumably occupied by the coast of algeria but no land appeared to the south"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0006.wav", "duration": 7.55, "text": "the log and the compass therefore were able to be called upon to do the work of the sextant which had become utterly useless"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0007.wav", "duration": 15.04, "text": "there is no fear of that sir"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0008.wav", "duration": 8.54, "text": "the earth has undoubtedly entered upon a new orbit but she is not incurring any probable risk of being precipitated onto the sun"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0009.wav", "duration": 7.01, "text": "and what demonstration do you offer asked servadac eagerly that it will not happen"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0010.wav", "duration": 2.31, "text": "ocean reigned supreme"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0011.wav", "duration": 13.71, "text": "all the images of his past life floated upon his memory his thoughts sped away to his native france only to return again to wonder whether the depths of ocean would reveal any traces of the algerian metropolis"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0012.wav", "duration": 6.775, "text": "is it not impossible he murmured aloud that any city should disappear so completely"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0013.wav", "duration": 4.82, "text": "would not the loftiest eminences of the city at least be visible"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0014.wav", "duration": 2.995, "text": "another circumstance was most remarkable"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0015.wav", "duration": 29.14, "text": "to the surprise of all and especially of lieutenant procope the line indicated a bottom at a nearly uniform depth of from four to five fathoms and although the sounding was persevered with continuously for more than two hours over a considerable area the differences of level were insignificant not corresponding in any degree to what would be expected over the site of a city that had been terraced like the seats of an amphitheater"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0016.wav", "duration": 6.285, "text": "you must see lieutenant i should think that we are not so near the coast of algeria as you imagined"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0017.wav", "duration": 12.755, "text": "after pondering awhile he said if we were farther away i should expect to find a depth of two or three hundred fathoms instead of five fathoms five fathoms"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0018.wav", "duration": 12.83, "text": "its depth remained invariable still four or at most five fathoms and although its bottom was assiduously dredged it was only to prove it barren of marine production of any type"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/5105/28241/5105-28241-0019.wav", "duration": 5.29, "text": "nothing was to be done but to put about and return in disappointment towards the north"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7176/92135/7176-92135-0000.wav", "duration": 14.44, "text": "he is a welcome figure at the garden parties of the elect who are always ready to encourage him by accepting free seats for his play actor managers nod to him editors allow him to contribute without charge to a symposium on the price of golf balls"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7176/92135/7176-92135-0001.wav", "duration": 7.56, "text": "in short he becomes a prominent figure in london society and if he is not careful somebody will say so"}
{"key": "/data/nlpnd_projects/LibriSpeech/test-clean/7176/92135/7176-92135-0002.wav", "duration": 3.415, "text": "but even the unsuccessful dramatist has his moments"}