File size: 20,698 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
{
  "resolution": "640x360",
  "duration_seconds": 385,
  "content_parent_category": "Lifestyle",
  "content_fine_category": "Food Reviews",
  "youtube_title": "Eating Lasagna at One of Rome's Best Local Restaurants",
  "youtube_description": "In this episode of Tasting Travel, We are in Rome Italy first we go and take a look at Michelangelo Bounoroti's world-famous statue of Moses. then we head over to Trattoria Pizzeria Luzzi to experience their fried cod filets and their lasagna.  https://www.trattorialuzzi.it/\n\n\nTastingtravel.online\n\nSupport my Channel and Buy me a coffee\nhttps://www.buymeacoffee.com/Travelcoffeeguy\n\nPurchase my book!\nhttps://amzn.to/2tXVY4c\n\nAffilliate links\n\nWant to get certified to teach English as a 2nd Language?\nshorturl.at/dfsB3\n\nTravel Nomad/Covid Insurance\nSafety Wing.      https://bit.ly/3A2m16k\n\nNord VPN\nhttps://bit.ly/3ld61u4\n\n$55 off first booking through AirBNB\nhttps://www.airbnb.com/c/tonyh1014?currency=USD\n\nTubebuddy\nhttps://www.tubebuddy.com/tastingtravel\n\nVidIQ\nhttps://vidiq.com/tastingtravel\n\nRoyalty-Free Music and video clips\n\nEpidemic Sound 30 day free trial\nhttps://www.epidemicsound.com/referral/psaykr/\n\nArtlist.io 2 month free trial\nhttps://artlist.io/Anthony-1100230\n\nSoundstripe 20% off\nhttps://www.soundstripe.com/join?id=PojY7p2e\n\nTravel Nomad/Covid Insurance\nSafety Wing.      https://bit.ly/3A2m16k\n\n2 Free Stocks with WeBull Investing App\nhttps://bit.ly/3BkogDu\n\n\nSubscribe to the Channel?\nhttp://www.youtube.com/c/TravelingCoffeeGuy/sub_confirmation=1 food review travel destinations\n\nEating Lasagna at One of Rome's Best Local Restaurants\n Rome vlog Michelangelo Moses travel vlog",
  "text_to_speech_word_count": 625,
  "youtube_categories": [
    "Travel & Events"
  ],
  "youtube_tags": [
    "Travel",
    "Food Review",
    "Tasting Travel",
    "Travel Destinations",
    "travel guide",
    "Food Travel Guide",
    "michelangelo moses",
    "Trattoria Pizzeria Luzzi",
    "lasagna",
    "Roman Lasagna",
    "Roman Cod Filet",
    "Pizzeria Luzzi",
    "Rome",
    "Rome Italy",
    "Rome food vlog",
    "rome food",
    "rome travel",
    "italy",
    "rome food tour",
    "rome street food",
    "rome food guide",
    "best food in rome",
    "best lasagna",
    "italian food",
    "italian food tourism",
    "roma",
    "roman food",
    "food",
    "italian",
    "italian street food",
    "italy travel guide",
    "rome vlog",
    "travel vlog"
  ],
  "youtube_channel": "Tasting Travel",
  "youtube_view_count": 6095,
  "youtube_comment_count": 2,
  "youtube_like_count": 277,
  "youtube_channel_follower_count": 2130,
  "youtube_upload_date": "20220824",
  "youtube_age_limit": 0,
  "content_metadata": {
    "title": "Tasting Travel - Rome Italy",
    "description": "An exploration of local Roman food with humorous and cultural insights.",
    "characterList": [
      {
        "characterId": "1",
        "name": "Traveler",
        "description": "An overweight man with short blonde hair, a black baseball cap, a black Hard Rock Cafe T-shirt and a black puffer vest."
      },
      {
        "characterId": "2",
        "name": "Michelangelo's Moses",
        "description": "A white marble statue depicting Moses sitting on a throne."
      },
      {
        "characterId": "3",
        "name": "Jesus",
        "description": "A man with long blonde hair and a beard, wearing a crown of thorns, a green robe and a red scarf."
      }
    ],
    "scenes": [
      {
        "sceneId": 1,
        "title": "Introduction to Rome",
        "timestamps": {
          "start_timestamp": "00:00:00.000",
          "end_timestamp": "00:00:20.954"
        },
        "cast": [
          "Traveler"
        ],
        "activities": [
          {
            "description": "Traveler talks about visiting Rome and eating food.",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:18.986"
            }
          }
        ],
        "props": [
          {
            "name": "Wooden building, trees, airplane logo on Traveler's T-shirt",
            "timestamp": {
              "start_timestamp": "00:00:00.000",
              "end_timestamp": "00:00:18.986"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut to still image of cod fillets.",
            "timestamps": {
              "start_timestamp": "00:00:04.004",
              "end_timestamp": "00:00:05.005"
            }
          },
          {
            "description": "Cut to still image of lasagna.",
            "timestamps": {
              "start_timestamp": "00:00:07.007",
              "end_timestamp": "00:00:08.008"
            }
          }
        ],
        "mood": {
          "description": "Excited",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Introduction to the video, the Traveler mentions visiting Rome and eating Cod fillets and lasagna.",
            "timestamp": "00:00:00.000"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Food, travel, anticipation.",
        "contextualRelevance": "None",
        "dynamismScore": 0.6,
        "audioVisualCorrelation": 1.0
      },
      {
        "sceneId": 2,
        "title": "Michelangelo's Statue of Moses",
        "timestamps": {
          "start_timestamp": "00:00:20.988",
          "end_timestamp": "00:01:01.228"
        },
        "cast": [
          "Michelangelo's Moses"
        ],
        "activities": [],
        "props": [
          {
            "name": "Michelangelo's statue of Moses, tablets of the Ten Commandments, throne",
            "timestamp": {
              "start_timestamp": "00:00:20.988",
              "end_timestamp": "00:01:01.228"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Panning shot of Michelangelo's statue of Moses.",
            "timestamps": {
              "start_timestamp": "00:00:20.988",
              "end_timestamp": "00:01:01.228"
            }
          }
        ],
        "mood": {
          "description": "Curious",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "The narrator provides information about Michelangelo's statue of Moses.",
            "timestamp": "00:00:20.988"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Art, history, religion.",
        "contextualRelevance": "The narrator explains the significance of the 'horns' on Moses' head, debunking a common misunderstanding.",
        "dynamismScore": 0.3,
        "audioVisualCorrelation": 1.0
      },
      {
        "sceneId": 3,
        "title": "Tasting Cod Fillets",
        "timestamps": {
          "start_timestamp": "00:01:01.261",
          "end_timestamp": "00:02:42.729"
        },
        "cast": [
          "Traveler"
        ],
        "activities": [
          {
            "description": "Traveler talks about the pizzeria.",
            "timestamp": {
              "start_timestamp": "00:01:02.996",
              "end_timestamp": "00:01:48.008"
            }
          },
          {
            "description": "Shows cod fillets.",
            "timestamp": {
              "start_timestamp": "00:01:49.009",
              "end_timestamp": "00:02:08.996"
            }
          },
          {
            "description": "Eats cod fillets.",
            "timestamp": {
              "start_timestamp": "00:02:09.997",
              "end_timestamp": "00:02:41.995"
            }
          }
        ],
        "props": [
          {
            "name": "Restaurant menu, Colosseum, cod fillets, lasagna",
            "timestamp": {
              "start_timestamp": "00:01:02.996",
              "end_timestamp": "00:01:48.008"
            }
          },
          {
            "name": "Plate of cod fillets",
            "timestamp": {
              "start_timestamp": "00:01:49.009",
              "end_timestamp": "00:02:08.996"
            }
          },
          {
            "name": "Cod fillet in Traveler's hand",
            "timestamp": {
              "start_timestamp": "00:02:09.997",
              "end_timestamp": "00:02:41.995"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut to a selfie video of the Traveler at a pizzeria.",
            "timestamps": {
              "start_timestamp": "00:01:02.996",
              "end_timestamp": "00:01:48.008"
            }
          },
          {
            "description": "Cut to still image of the Colosseum.",
            "timestamps": {
              "start_timestamp": "00:01:29.990",
              "end_timestamp": "00:01:30.991"
            }
          },
          {
            "description": "€2.50 text overlay on top of cod fillets.",
            "timestamps": {
              "start_timestamp": "00:01:42.002",
              "end_timestamp": "00:01:42.002"
            }
          },
          {
            "description": "€6.00 text overlay on top of the Traveler.",
            "timestamps": {
              "start_timestamp": "00:01:46.006",
              "end_timestamp": "00:01:46.006"
            }
          },
          {
            "description": "Cut to a close-up video of the cod fillets.",
            "timestamps": {
              "start_timestamp": "00:01:48.008",
              "end_timestamp": "00:01:49.009"
            }
          },
          {
            "description": "Cut back to a selfie video of the Traveler eating.",
            "timestamps": {
              "start_timestamp": "00:02:09.997",
              "end_timestamp": "00:02:41.995"
            }
          }
        ],
        "mood": {
          "description": "Happy",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Traveler describes the pizzeria he is at.",
            "timestamp": "00:01:02.996"
          },
          {
            "description": "Traveler shows and describes the cod fillets.",
            "timestamp": "00:01:49.009"
          },
          {
            "description": "Traveler eats and further describes the cod fillets.",
            "timestamp": "00:02:09.997"
          }
        ],
        "characterInteraction": [
          {
            "characters": [
              "Traveler"
            ],
            "description": "Traveler interacts with a waiter off-screen."
          }
        ],
        "thematicElements": "Food, local experience, affordable prices.",
        "contextualRelevance": "Traveler notes that the pizzeria is busy and filled with locals.",
        "dynamismScore": 0.7,
        "audioVisualCorrelation": 1.0
      },
      {
        "sceneId": 4,
        "title": "Humorous Interlude with Jesus",
        "timestamps": {
          "start_timestamp": "00:02:42.763",
          "end_timestamp": "00:04:06.046"
        },
        "cast": [
          "Jesus"
        ],
        "activities": [
          {
            "description": "Jesus speaks to the viewer.",
            "timestamp": {
              "start_timestamp": "00:02:42.763",
              "end_timestamp": "00:04:05.011"
            }
          }
        ],
        "props": [
          {
            "name": "Clouds in the background",
            "timestamp": {
              "start_timestamp": "00:02:42.763",
              "end_timestamp": "00:04:05.011"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut to a green screen video of Jesus against a cloudy sky.",
            "timestamps": {
              "start_timestamp": "00:02:42.763",
              "end_timestamp": "00:04:05.011"
            }
          }
        ],
        "mood": {
          "description": "Happy",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Jesus encourages viewers to subscribe to the Tasting Travel channel.",
            "timestamp": "00:02:42.763"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Humor, religion, self-promotion.",
        "contextualRelevance": "None.",
        "dynamismScore": 0.4,
        "audioVisualCorrelation": 1.0
      },
      {
        "sceneId": 5,
        "title": "Enjoying Lasagna",
        "timestamps": {
          "start_timestamp": "00:04:06.079",
          "end_timestamp": "00:06:25.218"
        },
        "cast": [
          "Traveler"
        ],
        "activities": [
          {
            "description": "Shows lasagna.",
            "timestamp": {
              "start_timestamp": "00:04:06.079",
              "end_timestamp": "00:04:19.993"
            }
          },
          {
            "description": "Eats lasagna.",
            "timestamp": {
              "start_timestamp": "00:04:19.993",
              "end_timestamp": "00:06:15.008"
            }
          },
          {
            "description": "Outro sequence.",
            "timestamp": {
              "start_timestamp": "00:06:15.008",
              "end_timestamp": "00:06:23.016"
            }
          }
        ],
        "props": [
          {
            "name": "Plate of lasagna",
            "timestamp": {
              "start_timestamp": "00:04:06.079",
              "end_timestamp": "00:04:19.993"
            }
          },
          {
            "name": "Lasagna on a fork",
            "timestamp": {
              "start_timestamp": "00:04:19.993",
              "end_timestamp": "00:06:15.008"
            }
          }
        ],
        "videoEditingDetails": [
          {
            "description": "Cut back to a selfie video of the Traveler and a close-up video of lasagna.",
            "timestamps": {
              "start_timestamp": "00:04:06.079",
              "end_timestamp": "00:04:19.993"
            }
          },
          {
            "description": "Cut to a selfie video of the Traveler eating lasagna.",
            "timestamps": {
              "start_timestamp": "00:04:19.993",
              "end_timestamp": "00:06:15.008"
            }
          },
          {
            "description": "Cut to the outro sequence with animation and music.",
            "timestamps": {
              "start_timestamp": "00:06:15.008",
              "end_timestamp": "00:06:23.016"
            }
          }
        ],
        "mood": {
          "description": "Happy, Content",
          "keyMoments": []
        },
        "narrativeProgression": [
          {
            "description": "Traveler shows and describes the lasagna.",
            "timestamp": "00:04:06.079"
          },
          {
            "description": "Traveler eats and further describes the lasagna.",
            "timestamp": "00:04:19.993"
          },
          {
            "description": "Traveler ends the video with a call to action.",
            "timestamp": "00:06:15.008"
          }
        ],
        "characterInteraction": [],
        "thematicElements": "Food, satisfaction, local experience.",
        "contextualRelevance": "None",
        "dynamismScore": 0.7,
        "audioVisualCorrelation": 1.0
      }
    ],
    "storylines": {
      "description": "The video is an engaging and lighthearted exploration of local Roman food, interspersed with a brief educational segment on Michelangelo's Moses.",
      "scenes": [
        1,
        2,
        3,
        4,
        5
      ],
      "climax": {
        "description": "The Traveler enjoys and describes the lasagna.",
        "timestamp": "00:04:19.993"
      }
    },
    "qAndA": [
      {
        "question": "What color is the tablecloth at the pizzeria?",
        "answer": "Red and white checkered."
      },
      {
        "question": "What historical misconception about Michelangelo's Moses does the narrator debunk?",
        "answer": "That the two protrusions on his head are devil horns, when they actually symbolize divine light."
      },
      {
        "question": "What does the traveler think is the only thing missing from the lasagna?",
        "answer": "A little more black pepper."
      },
      {
        "question": "What is the mood of the scene where the Traveler eats cod fillets?",
        "answer": "Happy and content. He clearly enjoys the taste and comments on the excellent value for the price."
      },
      {
        "question": "What is Jesus' main purpose in his appearance in the video?",
        "answer": "To promote the Tasting Travel YouTube channel and encourage viewers to like, subscribe, and click the notification bell."
      }
    ],
    "trimmingSuggestions": [
      {
        "description": "Scene 2 could be shortened by focusing on the most visually interesting aspects of the statue and condensing the narration.",
        "timestamps": {
          "start_timestamp": null,
          "end_timestamp": null
        }
      },
      {
        "description": "Scene 4 could be slightly trimmed for a faster pace.",
        "timestamps": {
          "start_timestamp": null,
          "end_timestamp": null
        }
      }
    ],
    "fps": 29.97002997002997
  },
  "text_to_speech": "what's up travelers in this video we're in rome italy and we're gonna go check out some amazing roman cod fillets and some fantastic lasagna but before that we're gonna go over to check out michelangelo's statue of moses this masterpiece by michelangelo boonerati depicts moses sitting on a throne with one arm resting on the tablets of the ten commandments while his other hand holds his beard as he looks over his followers with intense anger in his eyes when he returns from mount sinai to see them worshipping the false idol bowel many people notice that moses appears to have devil horns however michelangelo carved these in to signify the divine light exuding from moses that exodus tales about when he returned from the top of the mountain this sculpture is a master class and attention to detail to the point that he exposed a tendon in his right arm that only shows itself amongst the human physique when we raise our pinky finger like we do when drinking from a tiny tea cup i am at pizzeria here in rome italy this place has been open since 1945 it's about a quarter mile away from the coliseum just ordered an appetizer it was a cod fillet and then i also got lasagna and meat sauce cod appetizers is only two and a half euros lasagna is only six euros this place is insane busy and it's mostly locals here so you know it's a good spot the prices are just they're great prices anybody can afford these so we've got our cod fillets here [Music] beautiful golden brown smells that's amazing pretty good piece of fried fish [Music] 250 for this they're nice and crispy on the outside on the inside it's kind of doughy and it touches the fish really awesome texture [Music] hello mortals it's me your favorite lord and savior jesus and i just wanted to take a short break from my very very busy schedule of uh well you know miracles and other jesus duties up here to have a little divine intervention with you you see i wanted to tell you about a glorious youtube channel called tasting travel yeah it's pretty awesome i mean you can trust me i am like the most reputable person well ever so there's that so be sure to give them a like and subscribe and also ring that notification bell so an angel can get its wings now i'd love to stick around and rain down blessings but i'm kind of like the busiest messiah ever and i need to get back to these mansions because they're definitely not going to build themselves so you stay blessed and don't do anything i wouldn't do amen [Music] and we got this beautiful looking lasagna we just gotta dig right in this is amazing [Music] that is so good [Music] it's a lot lighter than you would expect it to be but these these lasagna noodles it's like [Music] delicious i can't believe this is only six euros the only thing that they could have done to make this better is add a little bit more black pepper and then they hit it out of the ballpark but if they would have added the black pepper it would have been a gram of salami if you're coming to rome come to pizza real easy just try their entire menu i'm looking at the stuff around me and it just all looks amazing and it's all really cheap it's [Music] please like it and then subscribe to the channel and hit that notification bell so you'll get a notification whenever i upload a new video and as always eat great food [Music] you"
}