@internetarchive/radio-player 0.0.3 → 0.0.4-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/LICENSE +661 -661
  2. package/README.md +142 -142
  3. package/index.d.ts +15 -15
  4. package/index.js +28 -28
  5. package/lib/demo/full-text-search-service.d.ts +14 -14
  6. package/lib/demo/full-text-search-service.js +33 -33
  7. package/lib/demo/radio-player-controller.d.ts +41 -41
  8. package/lib/demo/radio-player-controller.js +199 -199
  9. package/lib/src/assets/img/left.d.ts +2 -2
  10. package/lib/src/assets/img/left.js +15 -15
  11. package/lib/src/assets/img/right.d.ts +2 -2
  12. package/lib/src/assets/img/right.js +15 -15
  13. package/lib/src/models/music-zone.d.ts +12 -12
  14. package/lib/src/models/music-zone.js +15 -15
  15. package/lib/src/models/radio-player-config.d.ts +26 -26
  16. package/lib/src/models/radio-player-config.js +27 -27
  17. package/lib/src/radio-player.d.ts +589 -589
  18. package/lib/src/radio-player.js +1338 -1338
  19. package/lib/src/search-handler/search-backends/full-text-search-backend/full-text-search-backend.d.ts +82 -82
  20. package/lib/src/search-handler/search-backends/full-text-search-backend/full-text-search-backend.js +107 -107
  21. package/lib/src/search-handler/search-backends/full-text-search-backend/full-text-search-response.d.ts +48 -48
  22. package/lib/src/search-handler/search-backends/full-text-search-backend/full-text-search-response.js +58 -58
  23. package/lib/src/search-handler/search-backends/full-text-search-backend/full-text-search-service-interface.d.ts +16 -16
  24. package/lib/src/search-handler/search-backends/full-text-search-backend/full-text-search-service-interface.js +1 -1
  25. package/lib/src/search-handler/search-backends/local-search-backend/local-search-backend.d.ts +27 -27
  26. package/lib/src/search-handler/search-backends/local-search-backend/local-search-backend.js +42 -42
  27. package/lib/src/search-handler/search-backends/search-backend-interface.d.ts +9 -9
  28. package/lib/src/search-handler/search-backends/search-backend-interface.js +1 -1
  29. package/lib/src/search-handler/search-handler-interface.d.ts +17 -17
  30. package/lib/src/search-handler/search-handler-interface.js +1 -1
  31. package/lib/src/search-handler/search-handler.d.ts +83 -83
  32. package/lib/src/search-handler/search-handler.js +177 -177
  33. package/lib/src/search-handler/search-helper.d.ts +12 -12
  34. package/lib/src/search-handler/search-helper.js +22 -22
  35. package/lib/src/search-handler/search-models.d.ts +45 -45
  36. package/lib/src/search-handler/search-models.js +49 -49
  37. package/lib/src/search-handler/transcript-index-interface.d.ts +38 -38
  38. package/lib/src/search-handler/transcript-index-interface.js +1 -1
  39. package/lib/src/search-handler/transcript-index.d.ts +53 -53
  40. package/lib/src/search-handler/transcript-index.js +80 -80
  41. package/lib/src/search-results-switcher.d.ts +58 -58
  42. package/lib/src/search-results-switcher.js +133 -133
  43. package/package.json +93 -93
  44. package/src/assets/img/left.ts +17 -17
  45. package/src/assets/img/right.ts +17 -17
  46. package/src/models/music-zone.ts +17 -17
  47. package/src/models/radio-player-config.ts +47 -47
  48. package/src/radio-player.ts +1402 -1402
  49. package/src/search-handler/search-backends/full-text-search-backend/full-text-search-backend.ts +140 -140
  50. package/src/search-handler/search-backends/full-text-search-backend/full-text-search-response.ts +110 -110
  51. package/src/search-handler/search-backends/full-text-search-backend/full-text-search-service-interface.ts +17 -17
  52. package/src/search-handler/search-backends/local-search-backend/local-search-backend.ts +50 -50
  53. package/src/search-handler/search-backends/search-backend-interface.ts +10 -10
  54. package/src/search-handler/search-handler-interface.ts +18 -18
  55. package/src/search-handler/search-handler.ts +217 -217
  56. package/src/search-handler/search-helper.ts +25 -25
  57. package/src/search-handler/search-models.ts +69 -69
  58. package/src/search-handler/transcript-index-interface.ts +42 -42
  59. package/src/search-handler/transcript-index.ts +93 -93
  60. package/src/search-results-switcher.ts +131 -131
  61. package/.eslintrc +0 -37
  62. package/.gitignore +0 -11
  63. package/.storybook/.babelrc +0 -15
  64. package/.storybook/addons.js +0 -7
  65. package/.storybook/config.js +0 -11
  66. package/.storybook/webpack.config.js +0 -5
  67. package/demo/full-text-search-service.ts +0 -32
  68. package/demo/index.html +0 -53
  69. package/demo/radio-player-controller.ts +0 -237
  70. package/karma.bs.config.js +0 -16
  71. package/karma.conf.js +0 -66
  72. package/package-lock.json +0 -51719
  73. package/stories/index.stories.js +0 -40
  74. package/stories/transcript.js +0 -683
  75. package/test/assets/arrow.mp3 +0 -0
  76. package/test/music-zone.test.js +0 -13
  77. package/test/promised-sleep.js +0 -3
  78. package/test/radio-player-config.test.js +0 -42
  79. package/test/radio-player.test.js +0 -1072
  80. package/test/sample_transcript.js +0 -1493
  81. package/test/search-handler/search-backends/full-text-sample-response-brackets.js +0 -60
  82. package/test/search-handler/search-backends/full-text-sample-response-em.js +0 -60
  83. package/test/search-handler/search-backends/full-text-search-backend.test.js +0 -74
  84. package/test/search-handler/search-backends/full-text-search-response.test.js +0 -14
  85. package/test/search-handler/search-backends/local-search-backend.test.js +0 -39
  86. package/test/search-handler/search-handler.test.js +0 -550
  87. package/test/search-handler/search-helper.test.js +0 -63
  88. package/test/search-handler/search-model.test.js +0 -56
  89. package/test/search-handler/transcript-index.test.js +0 -66
  90. package/test/search-results-switcher.test.js +0 -97
  91. package/tsconfig.build.json +0 -7
  92. package/tsconfig.json +0 -21
  93. package/yarn.lock +0 -14450
@@ -1,1493 +0,0 @@
1
- export default [
2
- {
3
- end: 3.088,
4
- id: 1,
5
- is_music: false,
6
- start: 0.008,
7
- text: 'The Bank of England has kept the main interest rate at 3 quarters of one percent',
8
- },
9
- {
10
- end: 7.06,
11
- id: 2,
12
- is_music: false,
13
- start: 3.092,
14
- text: "the Bank's governor Mark Carney warned that if growth and inflation increase over",
15
- },
16
- {
17
- end: 12.05,
18
- id: 3,
19
- is_music: false,
20
- start: 7.061,
21
- text: 'the next 2 years could be more interest rate rises than current expected on the',
22
- },
23
- {
24
- end: 12.079,
25
- id: 4,
26
- is_music: false,
27
- start: 12.051,
28
- text: 'weather',
29
- },
30
- {
31
- end: 17.003,
32
- id: 5,
33
- is_music: false,
34
- start: 12.08,
35
- text: 'a cloudy night with persistent rain of essential areas on tomorrow will be chilly',
36
- },
37
- {
38
- end: 18.089,
39
- id: 6,
40
- is_music: false,
41
- start: 17.004,
42
- text: 'with more rain as the B.B.C.',
43
- },
44
- {
45
- end: 21.017,
46
- id: 7,
47
- is_music: false,
48
- start: 18.09,
49
- text: 'News at 3 minutes past 7 Onyx to date.',
50
- },
51
- {
52
- end: 48.023,
53
- id: 8,
54
- is_music: false,
55
- start: 47.049,
56
- text: 'I live the.',
57
- },
58
- {
59
- end: 255.83755102041,
60
- id: 9,
61
- is_music: true,
62
- start: 49.551292517007,
63
- text: '',
64
- },
65
- {
66
- end: 269.065,
67
- id: 10,
68
- is_music: false,
69
- start: 269.042,
70
- text: 'Such',
71
- },
72
- {
73
- end: 275.031,
74
- id: 11,
75
- is_music: false,
76
- start: 269.066,
77
- text: 'a wonderful record this is and doing so well in the Americana charts in the states',
78
- },
79
- {
80
- end: 280.035,
81
- id: 12,
82
- is_music: false,
83
- start: 275.032,
84
- text: 'the very latest from Hayes Carll the album is called What It Is that American dream',
85
- },
86
- {
87
- end: 284.065,
88
- id: 13,
89
- is_music: false,
90
- start: 280.064,
91
- text: "and I'm very pleased to tell you that is arriving in this country for dates pretty",
92
- },
93
- {
94
- end: 290.089,
95
- id: 14,
96
- is_music: false,
97
- start: 284.066,
98
- text: 'soon 15th of May is when the starts in Manchester New plays Glasgow Sheffield',
99
- },
100
- {
101
- end: 295.077,
102
- id: 15,
103
- is_music: false,
104
- start: 291.006,
105
- text: 'Pocklington Nottingham Bristol Brighton and the America in London the date that',
106
- },
107
- {
108
- end: 301.098,
109
- id: 16,
110
- is_music: false,
111
- start: 295.078,
112
- text: 'runs off the turn on the 22nd of May has Karl and American Dream Getting things',
113
- },
114
- {
115
- end: 305.094,
116
- id: 17,
117
- is_music: false,
118
- start: 302.031,
119
- text: "underway for us this evening it's the country show with Bob Harris normally Jo",
120
- },
121
- {
122
- end: 310.088,
123
- id: 18,
124
- is_music: false,
125
- start: 305.095,
126
- text: "Whiley of course at 7 but she's broke osting live from the Chatham Jazz Festival",
127
- },
128
- {
129
- end: 316.057,
130
- id: 19,
131
- is_music: false,
132
- start: 310.089,
133
- text: "the saving so have program will be starting at 8 o'clock but we're here until there",
134
- },
135
- {
136
- end: 321.047,
137
- id: 20,
138
- is_music: false,
139
- start: 316.058,
140
- text: "was some great country music for you and I'm so glad you found us on your dial.",
141
- },
142
- {
143
- end: 365.097,
144
- id: 21,
145
- is_music: false,
146
- start: 360.039,
147
- text: 'Oh the blood plague.',
148
- },
149
- {
150
- end: 465.37442176871,
151
- id: 22,
152
- is_music: true,
153
- start: 360.51292517007,
154
- text: '',
155
- },
156
- {
157
- end: 471.072,
158
- id: 23,
159
- is_music: false,
160
- start: 466.013,
161
- text: 'play.',
162
- },
163
- {
164
- end: 485.028,
165
- id: 24,
166
- is_music: false,
167
- start: 478.04,
168
- text: 'Play play. Harmon is they adjust or if it gets to',
169
- },
170
- {
171
- end: 491.079,
172
- id: 25,
173
- is_music: false,
174
- start: 485.029,
175
- text: 'me this. Is very much the I dunno 2019 equivalent to the Everly Brothers I grew up',
176
- },
177
- {
178
- end: 497.009,
179
- id: 26,
180
- is_music: false,
181
- start: 491.08,
182
- text: 'on every Brothers Records and this is pretty much as good I think easy way is the',
183
- },
184
- {
185
- end: 501.093,
186
- id: 27,
187
- is_music: false,
188
- start: 497.01,
189
- text: 'new cactus blossom album is released on their own Walkie-Talkie record label that',
190
- },
191
- {
192
- end: 506.02,
193
- id: 28,
194
- is_music: false,
195
- start: 501.094,
196
- text: 'song is called desperado and again dates coming out for them in the U.K.',
197
- },
198
- {
199
- end: 510.058,
200
- id: 29,
201
- is_music: false,
202
- start: 506.072,
203
- text: "a Little further ahead we're talking about September here September the 4th they're",
204
- },
205
- {
206
- end: 515.028,
207
- id: 30,
208
- is_music: false,
209
- start: 510.059,
210
- text: "playing Bush Hall in London September the 5th they're playing in Bristow the 7th",
211
- },
212
- {
213
- end: 521.054,
214
- id: 31,
215
- is_music: false,
216
- start: 515.029,
217
- text: 'thing Gosforth the 8th broadcasting 2 hours ago and finally in Leeds on September',
218
- },
219
- {
220
- end: 527.019,
221
- id: 32,
222
- is_music: false,
223
- start: 521.055,
224
- text: "the 9th Wonder for harmonies cactus blossom and Desperado So what we're doing this",
225
- },
226
- {
227
- end: 530.036,
228
- id: 33,
229
- is_music: false,
230
- start: 527.02,
231
- text: "week is concentrating on the Americana charts we've had quite",
232
- },
233
- {
234
- end: 535.028,
235
- id: 34,
236
- is_music: false,
237
- start: 530.037,
238
- text: 'a few weeks of dead Centro mainstream country particularly around the country to',
239
- },
240
- {
241
- end: 537.019,
242
- id: 35,
243
- is_music: false,
244
- start: 535.029,
245
- text: 'country festival but there have been',
246
- },
247
- {
248
- end: 542.059,
249
- id: 36,
250
- is_music: false,
251
- start: 537.02,
252
- text: 'a lot of fabulous Americana albums released through the last few weeks and we have',
253
- },
254
- {
255
- end: 545.049,
256
- id: 37,
257
- is_music: false,
258
- start: 542.082,
259
- text: 'tracks from one or 2 of them on the program tonight so coming up',
260
- },
261
- {
262
- end: 549.006,
263
- id: 38,
264
- is_music: false,
265
- start: 545.05,
266
- text: "a bit later music from the new album from Steve I've got",
267
- },
268
- {
269
- end: 553.031,
270
- id: 39,
271
- is_music: false,
272
- start: 549.007,
273
- text: 'a song from mandolin orange music from North Carolina and',
274
- },
275
- {
276
- end: 555.055,
277
- id: 40,
278
- is_music: false,
279
- start: 553.032,
280
- text: 'a beautiful new record called tides have',
281
- },
282
- {
283
- end: 560.099,
284
- id: 41,
285
- is_music: false,
286
- start: 555.056,
287
- text: "a teardrop we've got the number one country and America American or album in the",
288
- },
289
- {
290
- end: 565.042,
291
- id: 42,
292
- is_music: false,
293
- start: 561,
294
- text: "states fever breaks by Josh Ritter track from that to come I've got the brand new",
295
- },
296
- {
297
- end: 570.092,
298
- id: 43,
299
- is_music: false,
300
- start: 565.043,
301
- text: 'Joy Williams single track again this week from the wonderful Molly Tuttle and we',
302
- },
303
- {
304
- end: 574.017,
305
- id: 44,
306
- is_music: false,
307
- start: 570.093,
308
- text: 'have an exclusive on the show a little later',
309
- },
310
- {
311
- end: 581.013,
312
- id: 45,
313
- is_music: false,
314
- start: 574.054,
315
- text: 'a brand new track from the amazing Lucas now all of this to come between now and 8',
316
- },
317
- {
318
- end: 584.064,
319
- id: 46,
320
- is_music: false,
321
- start: 581.014,
322
- text: "o'clock and we also have this from Sun vault.",
323
- },
324
- {
325
- end: 737.32653061224,
326
- id: 47,
327
- is_music: true,
328
- start: 597.9137414966,
329
- text: '',
330
- },
331
- {
332
- end: 745.093,
333
- id: 48,
334
- is_music: false,
335
- start: 745.07,
336
- text: 'There.',
337
- },
338
- {
339
- end: 753.077,
340
- id: 49,
341
- is_music: false,
342
- start: 753.07,
343
- text: 'Is',
344
- },
345
- {
346
- end: 757.068,
347
- id: 50,
348
- is_music: false,
349
- start: 753.078,
350
- text: "a great sound isn't it playing it tonight specially for John Surtees and everybody",
351
- },
352
- {
353
- end: 763.027,
354
- id: 51,
355
- is_music: false,
356
- start: 757.069,
357
- text: 'at the for some vote devil may care is the title track from their new album which',
358
- },
359
- {
360
- end: 769.032,
361
- id: 52,
362
- is_music: false,
363
- start: 763.028,
364
- text: 'is just released on the 30 Tigers label and is in the top 10 of the Americana',
365
- },
366
- {
367
- end: 774.063,
368
- id: 53,
369
- is_music: false,
370
- start: 769.033,
371
- text: 'charts in America this week so as always we live in London if you would like to get',
372
- },
373
- {
374
- end: 779.05,
375
- id: 54,
376
- is_music: false,
377
- start: 774.064,
378
- text: 'in touch with always love to hear from you or on Twitter at B Harris country is',
379
- },
380
- {
381
- end: 784.011,
382
- id: 55,
383
- is_music: false,
384
- start: 779.051,
385
- text: "that Twitter address I'm on Twitter myself purse and Instagram which I was Love you",
386
- },
387
- {
388
- end: 789.004,
389
- id: 56,
390
- is_music: false,
391
- start: 784.012,
392
- text: 'can e-mail us if you like to see Bob Harris at B.B.C. Dot co dot U.K.',
393
- },
394
- {
395
- end: 795.006,
396
- id: 57,
397
- is_music: false,
398
- start: 789.034,
399
- text: 'Or if you like to text us tonight you can do that as well 88 to 91 is',
400
- },
401
- {
402
- end: 800.002,
403
- id: 58,
404
- is_music: false,
405
- start: 795.007,
406
- text: 'a text line number and I just want to say hello to Ben Tuthill who says I was',
407
- },
408
- {
409
- end: 801.004,
410
- id: 59,
411
- is_music: false,
412
- start: 800.003,
413
- text: 'wondering Bob if you could play',
414
- },
415
- {
416
- end: 807.004,
417
- id: 60,
418
- is_music: false,
419
- start: 801.005,
420
- text: 'a song for my parents Debbie and Bob who will be celebrating their 50th wedding',
421
- },
422
- {
423
- end: 812.036,
424
- id: 61,
425
- is_music: false,
426
- start: 807.005,
427
- text: 'anniversary on 3rd of May is that the right ones responsible for getting me into',
428
- },
429
- {
430
- end: 816.079,
431
- id: 62,
432
- is_music: false,
433
- start: 812.037,
434
- text: "country music will actually be in the States for their anniversary and I've planned",
435
- },
436
- {
437
- end: 822.046,
438
- id: 63,
439
- is_music: false,
440
- start: 816.08,
441
- text: 'a road trip from Chicago to Nashville this just sounds pretty and I have however',
442
- },
443
- {
444
- end: 827.01,
445
- id: 64,
446
- is_music: false,
447
- start: 822.078,
448
- text: "had to add a surprise data after my mom's favorite artists now it's",
449
- },
450
- {
451
- end: 831.067,
452
- id: 65,
453
- is_music: false,
454
- start: 827.011,
455
- text: 'a new tour date after we booked the trip and will now be heading north to',
456
- },
457
- {
458
- end: 838.044,
459
- id: 66,
460
- is_music: false,
461
- start: 831.071,
462
- text: 'Minneapolis from Chicago just 1000 mile round trip to see the legendary',
463
- },
464
- {
465
- end: 843.002,
466
- id: 67,
467
- is_music: false,
468
- start: 838.048,
469
- text: 'Garth Brooks in concert on. 4th of May and not is that my mom has always dreamed of',
470
- },
471
- {
472
- end: 845.081,
473
- id: 68,
474
- is_music: false,
475
- start: 843.003,
476
- text: 'saying live and I have this little surprise will go',
477
- },
478
- {
479
- end: 849.072,
480
- id: 69,
481
- is_music: false,
482
- start: 845.082,
483
- text: "a long way to show them how much I love them and appreciate everything they've done",
484
- },
485
- {
486
- end: 854.031,
487
- id: 70,
488
- is_music: false,
489
- start: 849.073,
490
- text: 'for me and for country music is my fight over the last 40 years that KEEP UP THE',
491
- },
492
- {
493
- end: 858.068,
494
- id: 71,
495
- is_music: false,
496
- start: 854.032,
497
- text: "GOOD Well it's great to see how country continues to grow in the U.K.",
498
- },
499
- {
500
- end: 863.073,
501
- id: 72,
502
- is_music: false,
503
- start: 858.069,
504
- text: "From Ben well and I'm sure you'll be listening to this transit line 6 Happy",
505
- },
506
- {
507
- end: 867.027,
508
- id: 73,
509
- is_music: false,
510
- start: 863.074,
511
- text: 'Anniversary Debbie and puff you tomorrow and I have the trip is',
512
- },
513
- {
514
- end: 871.051,
515
- id: 74,
516
- is_music: false,
517
- start: 867.028,
518
- text: "a fantastic success goth rocks my goodness it's going to be amazing he is",
519
- },
520
- {
521
- end: 877.063,
522
- id: 75,
523
- is_music: false,
524
- start: 871.052,
525
- text: "spectacular in concert. As you know if you've listened to this program any length",
526
- },
527
- {
528
- end: 881.055,
529
- id: 76,
530
- is_music: false,
531
- start: 877.064,
532
- text: 'of time you know what a massive Stevie fan I am and he has',
533
- },
534
- {
535
- end: 882.074,
536
- id: 77,
537
- is_music: false,
538
- start: 881.056,
539
- text: 'a new album out which is',
540
- },
541
- {
542
- end: 887.093,
543
- id: 78,
544
- is_music: false,
545
- start: 882.075,
546
- text: 'a tribute to Guy Clark is an album called Texas and this is the song from it this',
547
- },
548
- {
549
- end: 889.008,
550
- id: 79,
551
- is_music: false,
552
- start: 887.094,
553
- text: 'is Dublin Blues.',
554
- },
555
- {
556
- end: 909.071,
557
- id: 80,
558
- is_music: false,
559
- start: 902.096,
560
- text: 'In the trailer. Green is me and.',
561
- },
562
- {
563
- end: 1096.2141496599,
564
- id: 81,
565
- is_music: true,
566
- start: 902.18802721088,
567
- text: '',
568
- },
569
- {
570
- end: 1117.035,
571
- id: 82,
572
- is_music: false,
573
- start: 1112.05,
574
- text: "I've got an e-mail just in with the dedication on it which just says that track",
575
- },
576
- {
577
- end: 1122.036,
578
- id: 83,
579
- is_music: false,
580
- start: 1117.036,
581
- text: 'perfectly I think is from Joe Duffy It says Hi Bob in same Could you please give',
582
- },
583
- {
584
- end: 1123.096,
585
- id: 84,
586
- is_music: false,
587
- start: 1122.037,
588
- text: 'a dedication for something trying',
589
- },
590
- {
591
- end: 1129.072,
592
- id: 85,
593
- is_music: false,
594
- start: 1123.097,
595
- text: "a and full of soulful longing for the lovely Mark House sending all of Joe's love",
596
- },
597
- {
598
- end: 1134.03,
599
- id: 86,
600
- is_music: false,
601
- start: 1129.073,
602
- text: 'to that fit the bill and probably did actually stave off from the Texas out in',
603
- },
604
- {
605
- end: 1140.031,
606
- id: 87,
607
- is_music: false,
608
- start: 1134.031,
609
- text: 'Dublin Blues I love this record but Steve says about it we did it fast 5 or 6 days',
610
- },
611
- {
612
- end: 1145.052,
613
- id: 88,
614
- is_music: false,
615
- start: 1140.032,
616
- text: "with almost no of a dubbing I wanted a live sound when you've got",
617
- },
618
- {
619
- end: 1151.029,
620
- id: 89,
621
- is_music: false,
622
- start: 1145.053,
623
- text: 'a catalogue like guys in your only doing 16 tracks you know each one is going to be',
624
- },
625
- {
626
- end: 1156.052,
627
- id: 90,
628
- is_music: false,
629
- start: 1151.03,
630
- text: 'stronger other songs really are and Steve co-produced it with is trying trust',
631
- },
632
- {
633
- end: 1162.057,
634
- id: 91,
635
- is_music: false,
636
- start: 1156.053,
637
- text: 'partner right Kennedy and very very good it sounds to and this what is also in the',
638
- },
639
- {
640
- end: 1167.041,
641
- id: 92,
642
- is_music: false,
643
- start: 1162.058,
644
- text: 'Americana charts in the States right now is music from North Carolina an album',
645
- },
646
- {
647
- end: 1171.005,
648
- id: 93,
649
- is_music: false,
650
- start: 1167.042,
651
- text: "called tides of it's here drop from mantle in Orange.",
652
- },
653
- {
654
- end: 1203.002,
655
- id: 94,
656
- is_music: false,
657
- start: 1197,
658
- text: "Is great and I. I'm in. There can be no",
659
- },
660
- {
661
- end: 1385.9991836735,
662
- id: 95,
663
- is_music: true,
664
- start: 1199.7749659864,
665
- text: '',
666
- },
667
- {
668
- end: 1403.014,
669
- id: 96,
670
- is_music: false,
671
- start: 1396.074,
672
- text: 'Just beautiful I think the playing is absolutely exquisite music from mandolin',
673
- },
674
- {
675
- end: 1409.045,
676
- id: 97,
677
- is_music: false,
678
- start: 1403.022,
679
- text: 'orange the color of the band Angie Mollen and Emily France joined by Josh all of',
680
- },
681
- {
682
- end: 1414.091,
683
- id: 98,
684
- is_music: false,
685
- start: 1409.046,
686
- text: 'a Clint McCann and Joe Westland the album is called tides have',
687
- },
688
- {
689
- end: 1419.059,
690
- id: 99,
691
- is_music: false,
692
- start: 1414.092,
693
- text: 'a teardrop is out on me yet for on that song is called The War woods and mandolin',
694
- },
695
- {
696
- end: 1421.015,
697
- id: 100,
698
- is_music: false,
699
- start: 1419.06,
700
- text: 'oranges coming of to the U.K.',
701
- },
702
- {
703
- end: 1428.008,
704
- id: 101,
705
- is_music: false,
706
- start: 1421.016,
707
- text: "For one decades it's long been sold out to the assembly hall on the 15th of May",
708
- },
709
- {
710
- end: 1428.068,
711
- id: 102,
712
- is_music: false,
713
- start: 1428.009,
714
- text: 'which is part of',
715
- },
716
- {
717
- end: 1433.092,
718
- id: 103,
719
- is_music: false,
720
- start: 1428.069,
721
- text: "a wider Europe into that thing they're playing gigs in Germany Sweden Norway and",
722
- },
723
- {
724
- end: 1438.08,
725
- id: 104,
726
- is_music: false,
727
- start: 1433.093,
728
- text: 'the Netherlands and I just think that music is absolutely gorgeous mandolin orange',
729
- },
730
- {
731
- end: 1442.085,
732
- id: 105,
733
- is_music: false,
734
- start: 1438.081,
735
- text: "and the wharves. It's the country show here it's B.B.C.",
736
- },
737
- {
738
- end: 1445.098,
739
- id: 106,
740
- is_music: false,
741
- start: 1442.086,
742
- text: "Radio 2 I'm Bob Harris with the until 8 o'clock in",
743
- },
744
- {
745
- end: 1451.009,
746
- id: 107,
747
- is_music: false,
748
- start: 1445.099,
749
- text: 'a track from the album which is top of the Americana charts in the States right now',
750
- },
751
- {
752
- end: 1453.031,
753
- id: 108,
754
- is_music: false,
755
- start: 1451.04,
756
- text: 'Josh Ritter coming up in just',
757
- },
758
- {
759
- end: 1460.032,
760
- id: 109,
761
- is_music: false,
762
- start: 1453.032,
763
- text: 'a 2nd I may be able to play on 2nd and equipment in my bedroom 20 years after',
764
- },
765
- {
766
- end: 1465.092,
767
- id: 110,
768
- is_music: false,
769
- start: 1460.033,
770
- text: 'its release maybe shares his memories of playing Physick lamed album that sells',
771
- },
772
- {
773
- end: 1470.084,
774
- id: 111,
775
- is_music: false,
776
- start: 1465.093,
777
- text: "more than 9000000 copies worldwide market I'd never expected to have",
778
- },
779
- {
780
- end: 1474.027,
781
- id: 112,
782
- is_music: false,
783
- start: 1470.085,
784
- text: 'a career as musicians the fact that I was allowed to make what I thought was going',
785
- },
786
- {
787
- end: 1479.024,
788
- id: 113,
789
- is_music: false,
790
- start: 1474.028,
791
- text: "to be one last album I was pleased with that track by track in his I know it's",
792
- },
793
- {
794
- end: 1481.093,
795
- id: 114,
796
- is_music: false,
797
- start: 1479.025,
798
- text: "a piece of electronic music but it's",
799
- },
800
- {
801
- end: 1488.012,
802
- id: 115,
803
- is_music: false,
804
- start: 1481.094,
805
- text: 'a blues rock song might be 20 years of playing Saturday night from 9 on B.B.C.',
806
- },
807
- {
808
- end: 1491.092,
809
- id: 116,
810
- is_music: false,
811
- start: 1488.013,
812
- text: 'Radio 21234.',
813
- },
814
- {
815
- end: 1517.083,
816
- id: 117,
817
- is_music: false,
818
- start: 1513.036,
819
- text: 'Jason. Jason and to.',
820
- },
821
- {
822
- end: 2039.1300680272,
823
- id: 118,
824
- is_music: true,
825
- start: 1515.194829932,
826
- text: '',
827
- },
828
- {
829
- end: 2044.089,
830
- id: 119,
831
- is_music: false,
832
- start: 2042.029,
833
- text: 'Plant. Pain.',
834
- },
835
- {
836
- end: 2057.082,
837
- id: 120,
838
- is_music: false,
839
- start: 2051.032,
840
- text: 'Pain. Our. Music from the country show here',
841
- },
842
- {
843
- end: 2061,
844
- id: 121,
845
- is_music: false,
846
- start: 2057.099,
847
- text: "on B.B.C. Radio 2 and I know now it's",
848
- },
849
- {
850
- end: 2064.093,
851
- id: 122,
852
- is_music: false,
853
- start: 2061.001,
854
- text: "a different voice at the moment this time of night it's usually Joe of course but",
855
- },
856
- {
857
- end: 2069.011,
858
- id: 123,
859
- is_music: false,
860
- start: 2064.094,
861
- text: "said Joe is Brokaw sitting live from the Charlton I'm Jazz Festival have program",
862
- },
863
- {
864
- end: 2072.007,
865
- id: 124,
866
- is_music: false,
867
- start: 2069.012,
868
- text: "tonight starts at 8 o'clock said the country shows move forward",
869
- },
870
- {
871
- end: 2076.026,
872
- id: 125,
873
- is_music: false,
874
- start: 2072.008,
875
- text: "a couple of hours but said I really hope that you are enjoying the music that I'm",
876
- },
877
- {
878
- end: 2081.046,
879
- id: 126,
880
- is_music: false,
881
- start: 2076.027,
882
- text: 'playing for you this evening and well one of the voices that people are saying will',
883
- },
884
- {
885
- end: 2083.001,
886
- id: 127,
887
- is_music: false,
888
- start: 2081.047,
889
- text: 'save country music',
890
- },
891
- {
892
- end: 2087.075,
893
- id: 128,
894
- is_music: false,
895
- start: 2083.077,
896
- text: "a name is Jamie Lynn wells and she's based in Austin Texas she's been around for",
897
- },
898
- {
899
- end: 2092.009,
900
- id: 129,
901
- is_music: false,
902
- start: 2087.076,
903
- text: "quite a long time you may know her from the Trisha's of",
904
- },
905
- {
906
- end: 2093.074,
907
- id: 130,
908
- is_music: false,
909
- start: 2092.01,
910
- text: "a few years ago but she's put out",
911
- },
912
- {
913
- end: 2098.089,
914
- id: 131,
915
- is_music: false,
916
- start: 2093.075,
917
- text: "a couple of albums this is the most recent It's called jumping over rocks the song",
918
- },
919
- {
920
- end: 2104.012,
921
- id: 132,
922
- is_music: false,
923
- start: 2099.017,
924
- text: 'is called the being gone and Josh recipe for that blazing highway Higham is the',
925
- },
926
- {
927
- end: 2108.029,
928
- id: 133,
929
- is_music: false,
930
- start: 2104.013,
931
- text: "track from Josh's neon called favorite breaks which by the way is produced by the",
932
- },
933
- {
934
- end: 2113.042,
935
- id: 134,
936
- is_music: false,
937
- start: 2108.03,
938
- text: 'great Jason is bow and is one of the big sensations of Maracana music in the States',
939
- },
940
- {
941
- end: 2120.028,
942
- id: 135,
943
- is_music: false,
944
- start: 2113.043,
945
- text: "right now. I promise you tonight some really stunning new music and while I've been",
946
- },
947
- {
948
- end: 2123.031,
949
- id: 136,
950
- is_music: false,
951
- start: 2120.029,
952
- text: 'waiting for this one for a long time this is',
953
- },
954
- {
955
- end: 2151.072,
956
- id: 137,
957
- is_music: false,
958
- start: 2123.032,
959
- text: 'a brand new track from Joey Williams. Who',
960
- },
961
- {
962
- end: 2151.094,
963
- id: 138,
964
- is_music: false,
965
- start: 2151.073,
966
- text: 'knew.',
967
- },
968
- {
969
- end: 2166.084,
970
- id: 139,
971
- is_music: false,
972
- start: 2160.012,
973
- text: "Well it is. The state's burden still.",
974
- },
975
- {
976
- end: 2178.045,
977
- id: 140,
978
- is_music: false,
979
- start: 2172.016,
980
- text: 'You. Can afford. To have fun to',
981
- },
982
- {
983
- end: 2185.023,
984
- id: 141,
985
- is_music: false,
986
- start: 2178.046,
987
- text: 'watch see. Scream. Come on back to the',
988
- },
989
- {
990
- end: 2191.033,
991
- id: 142,
992
- is_music: false,
993
- start: 2185.024,
994
- text: 'front porch. That I am assuming he still.',
995
- },
996
- {
997
- end: 2198.008,
998
- id: 143,
999
- is_music: false,
1000
- start: 2192.072,
1001
- text: "Lives painted and. It's. Been for",
1002
- },
1003
- {
1004
- end: 2274.3017687075,
1005
- id: 144,
1006
- is_music: true,
1007
- start: 2195.0751020408,
1008
- text: '',
1009
- },
1010
- {
1011
- end: 2292.047,
1012
- id: 145,
1013
- is_music: false,
1014
- start: 2287.048,
1015
- text: 'Nights are long. Confuse sure.',
1016
- },
1017
- {
1018
- end: 2295.032,
1019
- id: 146,
1020
- is_music: false,
1021
- start: 2294.066,
1022
- text: 'To find',
1023
- },
1024
- {
1025
- end: 2315.02,
1026
- id: 147,
1027
- is_music: false,
1028
- start: 2295.033,
1029
- text: 'a good spring. Smith. Becomes',
1030
- },
1031
- {
1032
- end: 2322.015,
1033
- id: 148,
1034
- is_music: false,
1035
- start: 2315.021,
1036
- text: 'a reluctant. To. Use',
1037
- },
1038
- {
1039
- end: 2324.012,
1040
- id: 149,
1041
- is_music: false,
1042
- start: 2322.016,
1043
- text: 'a young lives to.',
1044
- },
1045
- {
1046
- end: 2333.026,
1047
- id: 150,
1048
- is_music: false,
1049
- start: 2329.072,
1050
- text: 'Come. Along.',
1051
- },
1052
- {
1053
- end: 2337.03,
1054
- id: 151,
1055
- is_music: false,
1056
- start: 2337,
1057
- text: 'To.',
1058
- },
1059
- {
1060
- end: 2371.039,
1061
- id: 152,
1062
- is_music: false,
1063
- start: 2370.072,
1064
- text: "Say it's",
1065
- },
1066
- {
1067
- end: 2378.034,
1068
- id: 153,
1069
- is_music: false,
1070
- start: 2371.04,
1071
- text: "a good. Story. You're trying to",
1072
- },
1073
- {
1074
- end: 2560.7431292517,
1075
- id: 154,
1076
- is_music: true,
1077
- start: 2376.7480272109,
1078
- text: '',
1079
- },
1080
- {
1081
- end: 2582.057,
1082
- id: 155,
1083
- is_music: false,
1084
- start: 2577.048,
1085
- text: "Just lovely isn't it and I hope you got to see Molly Tuttle when she was touring I",
1086
- },
1087
- {
1088
- end: 2588.005,
1089
- id: 156,
1090
- is_music: false,
1091
- start: 2582.058,
1092
- text: 'just love this record is. A song that which is the title track from the album',
1093
- },
1094
- {
1095
- end: 2592.084,
1096
- id: 157,
1097
- is_music: false,
1098
- start: 2588.006,
1099
- text: "called when you're ready and that Molly was the instrumentalist of the year at the",
1100
- },
1101
- {
1102
- end: 2599.007,
1103
- id: 158,
1104
- is_music: false,
1105
- start: 2592.088,
1106
- text: 'Americanas in Nashville last September and she was down in my studio under the',
1107
- },
1108
- {
1109
- end: 2603.077,
1110
- id: 159,
1111
- is_music: false,
1112
- start: 2599.008,
1113
- text: "apple tree a couple weeks ago record a little session with her and we've also got",
1114
- },
1115
- {
1116
- end: 2608.09,
1117
- id: 160,
1118
- is_music: false,
1119
- start: 2603.078,
1120
- text: 'a session with her coming up on the country show going to be broadcast on the 27th',
1121
- },
1122
- {
1123
- end: 2615.071,
1124
- id: 161,
1125
- is_music: false,
1126
- start: 2608.091,
1127
- text: "of June couple of other sessions to come. We've got for you Jason ring and May the",
1128
- },
1129
- {
1130
- end: 2622,
1131
- id: 162,
1132
- is_music: false,
1133
- start: 2615.072,
1134
- text: "23rd in sessions soon with Kate more and. But that was Molly Tuttle when you're",
1135
- },
1136
- {
1137
- end: 2626.085,
1138
- id: 163,
1139
- is_music: false,
1140
- start: 2622.001,
1141
- text: 'ready and it was Joy Williams before that because we originally had joy as one half',
1142
- },
1143
- {
1144
- end: 2628.076,
1145
- id: 164,
1146
- is_music: false,
1147
- start: 2626.086,
1148
- text: 'of the Civil War as she then made',
1149
- },
1150
- {
1151
- end: 2633.066,
1152
- id: 165,
1153
- is_music: false,
1154
- start: 2628.077,
1155
- text: "a solo album which took away away from the Civil War but she's back to it now with",
1156
- },
1157
- {
1158
- end: 2638.036,
1159
- id: 166,
1160
- is_music: false,
1161
- start: 2633.067,
1162
- text: 'this lovely new record from which that the track that I played is kind of the lead',
1163
- },
1164
- {
1165
- end: 2643.048,
1166
- id: 167,
1167
- is_music: false,
1168
- start: 2638.037,
1169
- text: 'track is the 1st one. Leased from the new album on 30 Tigers records Joy Williams',
1170
- },
1171
- {
1172
- end: 2647.07,
1173
- id: 168,
1174
- is_music: false,
1175
- start: 2643.071,
1176
- text: 'at the song is called front porch and I promise to tonight',
1177
- },
1178
- {
1179
- end: 2651.077,
1180
- id: 169,
1181
- is_music: false,
1182
- start: 2647.075,
1183
- text: "a Lucas now some exclusive wow he's got",
1184
- },
1185
- {
1186
- end: 2654.052,
1187
- id: 170,
1188
- is_music: false,
1189
- start: 2651.078,
1190
- text: 'a new album coming out called Turn off the news build',
1191
- },
1192
- {
1193
- end: 2659.099,
1194
- id: 171,
1195
- is_music: false,
1196
- start: 2654.053,
1197
- text: "a garden and this is the 1st track from it is absolutely brilliant It's called bad",
1198
- },
1199
- {
1200
- end: 2660.048,
1201
- id: 172,
1202
- is_music: false,
1203
- start: 2660,
1204
- text: 'case.',
1205
- },
1206
- {
1207
- end: 3112.4492517007,
1208
- id: 173,
1209
- is_music: true,
1210
- start: 2673.2204081633,
1211
- text: '',
1212
- },
1213
- {
1214
- end: 3113.015,
1215
- id: 174,
1216
- is_music: false,
1217
- start: 3069.002,
1218
- text: 'a an. A',
1219
- },
1220
- {
1221
- end: 3118.003,
1222
- id: 175,
1223
- is_music: false,
1224
- start: 3113.015,
1225
- text: '. Period.',
1226
- },
1227
- {
1228
- end: 3131.006,
1229
- id: 176,
1230
- is_music: false,
1231
- start: 3127.041,
1232
- text: "She's from Croydon in south London and she's become",
1233
- },
1234
- {
1235
- end: 3138.03,
1236
- id: 177,
1237
- is_music: false,
1238
- start: 3131.03,
1239
- text: 'a transatlantic Americana breakthrough artist remember the name Jade and',
1240
- },
1241
- {
1242
- end: 3141.055,
1243
- id: 178,
1244
- is_music: false,
1245
- start: 3138.031,
1246
- text: 'the song is called side effect and finally',
1247
- },
1248
- {
1249
- end: 3147.092,
1250
- id: 179,
1251
- is_music: false,
1252
- start: 3141.063,
1253
- text: 'a quite amazing piece of what Marc Ereli Laura McKenna an ace Mitchell Josh Ritter',
1254
- },
1255
- {
1256
- end: 3150.071,
1257
- id: 180,
1258
- is_music: false,
1259
- start: 3148.027,
1260
- text: 'Rosanne Cash and Sheryl Crow.',
1261
- },
1262
- {
1263
- end: 3167.081,
1264
- id: 181,
1265
- is_music: false,
1266
- start: 3161.036,
1267
- text: "Lynn and. Some to. Phil's Manx",
1268
- },
1269
- {
1270
- end: 3173.05,
1271
- id: 182,
1272
- is_music: false,
1273
- start: 3168.036,
1274
- text: "sing. One man. Can't.",
1275
- },
1276
- {
1277
- end: 3176.096,
1278
- id: 183,
1279
- is_music: false,
1280
- start: 3176.038,
1281
- text: 'Deny.',
1282
- },
1283
- {
1284
- end: 3185.033,
1285
- id: 184,
1286
- is_music: false,
1287
- start: 3182.089,
1288
- text: 'From. Coming.',
1289
- },
1290
- {
1291
- end: 3198.055,
1292
- id: 185,
1293
- is_music: false,
1294
- start: 3192.062,
1295
- text: 'Back. In the fall that never.',
1296
- },
1297
- {
1298
- end: 3207.059,
1299
- id: 186,
1300
- is_music: false,
1301
- start: 3201.023,
1302
- text: 'Gets to have souls gone. Through. Pain.',
1303
- },
1304
- {
1305
- end: 3211.055,
1306
- id: 187,
1307
- is_music: false,
1308
- start: 3209.083,
1309
- text: 'You can manage with.',
1310
- },
1311
- {
1312
- end: 3379.9431292517,
1313
- id: 188,
1314
- is_music: true,
1315
- start: 3211.5518367347,
1316
- text: '',
1317
- },
1318
- {
1319
- end: 3397.081,
1320
- id: 189,
1321
- is_music: false,
1322
- start: 3396.06,
1323
- text: 'Very powerful song in',
1324
- },
1325
- {
1326
- end: 3379.9431292517,
1327
- id: 190,
1328
- is_music: true,
1329
- start: 3211.5518367347,
1330
- text: '',
1331
- },
1332
- {
1333
- end: 3403.067,
1334
- id: 191,
1335
- is_music: false,
1336
- start: 3397.082,
1337
- text: 'a very powerful cast of performers the song is called by degrees mark Ereli Laurie',
1338
- },
1339
- {
1340
- end: 3379.9431292517,
1341
- id: 192,
1342
- is_music: true,
1343
- start: 3211.5518367347,
1344
- text: '',
1345
- },
1346
- {
1347
- end: 3410.001,
1348
- id: 193,
1349
- is_music: false,
1350
- start: 3403.068,
1351
- text: "McCann and ice Michel Josh Ritter Rosanne Cash and Sheryl Crow that's also the song",
1352
- },
1353
- {
1354
- end: 3379.9431292517,
1355
- id: 194,
1356
- is_music: true,
1357
- start: 3211.5518367347,
1358
- text: '',
1359
- },
1360
- {
1361
- end: 3415.038,
1362
- id: 195,
1363
- is_music: false,
1364
- start: 3410.002,
1365
- text: "that rounds off the country show tonight so Joe inch up and coming up and I'll be",
1366
- },
1367
- {
1368
- end: 3379.9431292517,
1369
- id: 196,
1370
- is_music: true,
1371
- start: 3211.5518367347,
1372
- text: '',
1373
- },
1374
- {
1375
- end: 3422.035,
1376
- id: 197,
1377
- is_music: false,
1378
- start: 3415.039,
1379
- text: "back again at our usual time of 9 o'clock next Thursday evening here on the radio 2",
1380
- },
1381
- {
1382
- end: 3379.9431292517,
1383
- id: 198,
1384
- is_music: true,
1385
- start: 3211.5518367347,
1386
- text: '',
1387
- },
1388
- {
1389
- end: 3424.002,
1390
- id: 199,
1391
- is_music: false,
1392
- start: 3422.035,
1393
- text: '. On the B.B.C.',
1394
- },
1395
- {
1396
- end: 3379.9431292517,
1397
- id: 200,
1398
- is_music: true,
1399
- start: 3211.5518367347,
1400
- text: '',
1401
- },
1402
- {
1403
- end: 3427.081,
1404
- id: 201,
1405
- is_music: false,
1406
- start: 3424.003,
1407
- text: 'Sounds up on digital radio and on 88 to 91 I.',
1408
- },
1409
- {
1410
- end: 3379.9431292517,
1411
- id: 202,
1412
- is_music: true,
1413
- start: 3211.5518367347,
1414
- text: '',
1415
- },
1416
- {
1417
- end: 3437.022,
1418
- id: 203,
1419
- is_music: false,
1420
- start: 3433.007,
1421
- text: 'Think is a nice as a to talk this is just saying grain a coroner as well that',
1422
- },
1423
- {
1424
- end: 3379.9431292517,
1425
- id: 204,
1426
- is_music: true,
1427
- start: 3211.5518367347,
1428
- text: '',
1429
- },
1430
- {
1431
- end: 3441.049,
1432
- id: 205,
1433
- is_music: false,
1434
- start: 3437.023,
1435
- text: 'a burglar who was fatally stabbed while attempting to rob an elderly man in south',
1436
- },
1437
- {
1438
- end: 3379.9431292517,
1439
- id: 206,
1440
- is_music: true,
1441
- start: 3211.5518367347,
1442
- text: '',
1443
- },
1444
- {
1445
- end: 3445.086,
1446
- id: 207,
1447
- is_music: false,
1448
- start: 3441.05,
1449
- text: 'east London was lawfully killed which it was born Brooks was holding',
1450
- },
1451
- {
1452
- end: 3379.9431292517,
1453
- id: 208,
1454
- is_music: true,
1455
- start: 3211.5518367347,
1456
- text: '',
1457
- },
1458
- {
1459
- end: 3450.021,
1460
- id: 209,
1461
- is_music: false,
1462
- start: 3445.087,
1463
- text: "a 12 inch kitchen knife when he confronted Henry Vincent today's home had",
1464
- },
1465
- {
1466
- end: 3379.9431292517,
1467
- id: 210,
1468
- is_music: true,
1469
- start: 3211.5518367347,
1470
- text: '',
1471
- },
1472
- {
1473
- end: 3454.089,
1474
- id: 211,
1475
- is_music: false,
1476
- start: 3450.022,
1477
- text: 'a green in April last year Vincent who had taken drugs threaten the pension over',
1478
- },
1479
- {
1480
- end: 3379.9431292517,
1481
- id: 212,
1482
- is_music: true,
1483
- start: 3211.5518367347,
1484
- text: '',
1485
- },
1486
- {
1487
- end: 3457.051,
1488
- id: 213,
1489
- is_music: false,
1490
- start: 3454.09,
1491
- text: 'the screwdriver before running into the night.',
1492
- },
1493
- ];