Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 40,761 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 |
{
"resolution": "640x360",
"duration_seconds": 611,
"content_parent_category": "Sports",
"content_fine_category": "Documentary Profiles",
"youtube_title": "A Day In The Life Of... Aden Hill (Class Of 2022 Outfielder Committed To VCU)",
"youtube_description": "Episode 73: For This Episodes I am Back Down at P27 Which you will see a lot of over the next few months. I met up with Aden Hill a Class of 22' Outfielder who is Committed to go to VCU next season! We start off the day at the P27 Cages with one of his Coaches working off the Tee, as Well as Under hand Toss, and Over Hand Toss. Then we have a Small workout before heading to the field for Practice. The we head to their field were they worked on Bunt Communication, Pop Ups, and Bunting. Be sure to give him a Follow on Instagram @Yvng15Hill & give me a Follow as well @ShotByHype.\n\nPlease do me a Huge favor and Subscribe to the channel. I am trying to reach 10,000 Subscribers before 2022 and I am getting really close to reaching that goal. So please Thumbs Up this video, as well as give it a share.\n\nThanks For Watching!\n\nWays To Support The Channel:\n\n25% Off & Free Shipping on Liquid IV:\nhttps://glnk.io/koyv/steven\n\nSign Up For PlateCrate:\nhttps://www.platecrate.com/?rfsn=6052553.baca03f\n\n10% Off VeloTee Bag:\nhttps://www.velotee.com USE CODE \"VELOSBH\"\n\nJoin this channel to get access to perks:\nhttps://www.youtube.com/channel/UCYGxO-QcRs9NoOrRxy513Bw/join",
"text_to_speech_word_count": 1117,
"youtube_categories": [
"Sports"
],
"youtube_tags": [
"Whats In My Baseball Bag?",
"Youth Prospects",
"All American Prospects",
"Perfect Game Baseball",
"Baseball America",
"Canes Baseball",
"Dirtbag Baseball",
"Day In The Life Baseball",
"Baseball",
"Baseball D1 Day In The Life",
"D1 Day In The Life",
"Whats In My Baseball Bag 2022",
"Baseball Bag",
"Druw Jones",
"Elijah Green",
"Termarr Johnson",
"Baseball Bat Bros",
"Shot By Hype",
"ShotByHype",
"Minor League",
"MLB",
"MiLB",
"Baseball Prospects",
"Austin Hawke",
"Aden Hill",
"Aden Hill Baseball",
"Whistle",
"Day In The Life"
],
"youtube_channel": "ShotByHype",
"youtube_view_count": 4022,
"youtube_comment_count": 9,
"youtube_like_count": 87,
"youtube_channel_follower_count": 53100,
"youtube_upload_date": "20211112",
"youtube_age_limit": 0,
"content_metadata": {
"title": "A Day in the Life of Aiden Hill",
"description": "A video showcasing the daily routine and journey of Aiden Hill, a young African American baseball player with a commitment to VCU.",
"characterList": [
{
"characterId": "A1",
"name": "Aiden Hill",
"description": "A young, African American baseball player. He wears a black t-shirt with a baseball logo, gray sweatpants, a blue baseball cap with a white cross, and a cross necklace."
},
{
"characterId": "C1",
"name": "Coach",
"description": "An older, Caucasian man with short, light brown hair. He wears a blue t-shirt with a baseball logo, black shorts, a blue baseball cap, and white athletic shoes."
},
{
"characterId": "O1",
"name": "Other Baseball Players",
"description": "Various young men, mostly Caucasian, wearing baseball uniforms and practicing in the background."
}
],
"scenes": [
{
"sceneId": 1,
"title": "Introduction",
"timestamps": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:07.674"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden introduces himself, mentioning his name, position, academy, and commitment to VCU.",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:07.674"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Text overlays introduce Aiden and his details.",
"timestamps": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:07.674"
}
},
{
"description": "Transition to the next scene using a fade-out effect.",
"timestamps": {
"start_timestamp": "00:00:07.674",
"end_timestamp": "00:00:07.674"
}
}
],
"mood": {
"description": "Proud. Aiden confidently introduces himself and his accomplishments.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Introduction of the character and the theme of the video, a day in his life.",
"timestamp": "00:00:00.000"
}
],
"characterInteraction": [],
"thematicElements": "Aspiring athlete, commitment to sport.",
"contextualRelevance": "",
"dynamismScore": 0.2,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 2,
"title": "Batting Practice at the Indoor Facility",
"timestamps": {
"start_timestamp": "00:00:07.708",
"end_timestamp": "00:00:42.643"
},
"cast": [
"Aiden Hill",
"Coach",
"Other Baseball Players"
],
"activities": [
{
"description": "Aiden practices batting with a coach in an indoor facility.",
"timestamp": {
"start_timestamp": "00:00:08.008",
"end_timestamp": "00:00:42.009"
}
}
],
"props": [
{
"name": "Baseball bat",
"timestamp": {
"start_timestamp": "00:00:08.008",
"end_timestamp": "00:00:42.009"
}
},
{
"name": "Baseball tee",
"timestamp": {
"start_timestamp": "00:00:08.008",
"end_timestamp": "00:00:42.009"
}
},
{
"name": "Bucket",
"timestamp": {
"start_timestamp": "00:00:08.008",
"end_timestamp": "00:00:42.009"
}
}
],
"videoEditingDetails": [
{
"description": "Fast-paced cuts showcase different batting drills.",
"timestamps": {
"start_timestamp": "00:00:08.008",
"end_timestamp": "00:00:42.009"
}
},
{
"description": "Text overlay indicates the time and activity.",
"timestamps": {
"start_timestamp": "00:00:15.015",
"end_timestamp": "00:00:42.009"
}
}
],
"mood": {
"description": "Focused, Determined. The fast-paced editing and Aiden's concentrated expression convey a sense of dedicated training.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Shows Aiden's commitment to practice and his dedication to improving his batting skills.",
"timestamp": "00:00:08.008"
}
],
"characterInteraction": [
{
"characters": [
"Coach",
"Aiden Hill"
],
"description": "Coach instructs and observes Aiden during the batting drills."
}
],
"thematicElements": "Hard work, dedication, training regimen.",
"contextualRelevance": "",
"dynamismScore": 0.8,
"audioVisualCorrelation": 0.6
},
{
"sceneId": 3,
"title": "Aiden Discusses His Start in Baseball",
"timestamps": {
"start_timestamp": "00:00:42.676",
"end_timestamp": "00:01:21.982"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden talks about how he got into baseball, influenced by his dad, starting a travel team, and almost quitting.",
"timestamp": {
"start_timestamp": "00:00:42.676",
"end_timestamp": "00:01:21.982"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden practicing batting is overlayed with Aiden talking.",
"timestamps": {
"start_timestamp": "00:00:42.676",
"end_timestamp": "00:01:21.982"
}
},
{
"description": "\"Subscribe\" button appears.",
"timestamps": {
"start_timestamp": "00:00:48.015",
"end_timestamp": "00:00:48.015"
}
}
],
"mood": {
"description": "Reflective, Grateful. Aiden's tone is thoughtful and appreciative as he recounts his early baseball experiences.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Provides backstory on Aiden's journey in baseball and the role his dad played.",
"timestamp": "00:00:42.676"
}
],
"characterInteraction": [],
"thematicElements": "Parental support, perseverance, overcoming challenges.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
},
{
"sceneId": 4,
"title": "More Batting Practice at the Indoor Facility",
"timestamps": {
"start_timestamp": "00:01:22.015",
"end_timestamp": "00:02:06.760"
},
"cast": [
"Aiden Hill",
"Coach",
"Other Baseball Players"
],
"activities": [
{
"description": "Aiden continues batting practice with a focus on power hitting.",
"timestamp": {
"start_timestamp": "00:01:22.015",
"end_timestamp": "00:02:06.760"
}
}
],
"props": [
{
"name": "Baseball bat",
"timestamp": {
"start_timestamp": "00:01:22.015",
"end_timestamp": "00:02:06.760"
}
},
{
"name": "Baseball tee",
"timestamp": {
"start_timestamp": "00:01:22.015",
"end_timestamp": "00:02:06.760"
}
},
{
"name": "Baseballs",
"timestamp": {
"start_timestamp": "00:01:22.015",
"end_timestamp": "00:02:06.760"
}
}
],
"videoEditingDetails": [
{
"description": "Fast-paced cuts showcase different batting drills.",
"timestamps": {
"start_timestamp": "00:01:22.015",
"end_timestamp": "00:02:06.760"
}
}
],
"mood": {
"description": "Focused, Powerful. The visuals highlight the strength and impact of Aiden's batting.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Reinforces Aiden's dedication to training and highlights his power hitting ability.",
"timestamp": "00:01:22.015"
}
],
"characterInteraction": [
{
"characters": [
"Coach",
"Aiden Hill"
],
"description": "Coach instructs and observes Aiden's technique."
}
],
"thematicElements": "Strength, power, athleticism.",
"contextualRelevance": "",
"dynamismScore": 0.8,
"audioVisualCorrelation": 0.5
},
{
"sceneId": 5,
"title": "Aiden Discusses Choosing VCU",
"timestamps": {
"start_timestamp": "00:02:06.793",
"end_timestamp": "00:02:39.026"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden talks about what made him choose VCU, highlighting the family vibe, care from coaches, and the program's success.",
"timestamp": {
"start_timestamp": "00:02:06.994",
"end_timestamp": "00:02:37.991"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden batting is overlaid with him talking.",
"timestamps": {
"start_timestamp": "00:02:06.994",
"end_timestamp": "00:02:37.991"
}
}
],
"mood": {
"description": "Content, Confident. Aiden's tone reflects his satisfaction with his decision and his belief in the program.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Provides insight into Aiden's decision-making process and his reasons for choosing VCU.",
"timestamp": "00:02:06.994"
}
],
"characterInteraction": [],
"thematicElements": "Finding the right fit, team culture, program potential.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
},
{
"sceneId": 6,
"title": "Weight Training",
"timestamps": {
"start_timestamp": "00:02:39.059",
"end_timestamp": "00:03:04.051"
},
"cast": [
"Aiden Hill",
"Other Baseball Players"
],
"activities": [
{
"description": "Aiden performs pull-ups in a gym setting.",
"timestamp": {
"start_timestamp": "00:02:39.059",
"end_timestamp": "00:03:03.984"
}
}
],
"props": [
{
"name": "Pull-up bar",
"timestamp": {
"start_timestamp": "00:02:39.059",
"end_timestamp": "00:03:03.984"
}
},
{
"name": "Gym equipment",
"timestamp": {
"start_timestamp": "00:02:39.059",
"end_timestamp": "00:03:03.984"
}
}
],
"videoEditingDetails": [
{
"description": "Close-up shots focus on Aiden's effort and physical strength.",
"timestamps": {
"start_timestamp": "00:02:39.059",
"end_timestamp": "00:03:03.984"
}
},
{
"description": "Text overlay indicates time and activity.",
"timestamps": {
"start_timestamp": "00:02:39.059",
"end_timestamp": "00:03:03.984"
}
}
],
"mood": {
"description": "Determined, Driven. The visuals and audio emphasize the physical exertion and mental focus required during weight training.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Shows Aiden's commitment to physical fitness and his dedication to overall athletic development.",
"timestamp": "00:02:39.059"
}
],
"characterInteraction": [],
"thematicElements": "Strength training, discipline, pushing limits.",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.7
},
{
"sceneId": 7,
"title": "Aiden Discusses Getting Recruited by VCU",
"timestamps": {
"start_timestamp": "00:03:04.084",
"end_timestamp": "00:03:59.973"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden recounts the story of how VCU started recruiting him after a bad game, his performance at their tournament, and the scholarship offer.",
"timestamp": {
"start_timestamp": "00:03:04.084",
"end_timestamp": "00:03:58.005"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden lifting weights is overlayed with him talking.",
"timestamps": {
"start_timestamp": "00:03:04.084",
"end_timestamp": "00:03:58.005"
}
}
],
"mood": {
"description": "Reflective, Surprised. Aiden's tone conveys both disbelief and gratitude for the opportunity presented despite his poor performance.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Offers a detailed account of the recruitment process and how Aiden impressed the VCU coaches.",
"timestamp": "00:03:04.084"
}
],
"characterInteraction": [],
"thematicElements": "Unexpected opportunities, second chances, proving oneself.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
},
{
"sceneId": 8,
"title": "Fielding Practice",
"timestamps": {
"start_timestamp": "00:04:00.007",
"end_timestamp": "00:05:10.978"
},
"cast": [
"Aiden Hill",
"Coach",
"Other Baseball Players"
],
"activities": [
{
"description": "Aiden practices fielding drills, including running, diving catches, and throwing.",
"timestamp": {
"start_timestamp": "00:04:00.007",
"end_timestamp": "00:05:09.009"
}
}
],
"props": [
{
"name": "Baseball glove",
"timestamp": {
"start_timestamp": "00:04:00.007",
"end_timestamp": "00:05:09.009"
}
},
{
"name": "Baseballs",
"timestamp": {
"start_timestamp": "00:04:00.007",
"end_timestamp": "00:05:09.009"
}
},
{
"name": "Pitching machine",
"timestamp": {
"start_timestamp": "00:04:00.007",
"end_timestamp": "00:05:09.009"
}
}
],
"videoEditingDetails": [
{
"description": "Various shots showcase different fielding drills.",
"timestamps": {
"start_timestamp": "00:04:00.007",
"end_timestamp": "00:05:09.009"
}
},
{
"description": "Text overlay indicates time and activity.",
"timestamps": {
"start_timestamp": "00:04:12.986",
"end_timestamp": "00:05:09.009"
}
}
],
"mood": {
"description": "Active, Energetic. The footage captures the fast-paced nature of fielding practice and Aiden's athleticism.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Demonstrates Aiden's skills and dedication to fielding practice.",
"timestamp": "00:04:00.007"
}
],
"characterInteraction": [
{
"characters": [
"Coach",
"Aiden Hill"
],
"description": "Coach instructs and observes Aiden's performance."
}
],
"thematicElements": "Agility, speed, fielding proficiency.",
"contextualRelevance": "",
"dynamismScore": 0.7,
"audioVisualCorrelation": 0.6
},
{
"sceneId": 9,
"title": "Aiden Discusses Dealing with Pressure",
"timestamps": {
"start_timestamp": "00:05:11.011",
"end_timestamp": "00:05:41.375"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden shares his thoughts on pressure, emphasizing that it's self-inflicted and can be controlled by focusing on one's own performance.",
"timestamp": {
"start_timestamp": "00:05:11.011",
"end_timestamp": "00:05:40.007"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden fielding is overlayed with him speaking.",
"timestamps": {
"start_timestamp": "00:05:11.011",
"end_timestamp": "00:05:40.007"
}
}
],
"mood": {
"description": "Confident, Motivational. Aiden's words convey a strong belief in controlling one's own mindset and focusing on individual effort.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Addresses a common challenge for athletes, managing pressure, and offers a positive perspective.",
"timestamp": "00:05:11.011"
}
],
"characterInteraction": [],
"thematicElements": "Mental toughness, self-belief, controlling one's own destiny.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
},
{
"sceneId": 10,
"title": "More Fielding Practice",
"timestamps": {
"start_timestamp": "00:05:41.408",
"end_timestamp": "00:07:24.978"
},
"cast": [
"Aiden Hill",
"Coach",
"Other Baseball Players"
],
"activities": [
{
"description": "Continued fielding practice, showcasing various drills and throws.",
"timestamp": {
"start_timestamp": "00:05:41.408",
"end_timestamp": "00:07:24.978"
}
}
],
"props": [
{
"name": "Baseball glove",
"timestamp": {
"start_timestamp": "00:05:41.408",
"end_timestamp": "00:07:24.978"
}
},
{
"name": "Baseballs",
"timestamp": {
"start_timestamp": "00:05:41.408",
"end_timestamp": "00:07:24.978"
}
},
{
"name": "Pitching machine",
"timestamp": {
"start_timestamp": "00:05:41.408",
"end_timestamp": "00:07:24.978"
}
}
],
"videoEditingDetails": [
{
"description": "Fast-paced cuts highlight different aspects of fielding practice.",
"timestamps": {
"start_timestamp": "00:05:41.408",
"end_timestamp": "00:07:24.978"
}
}
],
"mood": {
"description": "Intense, Focused. The visuals capture the energy and intensity of the drills.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Further demonstrates Aiden's fielding abilities and commitment to his craft.",
"timestamp": "00:05:41.408"
}
],
"characterInteraction": [],
"thematicElements": "Fielding practice.",
"contextualRelevance": "",
"dynamismScore": 0.8,
"audioVisualCorrelation": 0.5
},
{
"sceneId": 11,
"title": "Aiden Discusses Strengths and Weaknesses",
"timestamps": {
"start_timestamp": "00:07:25.012",
"end_timestamp": "00:07:59.012"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden identifies his greatest strength as his hitting and discusses his arm as an area he needs to improve.",
"timestamp": {
"start_timestamp": "00:07:25.012",
"end_timestamp": "00:07:59.012"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden practicing outfield throws is overlayed with him speaking.",
"timestamps": {
"start_timestamp": "00:07:25.012",
"end_timestamp": "00:07:59.012"
}
}
],
"mood": {
"description": "Analytical, Self-Aware. Aiden honestly assesses his skills, acknowledging both his strengths and weaknesses.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Provides insight into Aiden's self-reflection as an athlete and his commitment to continuous improvement.",
"timestamp": "00:07:25.012"
}
],
"characterInteraction": [],
"thematicElements": "Self-assessment, striving for excellence, recognizing areas for growth.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
},
{
"sceneId": 12,
"title": "More Fielding Practice",
"timestamps": {
"start_timestamp": "00:07:59.046",
"end_timestamp": "00:08:10.958"
},
"cast": [
"Aiden Hill",
"Coach",
"Other Baseball Players"
],
"activities": [
{
"description": "Further fielding practice with a focus on throwing accuracy and power.",
"timestamp": {
"start_timestamp": "00:07:59.046",
"end_timestamp": "00:08:08.989"
}
}
],
"props": [
{
"name": "Baseball glove",
"timestamp": {
"start_timestamp": "00:07:59.046",
"end_timestamp": "00:08:08.989"
}
},
{
"name": "Baseballs",
"timestamp": {
"start_timestamp": "00:07:59.046",
"end_timestamp": "00:08:08.989"
}
},
{
"name": "Pitching machine",
"timestamp": {
"start_timestamp": "00:07:59.046",
"end_timestamp": "00:08:08.989"
}
}
],
"videoEditingDetails": [
{
"description": "Various shots emphasize the intensity and mechanics of Aiden's throws.",
"timestamps": {
"start_timestamp": "00:07:59.046",
"end_timestamp": "00:08:08.989"
}
}
],
"mood": {
"description": "Determined, Focused. The footage highlights Aiden's efforts to improve his throwing.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Shows Aiden actively working on his identified weakness.",
"timestamp": "00:07:59.046"
}
],
"characterInteraction": [],
"thematicElements": "Improving weaknesses.",
"contextualRelevance": "",
"dynamismScore": 0.7,
"audioVisualCorrelation": 0.6
},
{
"sceneId": 13,
"title": "Aiden Discusses His Favorite Players and Memory",
"timestamps": {
"start_timestamp": "00:08:10.991",
"end_timestamp": "00:09:28.068"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden reveals his top three favorite MLB players (Mookie Betts, Juan Soto, Francisco Lindor), highlighting their skills and why he admires them. He also shares his favorite baseball memory of winning a tournament in Cooperstown with his dad as coach.",
"timestamp": {
"start_timestamp": "00:08:10.991",
"end_timestamp": "00:09:28.001"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden batting and fielding is overlayed with him speaking.",
"timestamps": {
"start_timestamp": "00:08:10.991",
"end_timestamp": "00:09:28.001"
}
}
],
"mood": {
"description": "Enthusiastic, Nostalgic. Aiden's tone is animated as he talks about his favorite players and fondly recounts his Cooperstown memory.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Offers a glimpse into Aiden's personal interests and a heartwarming anecdote from his past.",
"timestamp": "00:08:10.991"
}
],
"characterInteraction": [],
"thematicElements": "Inspiration, role models, team bonding, achieving goals.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
},
{
"sceneId": 14,
"title": "Batting Practice and Positive Mindset",
"timestamps": {
"start_timestamp": "00:09:28.101",
"end_timestamp": "00:10:09.977"
},
"cast": [
"Aiden Hill",
"Coach",
"Other Baseball Players"
],
"activities": [
{
"description": "Aiden practices batting with a focus on his approach and mindset at the plate.",
"timestamp": {
"start_timestamp": "00:09:28.101",
"end_timestamp": "00:10:08.008"
}
}
],
"props": [
{
"name": "Baseball bat",
"timestamp": {
"start_timestamp": "00:09:28.101",
"end_timestamp": "00:10:08.008"
}
},
{
"name": "Baseball tee",
"timestamp": {
"start_timestamp": "00:09:28.101",
"end_timestamp": "00:10:08.008"
}
},
{
"name": "Baseballs",
"timestamp": {
"start_timestamp": "00:09:28.101",
"end_timestamp": "00:10:08.008"
}
}
],
"videoEditingDetails": [
{
"description": "Various shots showcase Aiden's batting technique and confidence.",
"timestamps": {
"start_timestamp": "00:09:28.101",
"end_timestamp": "00:10:08.008"
}
}
],
"mood": {
"description": "Focused, Determined. The footage emphasizes Aiden's mental focus and his aggressive batting style.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Highlights the importance of a positive mindset in baseball.",
"timestamp": "00:09:28.101"
}
],
"characterInteraction": [
{
"characters": [
"Coach",
"Aiden Hill"
],
"description": "Coach provides guidance and encouragement to Aiden."
}
],
"thematicElements": "Mental preparation, visualization, positive self-talk.",
"contextualRelevance": "",
"dynamismScore": 0.7,
"audioVisualCorrelation": 0.7
},
{
"sceneId": 15,
"title": "Advice for Uncommitted Players",
"timestamps": {
"start_timestamp": "00:10:10.010",
"end_timestamp": "00:10:10.811"
},
"cast": [
"Aiden Hill"
],
"activities": [
{
"description": "Aiden offers advice to uncommitted players, encouraging them to work hard, avoid comparisons, focus on themselves, and seek inspiration from successful players.",
"timestamp": {
"start_timestamp": "00:10:10.010",
"end_timestamp": "00:10:10.010"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Footage of Aiden practicing batting is overlaid with him speaking.",
"timestamps": {
"start_timestamp": "00:10:10.010",
"end_timestamp": "00:10:10.010"
}
}
],
"mood": {
"description": "Motivational, Encouraging. Aiden's advice is straightforward and supportive.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Concludes the video with a message of encouragement and guidance for aspiring athletes.",
"timestamp": "00:10:10.010"
}
],
"characterInteraction": [],
"thematicElements": "Perseverance, self-belief, learning from others, pursuing dreams.",
"contextualRelevance": "",
"dynamismScore": 0.4,
"audioVisualCorrelation": 0.8
}
],
"storylines": {
"description": "A video detailing Aiden Hill's life as a committed baseball player at VCU, highlighting his journey, training, and reflections.",
"scenes": [
1,
3,
5,
7,
13,
15
],
"climax": {
"description": "Aiden receives a scholarship offer from VCU after impressing despite a poor performance.",
"timestamp": "00:03:03.984"
}
},
"qAndA": [
{
"question": "What type of hitting drill does Aiden practice with a coach in the indoor facility at the beginning of the video?",
"answer": "Aiden practices hitting off a baseball tee."
},
{
"question": "What is the significance of Aiden mentioning that he almost quit baseball at age seven?",
"answer": "It highlights the importance of perseverance and the role his father played in encouraging him to continue."
},
{
"question": "Why did Aiden choose VCU despite having a terrible game when they first observed him?",
"answer": "VCU saw potential in Aiden beyond his one poor performance and recognized his character and work ethic."
},
{
"question": "How does Aiden's choice of favorite players reflect his own aspirations as a baseball player?",
"answer": "His admiration for athletic, aggressive, and skilled outfielders suggests his desire to emulate those qualities."
},
{
"question": "What is the overall mood of the video?",
"answer": "The video conveys a mood of motivation and inspiration, showcasing Aiden's dedication to his sport and his positive outlook on the future."
}
],
"trimmingSuggestions": [
{
"description": "Trim the longer fielding practice scenes to maintain a dynamic pace.",
"timestamps": {
"start_timestamp": "00:10:10.010",
"end_timestamp": "00:10:10.010"
}
},
{
"description": "Shorten overlaid interview footage for more impactful storytelling.",
"timestamps": {
"start_timestamp": "00:10:10.010",
"end_timestamp": "00:10:10.010"
}
}
],
"fps": 29.97
},
"text_to_speech": "my name is aiden hill i'm an outfielder at p27 academy in the class of 2022 committed to virginia commonwealth and this is a day of my life oh [Music] [Applause] [Music] [Applause] i got into baseball at the age of let's say probably six um my dad influenced me to start playing the most uh we started a travel team from like our hometown we were pretty good from like six to twelve and then fun fact i actually wanted to quit when i was like seven but he didn't let me um because i just quit football the year before um and so he was like you're not getting any more sports and uh kind of glad i didn't quit now because i'm going to college for it but um yeah we um we basically started a hometown team and then after 12 years we started getting more serious and now we're here what made me pick vcu is i just felt such a family vibe from them i could tell that they cared about me not just as a player but like as a person and you can't ask for more than that and if they had nice facilities they had a great year last year um so i knew they were a program that wasn't you know doing doing good and trying to you know rise up and compete with like power five schools so i just felt it was the right fit [Music] uh [Music] get up [Music] them i with vcu i actually um they they started recruiting me after i played a terrible game i went over to over three with two strikeouts and my coach said hey call them they want to hear from you and i called them and they said they're interested even after seeing that terrible game that i just played and then after that i went to um we had a tournament at their place and i did really good there then i had the pbr futures games and i did really good there and that kind of sealed the deal so then they had the offer ready but um they didn't like like push us on it um they kind of gave us time they were like we have the offer ready but you know wait until you're ready and then we're ready to hear and then so that was on the table for like two two or three weeks and then i just decided to commit there [Music] hold up [Music] number two [Music] oh um i don't think there's any pressure being committed d1 um i think to me my dad told me pressure is self-inflicted so i mean if you think there's pressure obviously there's gonna be pressure but if you just go out and you know do all that you can do and that's all you all you worry about that's all you can control so i mean you just focus on that like there's no such thing as my pressure strength is definitely my hitting and my size i love the weight room i hit balls i love i love hitting i would say something i need to work on is definitely my arm it's kind of i wouldn't say it's bad it's just average i definitely like to get my arms racked up we throw a 90 before i graduate [Music] top three favorite players in the league i definitely say number one mookie bets um he's kind of like my height my weight uh range um and he just balls out wherever he goes he's extremely athletic and he's an outfielder um number two juan soto he he plays from that's my favorite team because i'm from maryland um and he can just hit and he's so like aggressive in the box he's like passive aggressive so he'll attack you know when he needs to and then he'll lay off of things he's had such a good eye um and my third favorite would probably have to be probably lendore just because uh he plays a game with flair and um he's a great shortstop uh i feel bad for him because he's not having a great year in the match uh in his first year at the mets but um he's still a great player so [Music] my favorite baseball memory is definitely playing with my my team we're from we're all from maryland we're all like a hometown team small team and we went to cooperstown we were 12 and we ended up winning the whole thing my dad was a coach and we just stormed the field together and that was just electric as a 12 year old to win a tournament where there's like 100 teams it was just crazy when walking up to the play i'm just thinking attack like just a tackle ball that is my pitch um because i i need to go having confidence because if you go up doubting yourself or thinking i don't want to strike out then you might strike out and that's just it's not a good approach to have you have to make sure you're thinking positive and when you go over there thinking positive there's good things are about to happen so i just try to stay confident and uh make sure i'm that player that you know wants to see strikes and things i'm thinking if he if he puts a ball over the player i'm gonna kill him for uncommitted players i would just say keep working hard and don't compare yourself to other players because i made that mistake a lot when i was when i was little other big players were like six four and two to thirty hitting bombs and i'd be worried like when am i gonna get committed if i'm five nine 180 pounds but i would say stop comparing yourself to other other players focus on yourself and try to find players that are kind of like your size like players that are already successful that are your size um and then just try to be like them and like they made the path so you can walk on them so you know just take advice from them and follow them yeah so we started the day at the cages getting some working off the tees some front toss some overhand throws then we got a quick lift in then we came in the field did uh pop out communication over here button defenses and uh first and thirds over here and actual bundling over here and that's a day in my life [Music] you"
} |