File size: 19,615 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": 123,
  "content_parent_category": "Automotive",
  "content_fine_category": "Racing Highlights",
  "youtube_title": "Final preparations and shakedown for the start of the 2022 Dakar Rally",
  "youtube_description": "All the preparations have been done, we had a super good shakedown so we're ready to start the 2022 prologue of the Dakar Rally! \n\nSubscribe on YouTube ► https://tomcoronel.nl/youtube \nThanks for watching the video and don't forget to comment! 👇\n\n🔘 Coronel Webshop: https://tomcoronel.nl/webshop/\n🔘 Facebook: https://www.facebook.com/Tom.Coronel\n🔘 Twitter: https://twitter.com/TomCoronel\n🔘 Instagram: https://www.instagram.com/tomcoronel/\n🔘 Pinterest: https://nl.pinterest.com/tomcoronel/\n🔘 Giphy: https://giphy.com/tomcoronel\n🔘 LinkedIn: https://www.linkedin.com/in/tomcoronel/\n🔘 Imagebank: https://www.tomcoronelracing.nl\n🔘 Twitch: https://www.twitch.tv/tomcoronel_eatmydust\n🔘 Linksome: https://linksome.me/tomcoronel\n\n#Dakar2022 #CoronelDakar #DakarRally",
  "text_to_speech_word_count": 186,
  "youtube_categories": [
    "Autos & Vehicles"
  ],
  "youtube_tags": [
    "Tom Coronel",
    "race",
    "car",
    "racing",
    "auto",
    "motorsport",
    "dakar 2022 shakedown",
    "dakar rally 2022",
    "coronel dakar 2022",
    "coronel dakar team",
    "tim coronel",
    "rallye",
    "saudi arabia",
    "dakar in saudi",
    "offroad racing",
    "desert lion 247",
    "tim en tom coronel dakar",
    "coronel dakar team 2022",
    "dakar 2022 final preps",
    "the 2022 prologue of the Dakar Rally",
    "dakar rally prologue 2022",
    "start dakar rally 2022",
    "dakar 2022 shakedown highlights"
  ],
  "youtube_channel": "Tom Coronel",
  "youtube_view_count": 10817,
  "youtube_comment_count": 19,
  "youtube_like_count": 319,
  "youtube_channel_follower_count": 44100,
  "youtube_upload_date": "20211231",
  "youtube_age_limit": 0,
  "content_metadata": {
    "title": "Dakar 2022 Pre-Rally",
    "description": "The video features the Cornel brothers preparing for the Dakar 2022 rally, highlighting their 'Desert Lion' buggy, their preparation, and their confidence leading up to the race.",
    "characterList": [
      {
        "characterId": "1",
        "name": "Tim Coronel",
        "description": "A man with short gray hair and a receding hairline, wearing a blue shirt with various sponsor logos and black shorts."
      },
      {
        "characterId": "2",
        "name": "Tom Coronel",
        "description": "A man with short dark hair and a receding hairline, wearing a blue shirt with various sponsor logos and black shorts. Similar appearance to Tim, but with darker hair."
      },
      {
        "characterId": "3",
        "name": "Mechanic 1",
        "description": "A man with short blonde hair, working on the car engine, wearing a blue shirt."
      },
      {
        "characterId": "4",
        "name": "Mechanic 2",
        "description": "A man with glasses, working on the car, wearing a blue shirt."
      }
    ],
    "scenes": [
      {
        "sceneId": 1,
        "title": "Introduction and Preparations",
        "timestamps": {
          "start_timestamp": "00:00:00.000",
          "end_timestamp": "00:00:23.280"
        },
        "cast": [
          "Tim Coronel"
        ],
        "activities": [
          {
            "description": "Buggy driving through a desert landscape",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:02.000"
            }
          },
          {
            "description": "Close up of blue and orange buggy driving",
            "timestamp": {
              "start_timestamp": "00:00:04.000",
              "end_timestamp": "00:00:06.000"
            }
          },
          {
            "description": "Tim Coronel welcomes viewers",
            "timestamp": {
              "start_timestamp": "00:00:07.000",
              "end_timestamp": "00:00:07.000"
            }
          },
          {
            "description": "Mechanics working on buggy at night",
            "timestamp": {
              "start_timestamp": "00:00:13.000",
              "end_timestamp": "00:00:23.000"
            }
          },
          {
            "description": "Green and black buggy driving through a desert",
            "timestamp": {
              "start_timestamp": "00:00:23.000",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "description": "Blue and orange buggy driving through a desert",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "description": "A motorcycle driver driving through the desert",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "description": "A white truck driving through the desert",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "description": "Interior shots of blue and orange buggy during test drive",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "description": "Red buggy driving through a desert",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          }
        ],
        "props": [
          {
            "name": "Green and black buggy",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:02.000"
            }
          },
          {
            "name": "Blue and orange buggy",
            "timestamp": {
              "start_timestamp": "00:00:04.000",
              "end_timestamp": "00:00:06.000"
            }
          },
          {
            "name": "Motorcycle",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "name": "White truck",
            "timestamp": {
              "start_timestamp": "00:00:23.280",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "name": "Tools",
            "timestamp": {
              "start_timestamp": "00:00:13.000",
              "end_timestamp": "00:00:23.000"
            }
          },
          {
            "name": "Tent/garage setup",
            "timestamp": {
              "start_timestamp": "00:00:13.000",
              "end_timestamp": "00:00:23.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Black screen with 'Dakar 2022 Pre-Rally' title card",
            "timestamps": {
              "start_timestamp": "00:00:02.000",
              "end_timestamp": "00:00:04.000"
            }
          },
          {
            "description": "Fast cuts and dynamic editing throughout, showing various angles of the driving and action.",
            "timestamps": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:23.280"
            }
          },
          {
            "description": "Music: Upbeat, energetic music throughout the scene.",
            "timestamps": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:23.280"
            }
          }
        ],
        "mood": {
          "description": "Excited. The fast-paced editing and thrilling driving footage create a sense of excitement and anticipation for the upcoming rally.",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Tim Coronel introduces the rally and location.",
            "timestamp": "00:00:07.000"
          },
          {
            "description": "The scene transitions to nighttime, highlighting the dedication of the team as they continue to work on the car.",
            "timestamp": "00:00:13.000"
          },
          {
            "description": "Testing footage showcases the capabilities of the buggy and the driver's skill.",
            "timestamp": "00:00:23.000"
          }
        ],
        "characterInteraction": [
          {
            "characters": [
              "Tim Coronel"
            ],
            "description": "Tim Coronel interacts with the audience, welcoming them."
          },
          {
            "characters": [
              "Mechanic 1",
              "Mechanic 2"
            ],
            "description": "Mechanics work together on the car."
          }
        ],
        "thematicElements": "Teamwork, preparation, and determination are highlighted as the team gets ready for the challenging Dakar Rally.",
        "contextualRelevance": "The scene sets the stage for the rally, introducing the Cornel brothers and their 'Desert Lion' buggy.",
        "dynamismScore": 0.9,
        "audioVisualCorrelation": 0.8
      },
      {
        "sceneId": 2,
        "title": "Tim Coronel's Impressions",
        "timestamps": {
          "start_timestamp": "00:00:23.320",
          "end_timestamp": "00:01:09.040"
        },
        "cast": [
          "Tim Coronel",
          "Tom Coronel"
        ],
        "activities": [
          {
            "description": "Tim Coronel shares his impressions of the buggy.",
            "timestamp": {
              "start_timestamp": "00:00:50.000",
              "end_timestamp": "00:00:59.000"
            }
          },
          {
            "description": "More driving footage of the blue and orange buggy, including a rollover.",
            "timestamp": {
              "start_timestamp": "00:01:00.000",
              "end_timestamp": "00:01:09.000"
            }
          }
        ],
        "props": [
          {
            "name": "Blue and orange buggy",
            "timestamp": {
              "start_timestamp": "00:00:50.000",
              "end_timestamp": "00:01:09.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut from testing footage to interview with Tim.",
            "timestamps": {
              "start_timestamp": "00:00:50.000",
              "end_timestamp": "00:00:59.000"
            }
          },
          {
            "description": "Fast-paced editing continues during the driving footage.",
            "timestamps": {
              "start_timestamp": "00:01:00.000",
              "end_timestamp": "00:01:09.000"
            }
          }
        ],
        "mood": {
          "description": "Excited, slightly tense. The rollover adds tension, reminding viewers of the risks in rally racing.",
          "keyMoments": [
            {
              "timestamp": "00:01:05.000",
              "changeDescription": "Mood change to tense with the rollover footage"
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "Tim praises the car's performance, showing satisfaction.",
            "timestamp": "00:00:50.000"
          },
          {
            "description": "The rollover shows the terrain challenges and need for skilled driving.",
            "timestamp": "00:01:00.000"
          }
        ],
        "characterInteraction": [
          {
            "characters": [
              "Tim Coronel"
            ],
            "description": "Tim addresses the audience, sharing his thoughts."
          }
        ],
        "thematicElements": "Excitement and danger of the Dakar Rally.",
        "contextualRelevance": "Showcases Tim's positive impressions and highlights the rally's inherent challenges.",
        "dynamismScore": 0.8,
        "audioVisualCorrelation": 0.7
      },
      {
        "sceneId": 3,
        "title": "Tom Coronel's Observations",
        "timestamps": {
          "start_timestamp": "00:01:09.080",
          "end_timestamp": "00:01:58.360"
        },
        "cast": [
          "Tom Coronel"
        ],
        "activities": [
          {
            "description": "Tom Coronel reflects on the previous day's testing.",
            "timestamp": {
              "start_timestamp": "00:01:10.000",
              "end_timestamp": "00:01:33.000"
            }
          },
          {
            "description": "More driving footage, with interior shots of the buggy.",
            "timestamp": {
              "start_timestamp": "00:01:33.000",
              "end_timestamp": "00:01:58.000"
            }
          }
        ],
        "props": [
          {
            "name": "Blue and orange buggy",
            "timestamp": {
              "start_timestamp": "00:01:10.000",
              "end_timestamp": "00:01:58.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut to interview with Tom.",
            "timestamps": {
              "start_timestamp": "00:01:10.000",
              "end_timestamp": "00:01:33.000"
            }
          },
          {
            "description": "Similar editing style to previous scenes, blending interview and driving footage.",
            "timestamps": {
              "start_timestamp": "00:01:10.000",
              "end_timestamp": "00:01:58.000"
            }
          }
        ],
        "mood": {
          "description": "Excited, confident.",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Tom describes Tim pushing the car to its limits with growing confidence.",
            "timestamp": "00:01:10.000"
          },
          {
            "description": "Driving footage shows Tim navigating terrain with skill.",
            "timestamp": "00:01:33.000"
          }
        ],
        "characterInteraction": [
          {
            "characters": [
              "Tom Coronel"
            ],
            "description": "Tom addresses the audience, sharing his observations of Tim's driving."
          }
        ],
        "thematicElements": "Confidence, trust, and skill in driving.",
        "contextualRelevance": "Highlights the growing skill and confidence of the drivers in handling the buggy.",
        "dynamismScore": 0.8,
        "audioVisualCorrelation": 0.8
      },
      {
        "sceneId": 4,
        "title": "Conclusion and Readiness",
        "timestamps": {
          "start_timestamp": "00:01:58.400",
          "end_timestamp": "00:02:03.160"
        },
        "cast": [
          "Tim Coronel",
          "Tom Coronel"
        ],
        "activities": [
          {
            "description": "Tim Coronel talks about the upcoming stage and the team's readiness.",
            "timestamp": {
              "start_timestamp": "00:01:59.000",
              "end_timestamp": "00:02:03.000"
            }
          }
        ],
        "props": [
          {
            "name": "Blue and orange buggy",
            "timestamp": {
              "start_timestamp": "00:01:59.000",
              "end_timestamp": "00:02:03.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut to Tim's interview at the buggy.",
            "timestamps": {
              "start_timestamp": "00:01:59.000",
              "end_timestamp": "00:02:03.000"
            }
          },
          {
            "description": "Final shot focuses on buggy driving away, leaving a trail of dust.",
            "timestamps": {
              "start_timestamp": "00:02:00.000",
              "end_timestamp": "00:02:03.000"
            }
          }
        ],
        "mood": {
          "description": "Excited, determined, confident",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Tim acknowledges the length of the first stage while expressing readiness for the challenge.",
            "timestamp": "00:01:59.000"
          }
        ],
        "characterInteraction": [
          {
            "characters": [
              "Tim Coronel"
            ],
            "description": "Tim interacts with the audience, conveying the team's mindset."
          }
        ],
        "thematicElements": "Preparation, confidence, and adventure.",
        "contextualRelevance": "Concludes the pre-rally preparations, signaling readiness for the race.",
        "dynamismScore": 0.7,
        "audioVisualCorrelation": 0.7
      }
    ],
    "storylines": {
      "description": "The Cornel brothers' preparation and testing of their 'Desert Lion' buggy for the Dakar 2022 rally.",
      "scenes": [
        1,
        2,
        3,
        4
      ],
      "climax": {
        "description": "The final shot of the buggy driving away in scene 4 symbolizes the culmination of preparations and the start of their Dakar adventure.",
        "timestamp": "00:02:03.000"
      }
    },
    "qAndA": [
      {
        "question": "What is the name the Cornel brothers gave to their buggy?",
        "answer": "Desert Lion 247."
      },
      {
        "question": "What color is the buggy driven by the Cornel brothers?",
        "answer": "Blue and orange."
      },
      {
        "question": "What activity did the mechanics do on the car at night?",
        "answer": "One mechanic is working on the engine, while another adjusts the suspension."
      },
      {
        "question": "What did Tom Coronel observe about Tim's driving during the test?",
        "answer": "Tom noted that Tim immediately had confidence in the car and was pushing it to its limits ('flat out')."
      },
      {
        "question": "What is the length of the first stage of the Dakar Rally mentioned in the video?",
        "answer": "19 kilometers."
      }
    ],
    "trimmingSuggestions": [
      {
        "description": "The motorcycle driver segment in Scene 1 could be removed as it doesn't directly contribute to the main story.",
        "timestamps": {
          "start_timestamp": "00:01:58.400",
          "end_timestamp": "00:01:58.400"
        }
      },
      {
        "description": "Tighten some of the interview segments in Scene 3, where Tom's comments could be condensed.",
        "timestamps": {
          "start_timestamp": null,
          "end_timestamp": null
        }
      }
    ],
    "fps": 25.0
  },
  "text_to_speech": "hi guys welcome in saudi arabia with the dakar 2022 of course we are here already for a few days we had a nice travel here of course we did the pcr testing and afterwards we made the car ready and we did some testing yeah the first impression of our century cr6 and we call him the desert lion 247 is really nice i can i can tell you he's strong yesterday was a surprising day especially also because i was sitting next to tim but i could see he directly had the confidence with the car he was really pushing it i was even asking are you flat out now he said flat out mate so full trust with the car you know as a race car driver you always want to go as fast as possible but you need to feel the chassis and that's what we did yeah today some small details on the car but finally it's going to begin tomorrow stage of a 19 kilometer very short but a long day long liaisons but we're ready with our desert lion"
}