File size: 19,561 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
{
  "resolution": "640x360",
  "duration_seconds": 501,
  "content_parent_category": "Hobbies & Interests",
  "content_fine_category": "Fishing",
  "youtube_title": "Fishing and Rescuing a Boat on Crooked River GA",
  "youtube_description": "2-22-21 I fished in Crooked River and caught some sheepshead and 2 nice slot  Redfish. I came across a boat floating unmaned down the river and towed it back to the Crooked River State Park Ramp. Also I caught a tagged redfish by the Georgia DNR.",
  "text_to_speech_word_count": 355,
  "youtube_categories": [
    "People & Blogs"
  ],
  "youtube_tags": [
    "Retirement",
    "Education",
    "teacher",
    "administrator",
    "comedy",
    "funny",
    "retiring",
    "what will I do when I retire",
    "what do retires do",
    "school",
    "school teachers",
    "fishing",
    "Crooked River",
    "Georgia",
    "State Park",
    "Redfish",
    "Red drum",
    "Sheepshead",
    "float rig",
    "boat rescue",
    "CVC",
    "Collard Valley Cooks",
    "Tammy Nichols"
  ],
  "youtube_channel": "NICHOLS RETIREMENT EMPIRE",
  "youtube_view_count": 857,
  "youtube_comment_count": 39,
  "youtube_like_count": 132,
  "youtube_channel_follower_count": 9140,
  "youtube_upload_date": "20210223",
  "youtube_age_limit": 0,
  "content_metadata": {
    "title": "Fishing Adventure and The Lost Boat",
    "description": "A video documenting a fishing trip where two fishermen encounter an unexpected situation with a lost boat and participate in a tagging program.",
    "characterList": [
      {
        "characterId": "c1",
        "name": "Fisherman 1",
        "description": "A man with sunglasses, a bucket hat, and a long sleeve shirt that has two red, white, and blue fish on the back."
      },
      {
        "characterId": "c2",
        "name": "Fisherman 2",
        "description": "A man with sunglasses and a bucket hat. He wears a black jacket with a grey chest panel and black sleeves."
      }
    ],
    "scenes": [
      {
        "sceneId": 1,
        "title": "The Lost Boat Discovery",
        "timestamps": {
          "start_timestamp": "00:00:00.000",
          "end_timestamp": "00:01:14.667"
        },
        "cast": [
          "Fisherman 2"
        ],
        "activities": [
          {
            "description": "Driving a boat.",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:01:14.667"
            }
          },
          {
            "description": "Securing an empty boat to his boat.",
            "timestamp": {
              "start_timestamp": "00:00:54.000",
              "end_timestamp": "00:01:14.667"
            }
          }
        ],
        "props": [
          {
            "name": "Boat, steering wheel.",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:01:14.667"
            }
          },
          {
            "name": "Empty boat",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:01:14.667"
            }
          },
          {
            "name": "Rope",
            "timestamp": {
              "start_timestamp": "00:00:54.000",
              "end_timestamp": "00:01:14.667"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Text overlay: 'I spot an empty boat.'",
            "timestamps": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:09.000"
            }
          },
          {
            "description": "Text overlay: 'Looking for someone in the water.'",
            "timestamps": {
              "start_timestamp": "00:00:10.000",
              "end_timestamp": "00:00:20.000"
            }
          },
          {
            "description": "Text overlay: 'I decide to pull it to the dock.'",
            "timestamps": {
              "start_timestamp": "00:00:21.000",
              "end_timestamp": "00:01:14.667"
            }
          },
          {
            "description": "Text overlay: 'There was a line already attached to the bow.'",
            "timestamps": {
              "start_timestamp": "00:00:58.000",
              "end_timestamp": "00:01:14.667"
            }
          }
        ],
        "mood": {
          "description": "Curious, concerned, helpful.",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Fisherman 2 notices an empty boat drifting on the river.",
            "timestamp": "00:00:00.000"
          },
          {
            "description": "He searches for a person in the water, concerned someone may have fallen overboard.",
            "timestamp": "00:00:10.000"
          },
          {
            "description": "Deciding it's best to secure the boat, he maneuvers his boat closer.",
            "timestamp": "00:00:21.000"
          },
          {
            "description": "He notices a line already attached to the empty boat's bow, suggesting it may have come loose from a dock.",
            "timestamp": "00:00:58.000"
          },
          {
            "description": "He successfully secures the empty boat.",
            "timestamp": "00:01:14.667"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Safety on the water, responsibility, helping others.",
        "contextualRelevance": "The discovery of an empty boat creates a situation that requires investigation, leading to a helpful and slightly tense mood.",
        "dynamismScore": 0.5,
        "audioVisualCorrelation": 0.5
      },
      {
        "sceneId": 2,
        "title": "Communication and Resolution",
        "timestamps": {
          "start_timestamp": "00:01:14.700",
          "end_timestamp": "00:02:18.933"
        },
        "cast": [
          "Fisherman 2"
        ],
        "activities": [
          {
            "description": "Driving a boat, talking to the camera, drinking from a thermos.",
            "timestamp": {
              "start_timestamp": "00:01:16.000",
              "end_timestamp": "00:02:18.000"
            }
          }
        ],
        "props": [
          {
            "name": "Boat, steering wheel.",
            "timestamp": {
              "start_timestamp": "00:01:16.000",
              "end_timestamp": "00:02:18.000"
            }
          },
          {
            "name": "Empty boat (towed behind)",
            "timestamp": {
              "start_timestamp": "00:01:16.000",
              "end_timestamp": "00:02:18.000"
            }
          },
          {
            "name": "Thermos",
            "timestamp": {
              "start_timestamp": "00:01:16.000",
              "end_timestamp": "00:02:18.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Text overlay: 'Sorry about the sound it was windy'",
            "timestamps": {
              "start_timestamp": "00:01:16.000",
              "end_timestamp": "00:02:18.000"
            }
          },
          {
            "description": "Text overlay: 'Thank God the owner was safe at the dock'",
            "timestamps": {
              "start_timestamp": "00:01:55.000",
              "end_timestamp": "00:02:18.000"
            }
          }
        ],
        "mood": {
          "description": "Relieved, content, chatty",
          "keyMoments": [
            {
              "timestamp": "00:01:16.000",
              "changeDescription": "Shift of mood from concern to casual"
            },
            {
              "timestamp": "00:01:55.000",
              "changeDescription": "Relief and contentment upon discovering the boat owner is safe."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "Fisherman 2 apologizes for the wind noise.",
            "timestamp": "00:01:16.000"
          },
          {
            "description": "He explains he found the empty boat drifting and tried contacting the bait and tackle shop.",
            "timestamp": "00:01:20.000"
          },
          {
            "description": "He expresses uncertainty about whether someone fell overboard but mentions another fisherman saw the boat drifting empty.",
            "timestamp": "00:01:31.000"
          },
          {
            "description": "He suggests boats can sometimes come loose from docks.",
            "timestamp": "00:01:37.000"
          },
          {
            "description": "He reiterates he's going to try contacting the bait and tackle shop again.",
            "timestamp": "00:01:47.000"
          },
          {
            "description": "He announces the good news: the boat's owner is safe at the dock.",
            "timestamp": "00:01:55.000"
          },
          {
            "description": "He advises viewers to tie their boats securely due to the strong current.",
            "timestamp": "00:02:09.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Boating safety, community, communication.",
        "contextualRelevance": "Fisherman 2 discovers the owner of the boat is safe, which relieves the tension from the previous scene.",
        "dynamismScore": 0.3,
        "audioVisualCorrelation": 1.0
      },
      {
        "sceneId": 3,
        "title": "Fishing and Tagged Red Drum",
        "timestamps": {
          "start_timestamp": "00:02:18.967",
          "end_timestamp": "00:07:50.733"
        },
        "cast": [
          "Fisherman 1"
        ],
        "activities": [
          {
            "description": "Fishing from a boat, catching and releasing fish, driving a boat.",
            "timestamp": {
              "start_timestamp": "00:02:19.000",
              "end_timestamp": "00:07:50.000"
            }
          }
        ],
        "props": [
          {
            "name": "Boat, fishing rod, fishing net, bobber.",
            "timestamp": {
              "start_timestamp": "00:02:19.000",
              "end_timestamp": "00:07:50.000"
            }
          },
          {
            "name": "Small Sheepshead fish",
            "timestamp": {
              "start_timestamp": "00:02:33.000",
              "end_timestamp": "00:02:52.000"
            }
          },
          {
            "name": "Small Sheepshead fish",
            "timestamp": {
              "start_timestamp": "00:03:03.000",
              "end_timestamp": "00:03:19.000"
            }
          },
          {
            "name": "Tagged Red Drum fish",
            "timestamp": {
              "start_timestamp": "00:05:14.000",
              "end_timestamp": "00:06:40.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Text overlay: 'Now to the fishing.'",
            "timestamps": {
              "start_timestamp": "00:02:19.000",
              "end_timestamp": "00:02:33.000"
            }
          }
        ],
        "mood": {
          "description": "Calm, relaxed, focused.",
          "keyMoments": [
            {
              "timestamp": "00:06:40.000",
              "changeDescription": "Anticipation of rain as the sky darkens."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "Fisherman 1 begins fishing.",
            "timestamp": "00:02:19.000"
          },
          {
            "description": "He catches a small sheepshead fish, deems it too small, and releases it.",
            "timestamp": "00:02:33.000"
          },
          {
            "description": "He catches another small sheepshead, again releasing it due to its size.",
            "timestamp": "00:03:03.000"
          },
          {
            "description": "He catches a red drum fish, notes it's tagged, and explains the tagging program and the potential $100 reward.",
            "timestamp": "00:05:14.000"
          },
          {
            "description": "He removes the yellow tag and releases the fish.",
            "timestamp": "00:05:36.000"
          },
          {
            "description": "The scene shifts to show Fisherman 1 driving the boat as clouds gather, suggesting they're heading home due to impending rain.",
            "timestamp": "00:06:40.000"
          },
          {
            "description": "Fisherman 2 takes over driving, mentions the approaching clouds and rain, and decides to head back home.",
            "timestamp": "00:07:16.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Patience, respect for nature, fishing regulations.",
        "contextualRelevance": "After resolving the situation with the loose boat, the focus shifts to a more peaceful and enjoyable activity.",
        "dynamismScore": 0.4,
        "audioVisualCorrelation": 0.7
      },
      {
        "sceneId": 4,
        "title": "Reward Sign and Tagging Program",
        "timestamps": {
          "start_timestamp": "00:07:50.767",
          "end_timestamp": "00:08:20.267"
        },
        "cast": [
          "Fisherman 2"
        ],
        "activities": [
          {
            "description": "Walking through a parking lot towards his truck.",
            "timestamp": {
              "start_timestamp": "00:07:51.000",
              "end_timestamp": "00:08:16.000"
            }
          }
        ],
        "props": [
          {
            "name": "Parking lot, boat trailer, pickup truck.",
            "timestamp": {
              "start_timestamp": "00:07:51.000",
              "end_timestamp": "00:08:16.000"
            }
          },
          {
            "name": "Sign with red drum tagging program information",
            "timestamp": {
              "start_timestamp": "00:07:51.000",
              "end_timestamp": "00:08:16.000"
            }
          },
          {
            "name": "Yellow fish tag.",
            "timestamp": {
              "start_timestamp": "00:08:13.000",
              "end_timestamp": "00:08:16.000"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Text overlay: '$100 Reward???'",
            "timestamps": {
              "start_timestamp": "00:07:51.000",
              "end_timestamp": "00:08:16.000"
            }
          }
        ],
        "mood": {
          "description": "Amused, slightly disappointed.",
          "keyMoments": [
            {
              "timestamp": "00:08:15.000",
              "changeDescription": "Anticipation followed by disappointment with the tag color."
            }
          ]
        },
        "narrativeProgression": [
          {
            "description": "Fisherman 2 enters the parking lot.",
            "timestamp": "00:07:51.000"
          },
          {
            "description": "He points out a sign explaining the $100 reward for red drum with pink tags.",
            "timestamp": "00:07:52.000"
          },
          {
            "description": "He shows the yellow tag he removed from the fish.",
            "timestamp": "00:08:13.000"
          },
          {
            "description": "He expresses mild disappointment but notes it's still good information for the tagging program.",
            "timestamp": "00:08:16.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Expectation vs. reality, the value of scientific data.",
        "contextualRelevance": "The discovery that the tag isn't the rewarded color brings a sense of lighthearted disappointment.",
        "dynamismScore": 0.2,
        "audioVisualCorrelation": 1.0
      }
    ],
    "storylines": {
      "description": "This video follows a fishing trip narrative that combines unexpected events with fishing activities, emphasizing boating safety and conservation efforts.",
      "scenes": [
        1,
        2,
        3,
        4
      ],
      "climax": {
        "description": "The narrative peaks at two main points - when Fisherman 2 finds the boat owner safe, and when Fisherman 1 catches the tagged red drum.",
        "timestamp": "00:01:55.000"
      }
    },
    "qAndA": [
      {
        "question": "Why was Fisherman 2 concerned when he found the empty boat?",
        "answer": "He was worried that someone may have been on board and fallen overboard."
      },
      {
        "question": "What type of fish was the first one that Fisherman 1 caught?",
        "answer": "A sheepshead fish."
      },
      {
        "question": "What color was the tag on the red drum that Fisherman 1 caught?",
        "answer": "Yellow."
      },
      {
        "question": "How did the mood change in Scene 4 when Fisherman 2 realized the tag was yellow?",
        "answer": "The mood shifted from anticipation to slight disappointment."
      },
      {
        "question": "What message does the video convey about finding a boat with no one in it?",
        "answer": "The video emphasizes the importance of checking for a person in the water and attempting to find the owner, prioritizing safety and responsibility on the water."
      }
    ],
    "trimmingSuggestions": [
      {
        "description": "This segment could be significantly shortened. Fisherman 2's explanations could be condensed, focusing on the key points.",
        "timestamps": {
          "start_timestamp": "00:07:50.767",
          "end_timestamp": "00:07:50.767"
        }
      },
      {
        "description": "The fishing sequences could be trimmed to show only the highlights, such as the catches and releases, rather than extended periods of casting and reeling.",
        "timestamps": {
          "start_timestamp": null,
          "end_timestamp": null
        }
      }
    ],
    "fps": 30.0
  },
  "text_to_speech": "got a boat with nobody in it so all right guys i don't know who this belongs to the boat out here was just floating down the river i tried to call the bait and tackle place i'm going to try to call him again i don't know if somebody was in this boat and fell out i don't see anybody the guy that was over here fishing on the bank said that uh the boat just floated by with nobody on it so sometimes boats will get loose uh from people's docks and stuff like that i'm hoping that's all this is i'm gonna try to call the tackle place again and get this boat up here to the dock at north star okay i finally got hold of somebody i had to call two or three times um but the guy is at the dock that the boat belongs to so [Music] i guess he just sometimes if you don't tie him up good this current is so strong it will just take your boat and sweep it down the river uh and out to sea so only the second fish today slow first one was so little is a little bitty trout not a big sheep just not big enough to keep guys a little better but still so not only is it a nice red but it's tagged so i can cut this tag off and call in and i think you get a hundred dollars or something like that if you call in a tag it may not be a hundred dollars but i'm gonna cut it off when's my whistle that redfish is trying to blow my whistle all right so let's cut this tag off there it is time go so well that's not the best way to end today we gotta get one more well here comes the uh clouds and the rain's gonna be coming in right behind it let's head to the house yeah look here guys 100 reward for a pink tag my tag is yellow oh well that's good information for him anyway"
}