Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 37,320 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 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 |
{
"resolution": "640x360",
"duration_seconds": 570,
"content_parent_category": "Automotive",
"content_fine_category": "Off-Roading",
"youtube_title": "WE TOOK OUR CAN-AM TO A RUTA **RACING** (OffRoading)",
"youtube_description": "WE TOOK OUR CAN-AM TO A RUTA **RACING** (OffRoading)\n\nWelcome back to another video guys! In todays video we took out our CanAm for a ruta. We hope you guys enjoyed this vlog. Thank you guys for watching Pablezyy & Steph gang! Make sure to DESTROY the LIKE button! And also SUBSCRIBE to our channel! Turn On the NOTIFICATION BELL so you can be alerted every time we post up a NEW Video! Join Our WORLD!!!\n\nNew videos DROPPING every Monday's & Thursday's!!!\n\nSTALK US ;)\n\nFOLLOW all our social media accounts for FREE GIVEAWAYS!\n\nPablezyy & Steph IG: https://instagram.com/pablezyy_stephi...\n\nSteph IG: https://instagram.com/miss.stephanee?...\n\nSteph TikTok: https://vm.tiktok.com/ZMR7v9JKQ/\n\nPablezyy IG: https://instagram.com/pablezyy?utm_me...\n\nPablezyy TikTok: https://vm.tiktok.com/ZMR77TEn4/\n\n#CanAm #Rzrs #OffRoading",
"text_to_speech_word_count": 335,
"youtube_categories": [
"Entertainment"
],
"youtube_tags": [
"I TOOK MY CAN-AM X3 TO THE SNOW!! *Snow Ruta*",
"ToyCo Rutas in New Mexico",
"BARSTOW TO LAS VEGAS TAKEOVER 2020 (RUTEANDO)",
"Ruta en los Can-Am y RZRs - Down N Dirty Yearly Run",
"Ruta en Can am's y Rzr ( La Romurosa - San Quintin ) 500 Mile Run!",
"Hundí mi Can-Am x3 por accidente",
"EL AGUA NOS LLEGO AL CUELLO // LA RUTA DEL RIO EN CAN AM X3 // Vlog 02",
"STREETLEGAL CAN-AM X3 IN THE SNOW!!",
"0:02 / 10:07 RUTA HACIA LA ISLA LAS COPAS/( ASI VA QUEDANDO MI CAN-AM X3)/ UNGSON JR/ (PARTE 1/2)"
],
"youtube_channel": "Pablezyy & Steph",
"youtube_view_count": 18320,
"youtube_comment_count": 64,
"youtube_like_count": 435,
"youtube_channel_follower_count": 87700,
"youtube_upload_date": "20220517",
"youtube_age_limit": 0,
"content_metadata": {
"title": "Off-Road Adventure with Pablo and Friends",
"description": "A thrilling off-roading adventure with Pablo and friends, featuring exciting races, scenic views, and glimpses into Pablo and Steph's relationship.",
"characterList": [
{
"characterId": "1",
"name": "Pablo",
"description": "A man with a beard, wearing a cap and a green camouflage shirt. He has a diamond necklace and a pendant with a woman's face."
},
{
"characterId": "2",
"name": "Steph",
"description": "A woman with long dark hair. She wears various outfits, including a blue jumpsuit, a black jumpsuit, and a leopard print dress."
},
{
"characterId": "3",
"name": "Toxica",
"description": "A young woman with long dark hair, wearing a black jumpsuit."
},
{
"characterId": "4",
"name": "Little Boy",
"description": "A young boy with brown hair wearing a white shirt and blue jeans."
},
{
"characterId": "5",
"name": "Little Girl",
"description": "A young girl wearing a white shirt, pink pants, and beige boots."
},
{
"characterId": "6",
"name": "Jimbolls",
"description": "A man with a beard and a white cap wearing a blue and red motocross jersey and white shorts."
},
{
"characterId": "7",
"name": "Able",
"description": "A man with short dark hair wearing a black and green Fox motocross jersey."
},
{
"characterId": "8",
"name": "Jesse",
"description": "A man with a beard wearing a beige and black Fox motocross jersey."
},
{
"characterId": "9",
"name": "David Mac",
"description": "A man with a beard and dark hair wearing a black shirt and black goggles, sitting in a blue off-road vehicle."
}
],
"scenes": [
{
"sceneId": 1,
"title": "Off-road Introduction",
"timestamps": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
},
"cast": [
"Pablo",
"Steph",
"Toxica",
"Little Boy",
"Little Girl",
"Jimbolls",
"Able",
"Jesse",
"David Mac"
],
"activities": [
{
"description": "Off-road vehicles driving and doing donuts.",
"timestamp": {
"start_timestamp": "00:00:02.002",
"end_timestamp": "00:00:04.004"
}
},
{
"description": "Steph and Toxica dancing with a man.",
"timestamp": {
"start_timestamp": "00:00:04.004",
"end_timestamp": "00:00:06.006"
}
},
{
"description": "Off-road vehicles driving in a desert terrain.",
"timestamp": {
"start_timestamp": "00:00:06.006",
"end_timestamp": "00:00:13.013"
}
},
{
"description": "Off-road vehicles racing.",
"timestamp": {
"start_timestamp": "00:00:13.013",
"end_timestamp": "00:00:13.013"
}
}
],
"props": [
{
"name": "Off-road vehicles",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
}
},
{
"name": "Dirt bikes",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
}
},
{
"name": "A white pickup truck",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
}
},
{
"name": "Flags (US and Mexican)",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
}
},
{
"name": "A tree",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
}
}
],
"videoEditingDetails": [
{
"description": "Fast cuts, slow motion, title card (\"Ruta Vlog\") overlaid on the video, music overlay.",
"timestamps": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:14.014"
}
},
{
"description": "Transition - abrupt cut to black screen with title card (\"Pablezyy & Steph\").",
"timestamps": {
"start_timestamp": "00:00:14.014",
"end_timestamp": "00:00:14.014"
}
}
],
"mood": {
"description": "Excited",
"keyMoments": [
{
"timestamp": "00:00:00.000",
"changeDescription": "Excited mood set by fast-paced action."
},
{
"timestamp": "00:00:14.014",
"changeDescription": "Transition to neutral mood with cut to black screen."
}
]
},
"narrativeProgression": [
{
"description": "Introduction to the video, showcasing the off-roading activity and the characters involved.",
"timestamp": "00:00:00.000"
},
{
"description": "Showcases the off-road vehicles and their capabilities.",
"timestamp": "00:00:00.000"
},
{
"description": "Highlights the location and the participants.",
"timestamp": "00:00:06.006"
},
{
"description": "Teases the off-road race to come.",
"timestamp": "00:00:13.013"
}
],
"characterInteraction": [
{
"characters": [
"Pablo",
"Steph",
"Toxica",
"Little Boy",
"Little Girl",
"Jimbolls",
"Able",
"Jesse",
"David Mac"
],
"description": "Characters are seen interacting with each other, celebrating, and preparing for the off-road activities."
}
],
"thematicElements": "Off-roading, adventure, excitement.",
"contextualRelevance": "Introduction to the off-road adventure and characters.",
"dynamismScore": 1.0,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 2,
"title": "Pablo and Steph's Lifestyle",
"timestamps": {
"start_timestamp": "00:00:14.047",
"end_timestamp": "00:00:44.645"
},
"cast": [
"Pablo",
"Steph"
],
"activities": [
{
"description": "Walking into a building.",
"timestamp": {
"start_timestamp": "00:00:16.016",
"end_timestamp": "00:00:17.985"
}
},
{
"description": "Playing cornhole on a rooftop.",
"timestamp": {
"start_timestamp": "00:00:17.985",
"end_timestamp": "00:00:22.990"
}
},
{
"description": "Steph being lifted and kissed by Pablo.",
"timestamp": {
"start_timestamp": "00:00:22.990",
"end_timestamp": "00:00:24.992"
}
},
{
"description": "Playing pool and kissing.",
"timestamp": {
"start_timestamp": "00:00:24.992",
"end_timestamp": "00:00:27.995"
}
},
{
"description": "Hugging on a rooftop, walking into a room, adjusting jewelry.",
"timestamp": {
"start_timestamp": "00:00:27.995",
"end_timestamp": "00:00:34.001"
}
},
{
"description": "Playing an arcade game.",
"timestamp": {
"start_timestamp": "00:00:34.001",
"end_timestamp": "00:00:38.005"
}
},
{
"description": "Steph laying on a bed, pouring wine, clinking glasses, and drinking wine with Pablo.",
"timestamp": {
"start_timestamp": "00:00:38.005",
"end_timestamp": "00:00:44.011"
}
}
],
"props": [
{
"name": "Lamborghini",
"timestamp": {
"start_timestamp": "00:00:14.047",
"end_timestamp": "00:00:16.016"
}
},
{
"name": "Cornhole set",
"timestamp": {
"start_timestamp": "00:00:17.985",
"end_timestamp": "00:00:22.990"
}
},
{
"name": "Pool table, pool cues",
"timestamp": {
"start_timestamp": "00:00:24.992",
"end_timestamp": "00:00:27.995"
}
},
{
"name": "Rooftop view",
"timestamp": {
"start_timestamp": "00:00:27.995",
"end_timestamp": "00:00:34.001"
}
},
{
"name": "Cityscape at night",
"timestamp": {
"start_timestamp": "00:00:27.995",
"end_timestamp": "00:00:34.001"
}
},
{
"name": "Arcade game",
"timestamp": {
"start_timestamp": "00:00:34.001",
"end_timestamp": "00:00:38.005"
}
},
{
"name": "Bed, wine glasses",
"timestamp": {
"start_timestamp": "00:00:38.005",
"end_timestamp": "00:00:44.011"
}
},
{
"name": "A large bouquet of red roses",
"timestamp": {
"start_timestamp": "00:00:38.005",
"end_timestamp": "00:00:44.011"
}
}
],
"videoEditingDetails": [
{
"description": "Title card (\"Pablezyy & Steph\") overlaid on a video of a Lamborghini.",
"timestamps": {
"start_timestamp": "00:00:14.047",
"end_timestamp": "00:00:16.016"
}
},
{
"description": "Fast cuts, slow motion, music overlay.",
"timestamps": {
"start_timestamp": "00:00:16.016",
"end_timestamp": "00:00:44.011"
}
}
],
"mood": {
"description": "Happy, romantic, luxurious.",
"keyMoments": [
{
"timestamp": "00:00:29.997",
"changeDescription": "Transition to a more sensual and intimate mood with blue lighting."
}
]
},
"narrativeProgression": [
{
"description": "Showcase of Pablo and Steph's relationship and lifestyle.",
"timestamp": "00:00:14.047"
},
{
"description": "Highlights the playful and loving nature of their relationship through various activities.",
"timestamp": "00:00:14.047"
},
{
"description": "Emphasizes their luxurious lifestyle with high-end cars and locations.",
"timestamp": "00:00:27.995"
}
],
"characterInteraction": [
{
"characters": [
"Pablo",
"Steph"
],
"description": "Romantic and playful interactions between Pablo and Steph."
}
],
"thematicElements": "Love, relationship, luxury, adventure.",
"contextualRelevance": "Highlights Pablo and Steph's relationship in the context of their adventurous lifestyle.",
"dynamismScore": 0.8,
"audioVisualCorrelation": 0.7
},
{
"sceneId": 3,
"title": "Preparing for Off-road",
"timestamps": {
"start_timestamp": "00:00:44.678",
"end_timestamp": "00:01:20.981"
},
"cast": [
"Pablo",
"Steph",
"Toxica",
"Little Boy",
"Little Girl",
"Jimbolls",
"Able",
"Jesse",
"David Mac"
],
"activities": [
{
"description": "Pablo introduces the video and the off-roading activity, giving a call to action for viewers to like, subscribe, and turn on notifications.",
"timestamp": {
"start_timestamp": "00:00:45.012",
"end_timestamp": "00:01:11.004"
}
},
{
"description": "Group prepares to leave for the off-road trails.",
"timestamp": {
"start_timestamp": "00:01:11.004",
"end_timestamp": "00:01:19.012"
}
}
],
"props": [
{
"name": "Off-road vehicle, pickup trucks, flags (US and Mexican), a tree.",
"timestamp": {
"start_timestamp": "00:00:44.678",
"end_timestamp": "00:01:19.012"
}
}
],
"videoEditingDetails": [
{
"description": "Single camera, no transitions, no effects, natural sound.",
"timestamps": {
"start_timestamp": "00:00:44.678",
"end_timestamp": "00:01:19.012"
}
},
{
"description": "Overlaid banner with the channel name and social media handles.",
"timestamps": {
"start_timestamp": "00:00:56.990",
"end_timestamp": "00:01:03.997"
}
}
],
"mood": {
"description": "Excited",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Transition from the introductory montage to the start of the off-roading adventure.",
"timestamp": "00:00:44.678"
},
{
"description": "Pablo addresses the viewers and hypes up the upcoming content.",
"timestamp": "00:00:44.678"
},
{
"description": "The group begins to gather and get ready to leave for the off-road trails.",
"timestamp": "00:01:11.004"
}
],
"characterInteraction": [
{
"characters": [
"Pablo",
"Group"
],
"description": "Pablo interacts with the other members of the group, introducing them and promoting their social media accounts."
}
],
"thematicElements": "Off-roading, community, adventure.",
"contextualRelevance": "Setting the stage for the off-roading adventure.",
"dynamismScore": 0.5,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 4,
"title": "Lookout Point",
"timestamps": {
"start_timestamp": "00:01:21.014",
"end_timestamp": "00:02:29.983"
},
"cast": [
"Pablo",
"Steph",
"Toxica",
"Little Boy",
"Little Girl",
"Jimbolls",
"Able",
"Jesse"
],
"activities": [
{
"description": "Arriving at a lookout point and observing other off-road vehicles leaving.",
"timestamp": {
"start_timestamp": "00:01:21.014",
"end_timestamp": "00:01:56.984"
}
},
{
"description": "Walking around the lookout point, showing the view and playing around.",
"timestamp": {
"start_timestamp": "00:01:56.984",
"end_timestamp": "00:02:20.007"
}
},
{
"description": "Steph and Toxica trying to do pull-ups on a tree branch.",
"timestamp": {
"start_timestamp": "00:02:20.007",
"end_timestamp": "00:02:28.015"
}
}
],
"props": [
{
"name": "Off-road vehicles, dirt bikes, a white pickup truck, flags (US and Mexican), a tree, a lookout point.",
"timestamp": {
"start_timestamp": "00:01:21.014",
"end_timestamp": "00:02:28.015"
}
}
],
"videoEditingDetails": [
{
"description": "Single camera, no transitions, no effects, natural sound.",
"timestamps": {
"start_timestamp": "00:01:21.014",
"end_timestamp": "00:02:28.015"
}
},
{
"description": "Overlaid text with Steph's Instagram handle.",
"timestamps": {
"start_timestamp": "00:02:19.006",
"end_timestamp": "00:02:19.006"
}
}
],
"mood": {
"description": "Happy, Lighthearted, playful.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "A brief stop at a lookout point before continuing with the off-roading trip.",
"timestamp": "00:01:21.014"
},
{
"description": "The group arrives at a scenic lookout point, realizing they are a bit late.",
"timestamp": "00:01:21.014"
},
{
"description": "They explore the lookout point, taking in the view and having some fun.",
"timestamp": "00:01:56.984"
},
{
"description": "The mood remains lighthearted as Steph and Toxica attempt pull-ups on a tree branch.",
"timestamp": "00:02:20.007"
}
],
"characterInteraction": [
{
"characters": [
"Group"
],
"description": "The group enjoys the view together. Steph and Toxica challenge each other with pull-ups, adding to the playful atmosphere."
}
],
"thematicElements": "Camaraderie, humor, scenic beauty.",
"contextualRelevance": "A fun and scenic pause in the adventure.",
"dynamismScore": 0.6,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 5,
"title": "Off-road Fun",
"timestamps": {
"start_timestamp": "00:02:30.017",
"end_timestamp": "00:04:59.566"
},
"cast": [
"Pablo",
"Steph",
"Toxica",
"Little Boy",
"Little Girl",
"Jimbolls",
"Able",
"Jesse"
],
"activities": [
{
"description": "Group watches off-road vehicles doing donuts.",
"timestamp": {
"start_timestamp": "00:02:30.017",
"end_timestamp": "00:02:47.000"
}
},
{
"description": "Jimbolls, Toxica, Jesse, and Pablo attempt pull-ups on a tree branch.",
"timestamp": {
"start_timestamp": "00:02:47.000",
"end_timestamp": "00:03:58.005"
}
},
{
"description": "Toxica dances with one of the group members.",
"timestamp": {
"start_timestamp": "00:03:58.005",
"end_timestamp": "00:04:43.984"
}
},
{
"description": "Group drives off-road vehicles through a challenging terrain.",
"timestamp": {
"start_timestamp": "00:04:43.984",
"end_timestamp": "00:04:58.999"
}
}
],
"props": [
{
"name": "Off-road vehicles, dirt bikes, a white pickup truck, beer cans, a tree, a graffiti wall.",
"timestamp": {
"start_timestamp": "00:02:30.017",
"end_timestamp": "00:04:58.999"
}
}
],
"videoEditingDetails": [
{
"description": "Single camera, no transitions, no effects, natural sound.",
"timestamps": {
"start_timestamp": "00:02:30.017",
"end_timestamp": "00:04:58.999"
}
}
],
"mood": {
"description": "Excited",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "The group continues their off-roading adventure, taking breaks to have fun and showcasing their skills.",
"timestamp": "00:02:30.017"
},
{
"description": "The group enjoys the show as others perform donuts with their off-road vehicles.",
"timestamp": "00:02:30.017"
},
{
"description": "The playful mood continues as different members try to do pull-ups.",
"timestamp": "00:02:47.000"
},
{
"description": "The mood shifts as Toxica and a group member start dancing, showcasing a lighthearted and fun moment.",
"timestamp": "00:03:58.005"
},
{
"description": "The scene ends with the group getting back into their vehicles and driving through a challenging terrain, highlighting the excitement and adventurous nature of the activity.",
"timestamp": "00:04:43.984"
}
],
"characterInteraction": [
{
"characters": [
"Group"
],
"description": "The group members cheer each other on during the pull-up challenge. Toxica's dance with another group member provides a fun interaction."
}
],
"thematicElements": "Skill, teamwork, fun, adventure.",
"contextualRelevance": "Showcasing the excitement and fun of the off-road adventure.",
"dynamismScore": 0.8,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 6,
"title": "Off-road Races",
"timestamps": {
"start_timestamp": "00:04:59.600",
"end_timestamp": "00:06:53.947"
},
"cast": [
"Pablo",
"David Mac"
],
"activities": [
{
"description": "Group gathers and watches off-road vehicles racing.",
"timestamp": {
"start_timestamp": "00:04:59.600",
"end_timestamp": "00:05:58.992"
}
},
{
"description": "Off-road vehicles continue racing, and Pablo and David Mac prepare to race.",
"timestamp": {
"start_timestamp": "00:05:58.992",
"end_timestamp": "00:06:53.013"
}
}
],
"props": [
{
"name": "Off-road vehicles, dirt bikes, flags (US and Mexican), racing track.",
"timestamp": {
"start_timestamp": "00:04:59.600",
"end_timestamp": "00:06:53.013"
}
}
],
"videoEditingDetails": [
{
"description": "Single camera, no transitions, no effects, natural sound.",
"timestamps": {
"start_timestamp": "00:04:59.600",
"end_timestamp": "00:06:53.013"
}
},
{
"description": "Overlaid text with David Mac's Instagram handle.",
"timestamps": {
"start_timestamp": "00:04:59.600",
"end_timestamp": "00:04:59.600"
}
}
],
"mood": {
"description": "Excited",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "The climax of the off-roading trip with intense races.",
"timestamp": "00:04:59.600"
},
{
"description": "The group gathers to watch the off-road vehicle races, building excitement and anticipation for the competition.",
"timestamp": "00:04:59.600"
},
{
"description": "The races continue with increased intensity and dramatic driving maneuvers. Pablo and David Mac's preparation for their own race heightens the tension.",
"timestamp": "00:05:58.992"
}
],
"characterInteraction": [
{
"characters": [
"Group",
"Pablo",
"David Mac"
],
"description": "The group cheers and encourages the racers. Pablo interacts with David Mac, setting the stage for their race."
}
],
"thematicElements": "Competition, speed, adrenaline.",
"contextualRelevance": "The peak of excitement in the off-roading adventure.",
"dynamismScore": 1.0,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 7,
"title": "Celebration and Departure",
"timestamps": {
"start_timestamp": "00:06:53.981",
"end_timestamp": "00:08:27.841"
},
"cast": [
"Pablo",
"Jimbolls",
"Able",
"Jesse"
],
"activities": [
{
"description": "Group watches off-road vehicle races and celebrates.",
"timestamp": {
"start_timestamp": "00:06:53.981",
"end_timestamp": "00:07:58.011"
}
},
{
"description": "Able drinks from a bottle, the group gets ready to leave, Pablo and the group arrive at a food stand to get tacos.",
"timestamp": {
"start_timestamp": "00:07:58.011",
"end_timestamp": "00:08:27.841"
}
}
],
"props": [
{
"name": "Off-road vehicles, dirt bikes, flags (US and Mexican), racing track, beer cans.",
"timestamp": {
"start_timestamp": "00:06:53.981",
"end_timestamp": "00:08:27.841"
}
}
],
"videoEditingDetails": [
{
"description": "Single camera, no transitions, no effects, natural sound.",
"timestamps": {
"start_timestamp": "00:06:53.981",
"end_timestamp": "00:08:27.841"
}
},
{
"description": "Abrupt cut to a still image of Pablo and another group member celebrating.",
"timestamps": {
"start_timestamp": "00:07:34.988",
"end_timestamp": "00:07:37.991"
}
},
{
"description": "Abrupt cut back to the video. Text overlay (\"Took pictures with fans!\")",
"timestamps": {
"start_timestamp": "00:07:37.991",
"end_timestamp": "00:07:42.996"
}
}
],
"mood": {
"description": "Happy",
"keyMoments": [
{
"timestamp": "00:07:34.988",
"changeDescription": "Transition from excited to neutral mood with cut to still image."
},
{
"timestamp": "00:07:37.991",
"changeDescription": "Transition from neutral to happy with return to video."
}
]
},
"narrativeProgression": [
{
"description": "The energy winds down as the group celebrates and prepares for the journey back home.",
"timestamp": "00:06:53.981"
},
{
"description": "The group continues to watch the races, with a focus on celebrating and enjoying the moment.",
"timestamp": "00:06:53.981"
},
{
"description": "The races end, and the group prepares to head home, making a stop for tacos. This signals the conclusion of the off-roading trip.",
"timestamp": "00:07:58.011"
}
],
"characterInteraction": [
{
"characters": [
"Group"
],
"description": "The group members celebrate together, sharing drinks and laughter."
}
],
"thematicElements": "Camaraderie, relaxation, food.",
"contextualRelevance": "Celebrating the end of the off-roading adventure.",
"dynamismScore": 0.6,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 8,
"title": "Conclusion and Call to Action",
"timestamps": {
"start_timestamp": "00:08:27.875",
"end_timestamp": "00:09:29.970"
},
"cast": [
"Pablo",
"Steph"
],
"activities": [
{
"description": "Pablo talks to the camera, thanking viewers and giving a call to action to subscribe to their channel.",
"timestamp": {
"start_timestamp": "00:08:28.008",
"end_timestamp": "00:08:49.997"
}
},
{
"description": "End screen.",
"timestamp": {
"start_timestamp": "00:08:49.997",
"end_timestamp": "00:09:10.984"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Single camera, no transitions, no effects, natural sound.",
"timestamps": {
"start_timestamp": "00:08:28.008",
"end_timestamp": "00:08:49.997"
}
},
{
"description": "Black screen with white text thanking viewers and encouraging them to subscribe. Transition to an end screen with information about the channel and social media links.",
"timestamps": {
"start_timestamp": "00:08:49.997",
"end_timestamp": "00:09:10.984"
}
}
],
"mood": {
"description": "Grateful",
"keyMoments": [
{
"timestamp": "00:08:49.997",
"changeDescription": "Transition from grateful mood to neutral with end screen."
}
]
},
"narrativeProgression": [
{
"description": "Conclusion of the video with a message of appreciation and a call to action.",
"timestamp": "00:08:28.008"
},
{
"description": "Pablo directly addresses the viewers, thanking them for watching and encouraging them to subscribe.",
"timestamp": "00:08:28.008"
},
{
"description": "The video concludes with a clear call to action, inviting viewers to engage further with the channel.",
"timestamp": "00:08:49.997"
}
],
"characterInteraction": [
{
"characters": [
"Pablo"
],
"description": "Pablo directly interacts with the viewers, establishing a connection and fostering community engagement."
}
],
"thematicElements": "Community, appreciation.",
"contextualRelevance": "Wrapping up the adventure with viewer engagement.",
"dynamismScore": 0.3,
"audioVisualCorrelation": 1.0
}
],
"storylines": {
"description": "The video primarily focuses on a narrative storyline, documenting an exciting off-roading adventure with Pablo and his friends. It includes playful moments, scenic views, and thrilling races, creating an engaging narrative arc for the viewers.",
"scenes": [
1,
3,
4,
5,
6,
7
],
"climax": {
"description": "The off-road races.",
"timestamp": "00:04:58.999"
}
},
"qAndA": [
{
"question": "What is the color of Steph's jumpsuit when she's trying to do pull-ups?",
"answer": "Black."
},
{
"question": "What brand of beer does Able drink from the bottle?",
"answer": "Coors Light."
},
{
"question": "What is the main reason for stopping at the lookout point?",
"answer": "The group is late, and most other vehicles have already left for the trails."
},
{
"question": "What brand are the shocks on the green Can-Am?",
"answer": "Fox"
},
{
"question": "What kind of car does Pablo and Steph drive in the introductory montage?",
"answer": "A Lamborghini."
}
],
"trimmingSuggestions": [
{
"description": "Pablo's lengthy intro, while important, could be shortened to keep the momentum going.",
"timestamps": {
"start_timestamp": "00:08:27.875",
"end_timestamp": "00:08:27.875"
}
},
{
"description": "The initial shots of vehicles leaving could be reduced as they don't significantly contribute to the narrative.",
"timestamps": {
"start_timestamp": "00:08:27.875",
"end_timestamp": "00:08:27.875"
}
},
{
"description": "The extended celebration footage could be trimmed, focusing on key moments of camaraderie and laughter.",
"timestamps": {
"start_timestamp": "00:08:27.875",
"end_timestamp": "00:08:27.875"
}
}
],
"fps": 29.97
},
"text_to_speech": "[Applause] [Music] it's me and you baby what is popping guys welcome back to another lit video let's go so today's vlog you already know we're taking out the cannon out on the ruta are new to the channel guys don't forget to give this video a thumbs up let's break a thousand likes let's break a thousand likes make sure to subscribe to our youtube channel and turn on that notification bell so you can be the first ones to be alerted every time we post up a new video let's go you also just got here you came with the toxica i just forgot little roy let's go do your move boy you guys have drinks you got me in the house we got gym balls we got a bomb we got uh jessie but you already know guys make sure to give this video a thumbs up turn on that notification bell see i can be the first ones to be alerted every time we post up a new video everybody everybody's leaving we got here a little bit late but everybody's leaving guys oh we're looking at everybody going eating let's go make sure y'all go follow her on instagram it's right here nice and cold like that sheesh [Applause] oh you're gonna cross your legs yeah even though they say that you shouldn't all right pablo's turn let's go all day down all the way down no there you go go and then go down a little bit go halfway and then you go up to gollum you're doing it you're holding it away all the way down you're relaxing go make sure to subscribe to the ass youtube channel [Music] [Applause] [Music] so [Music] so [Music] we gotta go [Music] all right guys as usual we have to stop by and get some tacos let's go bill if you're out here in paris california make sure y'all come here this is the best tacos there is like no cap"
} |