Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 49,578 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 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 |
{
"resolution": "638x360",
"duration_seconds": 474,
"content_parent_category": "Hobbies & Interests",
"content_fine_category": "Hiking",
"youtube_title": "What I Wear for UK Hiking: Clothes for Hill Walking",
"youtube_description": "A useful breakdown of the clothes I wear mountain hiking around Scotland and the rest of the UK. \n\n🥾 Clothes I wear: \nBaseball cap: https://amzn.to/3msHno2 \nSun hat: https://amzn.to/33tPBDr \nBeanie: https://amzn.to/2Rt6Uin \nBase layer: https://amzn.to/3iC23Ym\nGloves: https://amzn.to/3bXRuME \nFleece: Discontinued. \nWatch: https://amzn.to/3mr2WoX \nTrousers: https://amzn.to/2RtwHHh \nSocks: https://amzn.to/2ZENueO \nSock liners: https://amzn.to/2RrOq1F\nDarn Tough socks: https://amzn.to/3bZ7m1v \nBoots: https://amzn.to/3c2Gq0U \nShoes: https://amzn.to/32xsloP \nSkants: https://amzn.to/2ZH5OEf \nWaterproof trousers: https://amzn.to/3hvzREZ \nWaterproof jacket: Discontinued. \nInsulated jacket: https://www.mountain-equipment.co.uk/products/superflux-jacket \nGilet: https://amzn.to/3hw9PBG \nShorts: https://www.decathlon.co.uk/p/men-s-brown-mountain-trekking-shorts-trek500/_/R-p-192277?mc=8493658&c=GREY \n\n******\n\n⏱ Timestamps:\n\n0:00 - Intro\n0:09 - Headwear\n0:40 - Midlayer\n0:54 - Baselayer\n1:28 - Gloves\n1:45 - Watches \n2:15 - Trousers & underwear\n3:09 - Socks\n3:34 - Boots\n4:08 - Summer/hot weather clothes\n4:47 - Shorts\n5:19 - Socks for trail runners\n5:47 - Trail running shoes\n6:33 - Insulated jacket\n6:53 - Rain gear \n7:39 - Outro \n\n🔔 Please subscribe: https://www.youtube.com/user/boably1?sub_confirmation=1 \n\n☕ https://www.buymeacoffee.com/WalkWithWallace\n\nBox Sets (Playlists):\n\n⛺ TentFlix Wild Camping: https://www.youtube.com/playlist?list=PL44D0FA4D27765E1B\n\n🏡 Bothy TV: https://www.youtube.com/playlist?list=PLeBzJ8jmmEWe4C7auOxm5DBwNRmWnQ7of\n\n👣 Take a Hike (Day Trips): https://www.youtube.com/playlist?list=PLeBzJ8jmmEWeHjkC9_8_AXNEVQ4pyuJtg \n\n👍 - IG/Twitter/FB: @WalkWithWallace \n📝- Blog: www.walkwithwallace.com",
"text_to_speech_word_count": 1402,
"youtube_categories": [
"Howto & Style"
],
"youtube_tags": [
"hiking clothes",
"hill walking clothes",
"what to wear hiking",
"what to wear hiking in summer",
"hiking essentials for beginners",
"hill walking essentials for beginners",
"clothes for hill walking",
"clothes for hiking",
"clothes for hiking uk",
"clothes for hill walking uk",
"gear for hiking uk",
"clothes for munro bagging",
"hiking clothes for men",
"hiking boots for men",
"hiking clothes essentials",
"hiking clothes haul"
],
"youtube_channel": "Walk With Wallace",
"youtube_view_count": 43664,
"youtube_comment_count": 191,
"youtube_like_count": 789,
"youtube_channel_follower_count": 10700,
"youtube_upload_date": "20200601",
"youtube_age_limit": 0,
"content_metadata": {
"title": "Hiking Gear Showcase with Robin",
"description": "An informative video where Robin showcases and describes the hiking gear he uses, categorized by clothing type and purpose, sharing personal preferences and insights.",
"characterList": [
{
"characterId": "1",
"name": "Robin",
"description": "The man in the video, with short blonde hair, a blue t-shirt with a white logo, wearing sunglasses, and has tattoos on his left arm."
}
],
"scenes": [
{
"sceneId": 1,
"title": "Introduction",
"timestamps": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:08.458"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Introducing himself and the video's topic",
"timestamp": {
"start_timestamp": "00:00:00.000",
"end_timestamp": "00:00:08.000"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Film strip effect",
"timestamps": {
"start_timestamp": "00:00:08.000",
"end_timestamp": "00:00:08.000"
}
}
],
"mood": {
"description": "Excited - Robin's energetic tone and direct address to the camera create a sense of excitement and anticipation.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin introduces himself and the topic of the video, creating the context for the content to follow.",
"timestamp": "00:00:00.000"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, establishing a connection and inviting them to watch."
}
],
"thematicElements": "Hiking gear, outdoor activities",
"contextualRelevance": "",
"dynamismScore": 0.8,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 2,
"title": "Hat Showcase",
"timestamps": {
"start_timestamp": "00:00:08.500",
"end_timestamp": "00:00:37.042"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing the beanie hat",
"timestamp": {
"start_timestamp": "00:00:08.500",
"end_timestamp": "00:00:15.000"
}
},
{
"description": "Showing and describing the baseball cap",
"timestamp": {
"start_timestamp": "00:00:15.000",
"end_timestamp": "00:00:22.000"
}
},
{
"description": "Showing and describing the Tilley hat",
"timestamp": {
"start_timestamp": "00:00:22.000",
"end_timestamp": "00:00:37.042"
}
}
],
"props": [
{
"name": "Mountain Equipment Beanie Hat",
"timestamp": {
"start_timestamp": "00:00:08.500",
"end_timestamp": "00:00:15.000"
}
},
{
"name": "Outdoor Research Swift Cap",
"timestamp": {
"start_timestamp": "00:00:15.000",
"end_timestamp": "00:00:22.000"
}
},
{
"name": "Tilley Airflo Organic Cotton Hat",
"timestamp": {
"start_timestamp": "00:00:22.000",
"end_timestamp": "00:00:37.042"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:00:08.500",
"end_timestamp": "00:00:37.042"
}
}
],
"mood": {
"description": "Content - Robin's calm and informative tone, combined with the presentation of each hat, creates a neutral and practical mood.",
"keyMoments": [
{
"timestamp": "00:00:33.000",
"changeDescription": "Brief shift to Happy when Robin gives a thumbs up and smiles while wearing the Tilley hat."
}
]
},
"narrativeProgression": [
{
"description": "Robin showcases the different hats he uses for hiking, explaining their benefits and expressing his personal preference.",
"timestamp": "00:00:08.500"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin continues to address the viewer directly, engaging them with specific details about each hat."
}
],
"thematicElements": "Hiking gear, headwear, practicality, personal preferences",
"contextualRelevance": "",
"dynamismScore": 0.7,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 3,
"title": "Torso Clothing",
"timestamps": {
"start_timestamp": "00:00:37.083",
"end_timestamp": "00:01:28.125"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing the Berghaus fleece jacket",
"timestamp": {
"start_timestamp": "00:00:38.000",
"end_timestamp": "00:00:52.000"
}
},
{
"description": "Showing and describing the Montane base layer",
"timestamp": {
"start_timestamp": "00:00:52.000",
"end_timestamp": "00:01:27.000"
}
}
],
"props": [
{
"name": "Berghaus Deception 2.0 Fleece Jacket",
"timestamp": {
"start_timestamp": "00:00:38.000",
"end_timestamp": "00:00:52.000"
}
},
{
"name": "Montane Base Layer",
"timestamp": {
"start_timestamp": "00:00:52.000",
"end_timestamp": "00:01:27.000"
}
},
{
"name": "Hiking footage with the Berghaus jacket",
"timestamp": {
"start_timestamp": "00:00:44.000",
"end_timestamp": "00:00:50.000"
}
},
{
"name": "Montane Base Layer website page",
"timestamp": {
"start_timestamp": "00:01:07.000",
"end_timestamp": "00:01:18.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:00:38.000",
"end_timestamp": "00:01:27.000"
}
},
{
"description": "Transition to hiking footage with fade",
"timestamps": {
"start_timestamp": "00:00:44.000",
"end_timestamp": "00:00:44.000"
}
},
{
"description": "Transition to website page with cross dissolve",
"timestamps": {
"start_timestamp": "00:01:07.000",
"end_timestamp": "00:01:07.000"
}
}
],
"mood": {
"description": "Content - Robin's matter-of-fact descriptions and the visual presentation of the jacket and base layer contribute to a practical and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin continues to showcase his hiking attire, moving from headwear to torso clothing, providing details about their functions and his experience with them.",
"timestamp": "00:00:38.000"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, explaining the reasons behind his choice of clothing and highlighting their features."
}
],
"thematicElements": "Hiking gear, layering, warmth, comfort, durability",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 4,
"title": "Gloves and Watches",
"timestamps": {
"start_timestamp": "00:01:28.167",
"end_timestamp": "00:02:15.000"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing the Head gloves",
"timestamp": {
"start_timestamp": "00:01:28.167",
"end_timestamp": "00:01:37.000"
}
},
{
"description": "Showing and describing the Montane Prism gloves",
"timestamp": {
"start_timestamp": "00:01:37.000",
"end_timestamp": "00:01:45.000"
}
},
{
"description": "Showing and describing the Suunto Core watch",
"timestamp": {
"start_timestamp": "00:01:45.000",
"end_timestamp": "00:02:03.000"
}
},
{
"description": "Showing and describing the Casio twin sensor watch",
"timestamp": {
"start_timestamp": "00:02:03.000",
"end_timestamp": "00:02:15.000"
}
},
{
"description": "Showing the watches on his wrist",
"timestamp": {
"start_timestamp": "00:02:03.000",
"end_timestamp": "00:02:05.000"
}
},
{
"description": "Displaying the Suunto watch website page",
"timestamp": {
"start_timestamp": "00:01:50.000",
"end_timestamp": "00:01:57.000"
}
},
{
"description": "Displaying the Casio watch website page",
"timestamp": {
"start_timestamp": "00:02:06.000",
"end_timestamp": "00:02:12.000"
}
}
],
"props": [
{
"name": "Head gloves",
"timestamp": {
"start_timestamp": "00:01:28.167",
"end_timestamp": "00:01:37.000"
}
},
{
"name": "Montane Prism Gloves",
"timestamp": {
"start_timestamp": "00:01:37.000",
"end_timestamp": "00:01:45.000"
}
},
{
"name": "Suunto Core All Black watch",
"timestamp": {
"start_timestamp": "00:01:45.000",
"end_timestamp": "00:02:03.000"
}
},
{
"name": "Casio Black Dial Twin Sensor watch",
"timestamp": {
"start_timestamp": "00:02:03.000",
"end_timestamp": "00:02:15.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:01:28.167",
"end_timestamp": "00:02:15.000"
}
},
{
"description": "Transition to website pages with cross dissolve",
"timestamps": {
"start_timestamp": "00:01:50.000",
"end_timestamp": "00:02:06.000"
}
}
],
"mood": {
"description": "Content - The focus on the functional aspects of the gloves and watches, combined with Robin's straightforward descriptions, contribute to a practical and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin continues to showcase his hiking gear, focusing on gloves and watches, highlighting their features and explaining how he uses them.",
"timestamp": "00:01:28.167"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly engages with the viewer, sharing information about his preferred gloves and watches for hiking."
}
],
"thematicElements": "Hiking gear, protection, functionality, practicality",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 5,
"title": "Pants and Underwear",
"timestamps": {
"start_timestamp": "00:02:15.042",
"end_timestamp": "00:03:08.000"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Montane Terra pants",
"timestamp": {
"start_timestamp": "00:02:15.042",
"end_timestamp": "00:02:47.000"
}
},
{
"description": "Showing and describing Puma boxer shorts",
"timestamp": {
"start_timestamp": "00:02:47.000",
"end_timestamp": "00:03:08.000"
}
},
{
"description": "Displaying the Montane Terra pants website page",
"timestamp": {
"start_timestamp": "00:02:18.000",
"end_timestamp": "00:02:30.000"
}
}
],
"props": [
{
"name": "Montane Terra Pants",
"timestamp": {
"start_timestamp": "00:02:15.042",
"end_timestamp": "00:02:47.000"
}
},
{
"name": "Puma boxer shorts",
"timestamp": {
"start_timestamp": "00:02:47.000",
"end_timestamp": "00:03:08.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:02:15.042",
"end_timestamp": "00:03:08.000"
}
},
{
"description": "Transition to website page with cross dissolve",
"timestamps": {
"start_timestamp": "00:02:18.000",
"end_timestamp": "00:02:18.000"
}
}
],
"mood": {
"description": "Content - Robin's casual and descriptive tone, along with the visual presentation of the pants and boxer shorts, create a neutral and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin continues to showcase his hiking gear, moving to trousers and underwear, emphasizing the importance of comfort and durability.",
"timestamp": "00:02:15.042"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin continues to address the viewer directly, offering insights into his choices and sharing his personal preferences."
}
],
"thematicElements": "Hiking gear, comfort, durability, practicality, personal preferences",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 6,
"title": "Sock Layering",
"timestamps": {
"start_timestamp": "00:03:08.042",
"end_timestamp": "00:03:34.000"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Bridgedale Coolmax sock liners",
"timestamp": {
"start_timestamp": "00:03:08.042",
"end_timestamp": "00:03:16.000"
}
},
{
"description": "Showing and describing Smartwool Hike Light Crew socks",
"timestamp": {
"start_timestamp": "00:03:16.000",
"end_timestamp": "00:03:34.000"
}
}
],
"props": [
{
"name": "Bridgedale Coolmax sock liners",
"timestamp": {
"start_timestamp": "00:03:08.042",
"end_timestamp": "00:03:16.000"
}
},
{
"name": "Smartwool Hike Light Crew socks",
"timestamp": {
"start_timestamp": "00:03:16.000",
"end_timestamp": "00:03:34.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:03:08.042",
"end_timestamp": "00:03:34.000"
}
}
],
"mood": {
"description": "Content - Robin's matter-of-fact tone and the presentation of the socks maintain a practical and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin showcases the layering system he uses for hiking socks, highlighting the benefits of both liner socks and merino wool socks.",
"timestamp": "00:03:08.042"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin addresses the viewer directly, explaining how the different sock types contribute to his hiking comfort and performance."
}
],
"thematicElements": "Hiking gear, sock layering, comfort, blister prevention",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 7,
"title": "Hiking Footwear",
"timestamps": {
"start_timestamp": "00:03:34.042",
"end_timestamp": "00:04:08.125"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Hanwag hiking boots",
"timestamp": {
"start_timestamp": "00:03:34.042",
"end_timestamp": "00:04:08.000"
}
},
{
"description": "Hiking footage with boots",
"timestamp": {
"start_timestamp": "00:04:06.000",
"end_timestamp": "00:04:08.000"
}
}
],
"props": [
{
"name": "Hanwag Alta Bunion GTX boots",
"timestamp": {
"start_timestamp": "00:03:34.042",
"end_timestamp": "00:04:08.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop name",
"timestamps": {
"start_timestamp": "00:03:34.042",
"end_timestamp": "00:04:08.000"
}
},
{
"description": "Transition to hiking footage with cross dissolve",
"timestamps": {
"start_timestamp": "00:04:06.000",
"end_timestamp": "00:04:06.000"
}
}
],
"mood": {
"description": "Content - Robin's factual tone and the detailed examination of the boots contribute to a practical and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin transitions to hiking footwear, emphasizing the importance of comfortable and durable boots for hiking.",
"timestamp": "00:03:34.042"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin addresses the viewer directly, sharing details about his preferred boots and highlighting their features and benefits."
}
],
"thematicElements": "Hiking gear, footwear, comfort, support, durability",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 8,
"title": "Warm Weather Layers",
"timestamps": {
"start_timestamp": "00:04:08.167",
"end_timestamp": "00:04:46.000"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Arcteryx Atom LT vest",
"timestamp": {
"start_timestamp": "00:04:08.167",
"end_timestamp": "00:04:22.000"
}
},
{
"description": "Showing and describing Tiso t-shirt",
"timestamp": {
"start_timestamp": "00:04:22.000",
"end_timestamp": "00:04:46.000"
}
},
{
"description": "Footage of Robin climbing with t-shirt",
"timestamp": {
"start_timestamp": "00:04:31.000",
"end_timestamp": "00:04:36.000"
}
}
],
"props": [
{
"name": "Arcteryx Atom LT vest",
"timestamp": {
"start_timestamp": "00:04:08.167",
"end_timestamp": "00:04:22.000"
}
},
{
"name": "Tiso t-shirt",
"timestamp": {
"start_timestamp": "00:04:22.000",
"end_timestamp": "00:04:46.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:04:08.167",
"end_timestamp": "00:04:22.000"
}
},
{
"description": "Transition to climbing footage with fade",
"timestamps": {
"start_timestamp": "00:04:31.000",
"end_timestamp": "00:04:31.000"
}
}
],
"mood": {
"description": "Content - Robin's practical tone and the presentation of the vest and t-shirt maintain a neutral and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin shows additional layers for warm weather hiking, including a vest and a synthetic t-shirt.",
"timestamp": "00:04:08.167"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, explaining his choices for layering in warmer temperatures."
}
],
"thematicElements": "Hiking gear, layering, temperature regulation, comfort",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 9,
"title": "Warm Weather Gear",
"timestamps": {
"start_timestamp": "00:04:46.042",
"end_timestamp": "00:05:21.708"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Forclaz trekking shorts",
"timestamp": {
"start_timestamp": "00:04:46.042",
"end_timestamp": "00:05:17.000"
}
},
{
"description": "Showing and describing Bridgedale Trail Sport socks",
"timestamp": {
"start_timestamp": "00:05:17.000",
"end_timestamp": "00:05:21.000"
}
},
{
"description": "Displaying the Forclaz shorts website page",
"timestamp": {
"start_timestamp": "00:04:52.000",
"end_timestamp": "00:05:01.000"
}
}
],
"props": [
{
"name": "Forclaz trekking shorts",
"timestamp": {
"start_timestamp": "00:04:46.042",
"end_timestamp": "00:05:17.000"
}
},
{
"name": "Bridgedale Trail Sport socks",
"timestamp": {
"start_timestamp": "00:05:17.000",
"end_timestamp": "00:05:21.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:04:53.000",
"end_timestamp": "00:05:21.000"
}
},
{
"description": "Transition to website page with cross dissolve",
"timestamps": {
"start_timestamp": "00:04:52.000",
"end_timestamp": "00:04:52.000"
}
}
],
"mood": {
"description": "Content - Robin's relaxed tone and the presentation of the shorts and socks maintain a neutral and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin continues showcasing gear for warmer weather hiking, including shorts and lightweight socks for trail shoes.",
"timestamp": "00:04:46.042"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin addresses the viewer directly, explaining his choices and offering insights into his preferences for warm weather gear."
}
],
"thematicElements": "Hiking gear, comfort, practicality, affordability",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 10,
"title": "Socks and Trail Runners",
"timestamps": {
"start_timestamp": "00:05:21.750",
"end_timestamp": "00:06:33.000"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Darn Tough socks",
"timestamp": {
"start_timestamp": "00:05:21.750",
"end_timestamp": "00:05:46.000"
}
},
{
"description": "Showing and describing Saucony Peregrine ISO trail runners",
"timestamp": {
"start_timestamp": "00:05:46.000",
"end_timestamp": "00:06:33.000"
}
},
{
"description": "Displaying hiking footage with the Saucony trail runners",
"timestamp": {
"start_timestamp": "00:06:06.000",
"end_timestamp": "00:06:11.000"
}
},
{
"description": "Showing heel lift issue with the Saucony shoes",
"timestamp": {
"start_timestamp": "00:06:15.000",
"end_timestamp": "00:06:21.000"
}
}
],
"props": [
{
"name": "Darn Tough socks",
"timestamp": {
"start_timestamp": "00:05:21.750",
"end_timestamp": "00:05:46.000"
}
},
{
"name": "Saucony Peregrine ISO trail runners",
"timestamp": {
"start_timestamp": "00:05:46.000",
"end_timestamp": "00:06:33.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:05:23.000",
"end_timestamp": "00:05:51.000"
}
},
{
"description": "Transition to hiking footage with fade",
"timestamps": {
"start_timestamp": "00:06:06.000",
"end_timestamp": "00:06:06.000"
}
},
{
"description": "Transition to close up shot of shoes on rock with fade",
"timestamps": {
"start_timestamp": "00:06:15.000",
"end_timestamp": "00:06:15.000"
}
}
],
"mood": {
"description": "Content - Robin's practical tone and the presentation of the socks and trail runners maintain a neutral and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin showcases the socks and shoes he uses for longer hiking trips, emphasizing their comfort and features.",
"timestamp": "00:05:21.750"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, sharing information about his preferred gear and addressing a minor issue with heel lift in the trail runners."
}
],
"thematicElements": "Hiking gear, comfort, durability, performance",
"contextualRelevance": "",
"dynamismScore": 0.7,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 11,
"title": "Jackets for Cold Weather",
"timestamps": {
"start_timestamp": "00:06:33.042",
"end_timestamp": "00:07:09.000"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Mountain Equipment Superflux jacket",
"timestamp": {
"start_timestamp": "00:06:33.042",
"end_timestamp": "00:06:52.000"
}
},
{
"description": "Showing and describing Mountain Equipment Firefox jacket",
"timestamp": {
"start_timestamp": "00:06:52.000",
"end_timestamp": "00:07:09.000"
}
},
{
"description": "Footage of Robin inside tent with Superflux jacket",
"timestamp": {
"start_timestamp": "00:06:46.000",
"end_timestamp": "00:06:51.000"
}
}
],
"props": [
{
"name": "Mountain Equipment Superflux jacket",
"timestamp": {
"start_timestamp": "00:06:33.042",
"end_timestamp": "00:06:52.000"
}
},
{
"name": "Mountain Equipment Firefox jacket",
"timestamp": {
"start_timestamp": "00:06:52.000",
"end_timestamp": "00:07:09.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop names",
"timestamps": {
"start_timestamp": "00:06:33.042",
"end_timestamp": "00:07:09.000"
}
},
{
"description": "Transition to tent footage with fade",
"timestamps": {
"start_timestamp": "00:06:46.000",
"end_timestamp": "00:06:46.000"
}
}
],
"mood": {
"description": "Content - Robin's straightforward descriptions and the visual presentation of the jackets contribute to a practical and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin showcases insulation layers for colder weather hiking and camping, including a synthetic down jacket and a waterproof shell jacket.",
"timestamp": "00:06:33.042"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, explaining the features and benefits of the jackets and mentioning the need to replace the shell jacket soon."
}
],
"thematicElements": "Hiking gear, insulation, warmth, waterproof protection",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 0.9
},
{
"sceneId": 12,
"title": "Waterproof Trousers",
"timestamps": {
"start_timestamp": "00:07:09.042",
"end_timestamp": "00:07:38.208"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Showing and describing Berghaus Paclite waterproof trousers",
"timestamp": {
"start_timestamp": "00:07:09.042",
"end_timestamp": "00:07:38.000"
}
}
],
"props": [
{
"name": "Berghaus Paclite waterproof trousers",
"timestamp": {
"start_timestamp": "00:07:09.042",
"end_timestamp": "00:07:38.000"
}
}
],
"videoEditingDetails": [
{
"description": "Text overlay with prop name",
"timestamps": {
"start_timestamp": "00:07:22.000",
"end_timestamp": "00:07:26.000"
}
}
],
"mood": {
"description": "Content - Robin's casual tone and the presentation of the waterproof trousers maintain a neutral and informative mood.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin concludes his gear showcase by presenting his waterproof trousers, highlighting their durability and packability.",
"timestamp": "00:07:09.042"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, explaining his experience with the trousers and pointing out some wear and tear."
}
],
"thematicElements": "Hiking gear, waterproof protection, durability",
"contextualRelevance": "",
"dynamismScore": 0.6,
"audioVisualCorrelation": 1.0
},
{
"sceneId": 13,
"title": "Conclusion and Engagement",
"timestamps": {
"start_timestamp": "00:07:38.250",
"end_timestamp": "00:07:53.583"
},
"cast": [
"Robin"
],
"activities": [
{
"description": "Summarizing the video",
"timestamp": {
"start_timestamp": "00:07:38.250",
"end_timestamp": "00:07:52.000"
}
},
{
"description": "Encouraging viewers to ask questions",
"timestamp": {
"start_timestamp": "00:07:38.250",
"end_timestamp": "00:07:45.000"
}
},
{
"description": "Encouraging viewers to subscribe",
"timestamp": {
"start_timestamp": "00:07:45.000",
"end_timestamp": "00:07:52.000"
}
}
],
"props": [],
"videoEditingDetails": [
{
"description": "Film strip effect",
"timestamps": {
"start_timestamp": "00:07:38.250",
"end_timestamp": "00:07:38.250"
}
},
{
"description": "Text overlay with 'Subscribe'",
"timestamps": {
"start_timestamp": "00:07:46.000",
"end_timestamp": "00:07:51.000"
}
},
{
"description": "Downward arrow icon overlay on Robin's face",
"timestamps": {
"start_timestamp": "00:07:47.000",
"end_timestamp": "00:07:51.000"
}
}
],
"mood": {
"description": "Content - Robin's relaxed tone and direct address to the viewer create a sense of closure and friendliness.",
"keyMoments": []
},
"narrativeProgression": [
{
"description": "Robin concludes the video by summarizing the content, inviting viewers to ask questions, and encouraging them to subscribe to his channel.",
"timestamp": "00:07:38.250"
}
],
"characterInteraction": [
{
"characters": [
"Robin"
],
"description": "Robin directly addresses the viewer, fostering a connection and encouraging further interaction."
}
],
"thematicElements": "Hiking gear, community engagement",
"contextualRelevance": "",
"dynamismScore": 0.8,
"audioVisualCorrelation": 1.0
}
],
"storylines": {
"description": "Robin showcases and describes the hiking gear he uses, categorized by clothing type and purpose.",
"scenes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13
],
"climax": {
"description": "Not applicable as there isn't a traditional narrative climax.",
"timestamp": null
}
},
"qAndA": [
{
"question": "What brand of socks does Robin use with his hiking boots?",
"answer": "He uses Smartwool Hike Light Crew socks with Bridgedale Coolmax sock liners underneath."
},
{
"question": "Why did Robin buy the Hanwag hiking boots?",
"answer": "He bought them because they are designed for wider feet and people with bunions, which he has on his left foot."
},
{
"question": "What is Robin's main complaint about the Saucony Peregrine ISO trail runners?",
"answer": "He experiences a slight bit of heel lift when wearing them, although it hasn't caused him blisters."
},
{
"question": "What type of jacket does Robin wear inside his tent for warmth?",
"answer": "He wears the Mountain Equipment Superflux jacket, which is a synthetic insulated jacket."
},
{
"question": "Does Robin prefer merino wool or synthetic base layers for hiking?",
"answer": "He prefers merino wool, but he mentions that he uses a synthetic blend for durability and a longer lifespan."
}
],
"trimmingSuggestions": [
{
"description": "Trim the website pages displaying the products to shorter durations, showing just a glimpse of the product and price.",
"timestamps": {
"start_timestamp": null,
"end_timestamp": null
}
},
{
"description": "Trim some of the repetitive hiking footage to keep the visual flow engaging, such as reducing the duration of Robin hiking with the same jacket.",
"timestamps": {
"start_timestamp": null,
"end_timestamp": null
}
}
],
"fps": 24.0
},
"text_to_speech": "hi folks robin here in today's film i'm going to show you exactly what i wear when i'm hiking on the hills from head to toe let's get stuck right in okay to kick this off we'll start with the beanie hat this is just a classic beanie from mountain equipment but it's not so chilly i like to wear a baseball cap this is an outdoor research one i really like this very comfortable i have to say so this here is my tilly hat i've just bought this earlier on this year it was in the in the sale they're 75 pound normally i've got this for about 40 odd these last a lifetime i just hope i don't look too grandad or indiana jones in it though okay so moving down to the torso this here is my burger sort of fleece jacket i wear this all the time i love it i actually won this from a taizo instagram competition by posting a photo so that was quite good if it's too hot for the fleece this will obviously come off and underneath i'll have this montane this is a synthetic merino blend as you see it's a few years old it's got more holes in the tea bag so i'm going to have to replace this at some point if i liked this um i think i was about 55 pounds and i think having the blend is the best of both because you get the strength of the man-made fibers and then you get the the qualities of the median also you've got some warmth and obviously they don't smell half as quick as just synthetic tops glove wise i've got these packable head ones these are just cheap ones you can use your phone with them as well if it's a bit colder still i'll opt for the mountain prism gloves which are here these pack up tiny watch-wise i don't go in for smart watches so i have this here it's a sunto all black core i just use this for my time what height i'm at and that's pretty much it oh if you take off your rush you get a good temperature reading as well for when you're camped up at night during lockdown i also bought this this is the casio equivalent it's a bit more retro but argos other sale and i thought why not moving on to trousers i have had these for years i got this pair for my 30th birthday and i am 39 this year just to give you an idea how old these are they've been everywhere i've seen so many monroes these ones are a bit past that i went and ripped from there they've got them caught on a nail so i've actually replaced these with the baltic blue equivalent and i'm looking forward to trying them out but these i really have lasted the test of time if i hadn't ripped them there these over the last another few years i reckon i always wonder why people spend hundreds of pounds on quick dry and lightweight gear and then they wear cotton boxing shorts so i go with i've got puma but i do this equivalence and these they're just they don't chafe as much they dry quicker and they're just so much better than cotton i don't know why these wear cotton boxers but there you go moving on to the socks this is the british steel sock cleaners these help reduce chances of blisters and so i wear them underneath and then i have the smart wheel these are a mid-weight sock which are ideal for free season use they're not too thick but they're thick enough to give you some cushioning and again they don't smell as bad because obviously marina will i will touch on footwear footwear is a very personal thing because we'll have different sized feet but however these are my hand wags and the reason i bought these is they're designed for people with wider feet and or a bunion i do unfortunately have a mild banging on my left foot so these are one of the few boots i've found actually fit my feet without hurting the gore-tex lined they're grippy you can see they're starting to wear out the front there i really like these and i will be buying another pair right so when it's really hot and the weather forecast is looking ding-dong you know the temperatures are going to be pretty high for your trip i would wear this a little gilly for if it's a bit chilly at the summit and underneath the gillette that's an arterix by the way now i'm not sponsored by taizo by the way but um we got these free from a taizo event but um i would wear this or a similar sort of t-shirt synthetic um again these tend to smell after a day or two i do prefer merino wool but this is just for shorter quick day trips i don't wear shorts very often i didn't want to spend a fortune so i turned to decathlon and these four class shots are 25 pound i've got a pair on just now as well they are 25 pound i think i just mentioned that they're comfortable they're lightweight they dry quick i was actually tempted to buy the trouser version of these but i decided just to go with what i knew and i stuck with the mountain terra pants but yes really good shots like these a lot these socks are what i'd wear if i'm wearing trail shoes trail runners so i've just got a pair of sort of ankle height bridge tail socks these are quite thin but they put the cushioning in the important places obviously the toes and your heels and i find them pretty comfortable with quick drying because there's not a lot of material there for a bit more comfort and longer trips i've gone for the darn tough ones and these are kraken socks i have to say i've only worn these once or twice but i'm impressed so far summer footwear these are the saucony peregrine iso shoes these are brilliant as you can see they've got a very aggressive sole they've got a rock plate here to protect your soul got a lot of cushioning at the back and there's a four millimeter lift from toe to heel i find these incredibly comfortable and they're brilliant no complaints whatsoever well one minor complaint actually you do get a slight bit of heel lift um and i've read this before however i've never had any blisters from that it's just something you have to get used to but otherwise yeah i've actually bought another pair of these and they're on their way because they've brought a new model and i just think these are you know what it's like next up is insulation this here is the a mountain equipment superflux jacket it's synthetic rather than down and it weighs about 440 grams this side we're at at the summit if it was chilly or if i'm out camping for later on in the evening when the temperatures drop rain gear i have the mountain equipment firefly jacket this is going to be replaced soon it's starting to wear out a wee bit uh it's still waterproof but you can see there the gore-tex there's just starting to free a wee bit so i think i'll be getting replaced soon i do like that i might buy the newer version of that see what's out at the time waterproof trousers i've gone for the bergos backlight equivalent to the jacket there they're both packed lights and these have never really let me down either again they're getting on a bit there's a rip here somewhere when i had crampons on where is it you can see i've tried to patch up there but yeah they're really good too all right folks i hope you found that useful if you've got any questions about anything that'll wear please just drop the question below in the comments section if you haven't already please do hit the subscribe button as well otherwise i'm gonna get a cold drink and i'll catch you next one cheers"
} |