File size: 23,153 Bytes
8a53a03
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "resolution": "640x360",
  "duration_seconds": 339,
  "content_parent_category": "Education",
  "content_fine_category": "TED Talks",
  "youtube_title": "GLAM-Wiki 2013 - Michael Edson Jack the Museum",
  "youtube_description": "Michael Edson of the Smithsonian Institution in Washington DC at Wikimedia UK's GLAM-Wiki 2013 at the British Library, London. In this video he performs an incredible poem inspired by openness.\n\nHis main presentation can be seen here: http://www.youtube.com/watch?v=wp_BdHDZW68\n\nThumbnail photo credit: Sebastiaan ter Burg",
  "text_to_speech_word_count": 776,
  "youtube_categories": [
    "Nonprofits & Activism"
  ],
  "youtube_tags": [
    "Jack the Museum",
    "Wikimedia",
    "Wikipedia",
    "Open culture",
    "Wikimedia UK",
    "Michael Edson",
    "GLAM-Wiki 2013",
    "Smithsonian",
    "British Library"
  ],
  "youtube_channel": "Wikimedia UK",
  "youtube_view_count": 561,
  "youtube_comment_count": 2,
  "youtube_like_count": 6,
  "youtube_channel_follower_count": 1060,
  "youtube_upload_date": "20130412",
  "youtube_age_limit": 0,
  "content_metadata": {
    "title": "The Age of Scale: Evolving Museums for the Digital Era",
    "description": "A speaker delivers a passionate speech advocating for museums to adapt to the digital age, using engaging visuals and rhetorical questions to highlight the necessity of embracing new technologies and collaborative approaches.",
    "characterList": [
      {
        "characterId": "1",
        "name": "Speaker",
        "description": "A man with short dark hair wearing a dark suit and a light blue shirt, standing behind a wooden podium."
      }
    ],
    "scenes": [
      {
        "sceneId": 1,
        "title": "Introduction to the Age of Sail",
        "timestamps": {
          "start_timestamp": "00:00:00.000",
          "end_timestamp": "00:00:46.080"
        },
        "cast": [
          "Speaker"
        ],
        "activities": [
          {
            "description": "Speaker delivers a speech about the age of sail.",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:45.000"
            }
          }
        ],
        "props": [
          {
            "name": "Podium",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:45.000"
            }
          },
          {
            "name": "Images of sailing ships on the projector screen",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:45.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Several images of sailing ships are shown on the projector screen, changing quickly.",
            "timestamps": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:45.000"
            }
          }
        ],
        "mood": {
          "description": "Excited",
          "keyMoments": [
            {
              "timestamp": "00:00:45.000",
              "changeDescription": "Transition from Excited (audio) to Calm (audio). The speaker's tone softens as he introduces a more reflective moment."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "The speaker introduces the concept of the 'age of sail' and its historical significance.",
            "timestamp": "00:00:00.000"
          },
          {
            "description": "The speaker emphasizes the reliance on sailboats for various purposes in the past.",
            "timestamp": "00:00:17.000"
          },
          {
            "description": "The speaker playfully suggests that only a fool would choose to row in the age of sail.",
            "timestamp": "00:00:39.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Historical context of sailing and technological advancements.",
        "contextualRelevance": "Subtle tension between romance of the past and necessity of progress.",
        "dynamismScore": 0.7,
        "audioVisualCorrelation": 0.8
      },
      {
        "sceneId": 2,
        "title": "Modern Technology vs. Slow Travel",
        "timestamps": {
          "start_timestamp": "00:00:46.120",
          "end_timestamp": "00:01:14.000"
        },
        "cast": [
          "Speaker"
        ],
        "activities": [
          {
            "description": "Speaker transitions to a discussion of modern technology.",
            "timestamp": {
              "start_timestamp": "00:00:46.120",
              "end_timestamp": "00:01:14.000"
            }
          }
        ],
        "props": [
          {
            "name": "Podium",
            "timestamp": {
              "start_timestamp": "00:00:46.120",
              "end_timestamp": "00:01:14.000"
            }
          },
          {
            "name": "Images of a rowboat, a couple in a rowboat, and a large ship propeller on the projector screen",
            "timestamp": {
              "start_timestamp": "00:00:46.120",
              "end_timestamp": "00:01:14.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Images change less frequently for a more focused viewing experience.",
            "timestamps": {
              "start_timestamp": "00:00:46.120",
              "end_timestamp": "00:01:14.000"
            }
          }
        ],
        "mood": {
          "description": "Pensive",
          "keyMoments": [
            {
              "timestamp": "00:01:14.000",
              "changeDescription": "Transition from Pensive (visual/audio) to Excited (visual/audio)."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "The speaker acknowledges the appeal of slower ways of life, using the analogy of reading a book over digital content.",
            "timestamp": "00:00:46.120"
          },
          {
            "description": "He parallels 'slow, dirty travel' of a rowboat with intellectual exploration of less-traveled paths.",
            "timestamp": "00:01:01.000"
          },
          {
            "description": "He asserts that grand tasks require a faster, more forceful approach, symbolized by the propeller.",
            "timestamp": "00:01:14.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Contrast between traditional and modern approaches.",
        "contextualRelevance": "Nuanced perspective on tradition and progress.",
        "dynamismScore": 0.6,
        "audioVisualCorrelation": 0.9
      },
      {
        "sceneId": 3,
        "title": "A Call for Global Action and Change",
        "timestamps": {
          "start_timestamp": "00:01:14.040",
          "end_timestamp": "00:02:21.000"
        },
        "cast": [
          "Speaker"
        ],
        "activities": [
          {
            "description": "Speaker highlights the need for action and change on a global scale.",
            "timestamp": {
              "start_timestamp": "00:01:14.040",
              "end_timestamp": "00:02:21.000"
            }
          }
        ],
        "props": [
          {
            "name": "Podium",
            "timestamp": {
              "start_timestamp": "00:01:14.040",
              "end_timestamp": "00:02:21.000"
            }
          },
          {
            "name": "Images of a planet earth, a museum interior, and stacks of books on the projector screen",
            "timestamp": {
              "start_timestamp": "00:01:14.040",
              "end_timestamp": "00:02:21.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Images are impactful and relevant to the speaker's points.",
            "timestamps": {
              "start_timestamp": "00:01:14.040",
              "end_timestamp": "00:02:21.000"
            }
          }
        ],
        "mood": {
          "description": "Excited, Angry",
          "keyMoments": [
            {
              "timestamp": "00:01:49.000",
              "changeDescription": "Transition from Excited (audio) to Angry (audio)."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "The speaker calls for action and progress, using metaphors like 'jamming' and 'manning and womaning'.",
            "timestamp": "00:01:14.040"
          },
          {
            "description": "He uses the image of a 'hot-packed planet' on fire to symbolize the critical state of the world.",
            "timestamp": "00:01:30.000"
          },
          {
            "description": "He criticizes outdated tools and methods, calling them a waste of time.",
            "timestamp": "00:01:50.000"
          },
          {
            "description": "He challenges traditional institutions like museums, suggesting they can become stagnant.",
            "timestamp": "00:01:54.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Need for impactful action and innovation.",
        "contextualRelevance": "Critique of museums and call for accessibility.",
        "dynamismScore": 0.8,
        "audioVisualCorrelation": 0.9
      },
      {
        "sceneId": 4,
        "title": "Embracing New Technologies for the Future",
        "timestamps": {
          "start_timestamp": "00:02:21.040",
          "end_timestamp": "00:03:00.000"
        },
        "cast": [
          "Speaker"
        ],
        "activities": [
          {
            "description": "Speaker advocates for embracing new technologies and collective action.",
            "timestamp": {
              "start_timestamp": "00:02:21.040",
              "end_timestamp": "00:03:00.000"
            }
          }
        ],
        "props": [
          {
            "name": "Podium",
            "timestamp": {
              "start_timestamp": "00:02:21.040",
              "end_timestamp": "00:03:00.000"
            }
          },
          {
            "name": "Images of a killer whale, book covers with animal drawings, and logos of various websites on the projector screen",
            "timestamp": {
              "start_timestamp": "00:02:21.040",
              "end_timestamp": "00:03:00.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Images support speaker's call for new approaches and technologies.",
            "timestamps": {
              "start_timestamp": "00:02:21.040",
              "end_timestamp": "00:03:00.000"
            }
          }
        ],
        "mood": {
          "description": "Excited, Hopeful",
          "keyMoments": [
            {
              "timestamp": "00:02:50.000",
              "changeDescription": "Transition from Excited (audio) to Hopeful (audio)."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "The speaker emphasizes the importance of scale and impact.",
            "timestamp": "00:02:21.040"
          },
          {
            "description": "He highlights the power of new technologies to bring change.",
            "timestamp": "00:02:43.000"
          },
          {
            "description": "He encourages embracing 'network action'.",
            "timestamp": "00:02:50.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Vision for a future driven by innovation.",
        "contextualRelevance": "Potential of technology for global connection.",
        "dynamismScore": 0.9,
        "audioVisualCorrelation": 0.9
      },
      {
        "sceneId": 5,
        "title": "Concluding Call to Embrace Change",
        "timestamps": {
          "start_timestamp": "00:03:00.040",
          "end_timestamp": "00:03:55.520"
        },
        "cast": [
          "Speaker"
        ],
        "activities": [
          {
            "description": "Speaker reiterates the message of embracing change and collaboration.",
            "timestamp": {
              "start_timestamp": "00:03:00.040",
              "end_timestamp": "00:03:55.520"
            }
          }
        ],
        "props": [
          {
            "name": "Podium",
            "timestamp": {
              "start_timestamp": "00:03:00.040",
              "end_timestamp": "00:03:55.520"
            }
          },
          {
            "name": "Images of Lego heads, a Maker Faire Detroit logo, and a picture of a smiling child wearing a Creative Commons shirt on the projector screen",
            "timestamp": {
              "start_timestamp": "00:03:00.040",
              "end_timestamp": "00:03:55.520"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Images emphasize speaker's key points.",
            "timestamps": {
              "start_timestamp": "00:03:00.040",
              "end_timestamp": "00:03:55.520"
            }
          }
        ],
        "mood": {
          "description": "Excited, Hopeful",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "The speaker summarizes main points and encourages 'hacking the museum'.",
            "timestamp": "00:03:00.040"
          },
          {
            "description": "He stresses the power of network action.",
            "timestamp": "00:03:19.000"
          },
          {
            "description": "He uses playful language for online engagement.",
            "timestamp": "00:03:30.000"
          },
          {
            "description": "He calls for a shift from traditional structures to collaboration.",
            "timestamp": "00:03:40.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Transformative power of technology and collective action.",
        "contextualRelevance": "Participation in shaping a new future.",
        "dynamismScore": 0.9,
        "audioVisualCorrelation": 0.9
      },
      {
        "sceneId": 6,
        "title": "Final Call to Action",
        "timestamps": {
          "start_timestamp": "00:03:55.560",
          "end_timestamp": "00:05:39.040"
        },
        "cast": [
          "Speaker"
        ],
        "activities": [
          {
            "description": "Speaker concludes his speech with a final call to action.",
            "timestamp": {
              "start_timestamp": "00:03:57.000",
              "end_timestamp": "00:05:36.000"
            }
          }
        ],
        "props": [
          {
            "name": "Podium",
            "timestamp": {
              "start_timestamp": "00:03:57.000",
              "end_timestamp": "00:05:36.000"
            }
          },
          {
            "name": "\"REMIX\" in neon letters and a picture of a world map with \"Wikipedia\" information in different languages on the projector screen",
            "timestamp": {
              "start_timestamp": "00:03:57.000",
              "end_timestamp": "00:05:36.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Use of neon letters for emphasis.",
            "timestamps": {
              "start_timestamp": "00:03:57.000",
              "end_timestamp": "00:05:36.000"
            }
          }
        ],
        "mood": {
          "description": "Hopeful, Excited",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Reiterates message of embracing new approaches.",
            "timestamp": "00:03:57.000"
          },
          {
            "description": "Highlights transformative power of Creative Commons and public domain.",
            "timestamp": "00:04:00.000"
          },
          {
            "description": "Contrasts with traditional models of work and knowledge sharing.",
            "timestamp": "00:04:10.000"
          },
          {
            "description": "Celebrates success of online platforms.",
            "timestamp": "00:04:29.000"
          },
          {
            "description": "Encourages further collaboration.",
            "timestamp": "00:04:57.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Embracing a new era of scale, collaboration, and open access.",
        "contextualRelevance": "Call to action for future cultural institutions.",
        "dynamismScore": 0.8,
        "audioVisualCorrelation": 0.9
      }
    ],
    "storylines": {
      "description": "The need for Museums to evolve in the age of scale.",
      "scenes": [
        1,
        2,
        3,
        4,
        5,
        6
      ],
      "climax": {
        "description": "Speaker concludes with a call to 'do the museum' in new and exciting ways.",
        "timestamp": "00:04:57.000"
      }
    },
    "qAndA": [
      {
        "question": "What metaphor does the speaker use to describe the urgent state of the world?",
        "answer": "The speaker says, 'World's on fire, and we fan it. It's in trouble.'"
      },
      {
        "question": "What animal is shown on the book cover related to programming language C?",
        "answer": "A cow."
      },
      {
        "question": "What specific action does the speaker urge museums to take?",
        "answer": "He encourages them to 'Jack the Museum.'"
      },
      {
        "question": "What is the significance of the image of Lego heads in the context of the speaker's message?",
        "answer": "The Lego heads represent the collective power and potential of connected individuals to build something new and innovative, just as Lego bricks can be assembled in countless ways."
      },
      {
        "question": "How does the speaker use the analogy of the \"age of sail\" to highlight the need for change in museums?",
        "answer": "He contrasts the slow and limited reach of sailboats in the past with the fast-paced and globalized nature of the internet age, suggesting that museums need to adopt new approaches that scale to meet the demands of the present."
      }
    ],
    "trimmingSuggestions": [
      {
        "description": "This section, with multiple adjectives describing the age of sail, could be condensed for brevity and impact.",
        "timestamps": {
          "start_timestamp": "00:03:55.560",
          "end_timestamp": "00:03:55.560"
        }
      },
      {
        "description": "The analogy of preferring books over digital content, while relevant, could be trimmed to maintain the focus on the urgency of the speaker's message.",
        "timestamps": {
          "start_timestamp": "00:03:55.560",
          "end_timestamp": "00:03:55.560"
        }
      }
    ],
    "fps": 25.0
  },
  "text_to_speech": "in the age of sail we once rooted for five thousand years it constituted a world shaping epic making record-breaking human being technology this cannot be disputed from the time of the Pharaohs in the first D votes if we wanted to move some Goods some goats send a scientific treatise about the sexual life of most by the war against a foreign nation take your kids on a round-the-world vacation to move anything across the seas your only hope was for sale upon a boat upon the breeze only a fool would rather could bear to go that slow if they were in the know now don't get me wrong I imagine a case where a captain of reason could without treason treason Rome another reason I sometimes prefer a book in my hands to bits on the screen it seems a good book may help my mind dream and the slowly dirty gravel of athelets travel seems not to unravel the work of the travel but gives a sense of joy to a boy and a girl with nowhere to go and time to get you on but when the task that's at hand like yours is so great and the mission your addition has attrition when your jism why relevant why you must stand because today here's our planet a hot pack piece of granite roads on fire and we fan it it's in trouble we must jam it we must man and woman not spam it with old tools that waste time laying deeds that don't Robin why we'll be able to small hammer when you can jammer with a Ranma why have a museum so you can see them BM getting foolish pride from taking a small strides you're inside tiny little rides through hoity-toity halls of our filled walls and empty spaces filled with cases telling the stories about the evolution of the races while the masses the brilliant masses all the classes wait outside that's not amusing them that's a mausoleum well I do love our it fills the cart and the kwik-e-mart of my happy heart the coffee table babbling no fable dancin music keep me stable to a soul beyond the pale there's nothing finer than a son and center model playable but if the whale don't scale it's a planetary veil we must scale we can scale we can move new ideas across the scenes the agents kale because it's not just a rumor that the consumer ego dumb boomer with no hands heart or sense of humor she's a smart caring soul she's got friends they can roll the trillion hours a year of civic action surplus on your ass sure you told me this is so take it go no longer passive Network ends hearts and voices now on massive Network action makes old school broadcast reaction and distraction to this powerful new faction six billion people connected on the web they'll tag your bits hit your hits grind your grits pop corsets give you fits and take you to the ritz solve your problems make them theirs take away thousands of planetary cares carrier ulcer pack your culture your museum should be theirs for the takin you exist to maximize their making the assured that old taboos they are breaking a bond new recipe they're delighted to be brave baby they are insane in the brain with the freedom and power of creative commons from the public domain remix in a fresh refrain with their friends a new suniverse I didn't do naver's it's the opposite of holton still or moving in Reverse it's perverse how they rehearse the inverse of the ancient 20th century managers chapter and verse about who gets to say who does the work and who just has to walk along silence behind the corporate content hearse flicker it reached 9 billion culture richer pictures OpenStreetMaps illusion eating and if my grandma could only see me use 20 million cc0 records on your Vietnam to see the and make a vibrant culture like a cultural scientific new media data mixer motor a growing reader cedar super dynamic knowledge breeder Peter who brings good things to Wikipedia that wiki really loves to show the people what they love to know about the Himalayan snow McDonough's brand new Homer Simpson's dough where else you gonna get that bro a museum I don't think so so Jack the museum we really need to make it scale make it sale so the culture continues to feature do it now don't waste time working back in stagnant small-scale small vision times do the museum"
}