File size: 62,040 Bytes
5d4f9a0 | 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 | {
"data": [
{
"caption": "Girl dancing happily in the middle of a field of pink and blue flowers, during a bright day.",
"image_path": "clouds/Girl_dancing_happily_in_the_middle_of_a_field_of_pink_and_blue_flowers__during_a_bright_day_-mixkit-girl-dancing-happily-in-a-field-of-flowers-4702.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Beautiful countryside meadow during summer with trees, grass and little yellow flowers in the ground on a sunny day.",
"image_path": "clouds/Beautiful_countryside_meadow_during_summer_with_trees__grass_and_little_yellow_flowers_in_the_ground-mixkit-countryside-meadow-4075.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Walk in first person along a road in the middle of a mountain range with a lot of vegetation, during a sunny afternoon.",
"image_path": "clouds/Walk_in_first_person_along_a_road_in_the_middle_of_a_mountain_range_with_a_lot_of_vegetation__during-mixkit-highway-in-the-middle-of-a-mountain-range-4633.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying through the clouds in a plane with this sky background video, with an aerial view of green mountains.",
"image_path": "clouds/Flying_through_the_clouds_in_a_plane_with_this_sky_background_video__with_an_aerial_view_of_green_mo-mixkit-clouds-and-blue-sky-background-2408.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of a valley with lots of vegetation, with the clouds passing and the wind moving the trees.",
"image_path": "clouds/Time_lapse_of_a_valley_with_lots_of_vegetation__with_the_clouds_passing_and_the_wind_moving_the_tree-mixkit-valley-time-lapse-4028.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Eagle gliding with its wings open in a clear sky, bottom view. An eagle flying.",
"image_path": "clouds/Eagle_gliding_with_its_wings_open_in_a_clear_sky__bottom_view__An_eagle_flying_-mixkit-eagle-gliding-in-a-clear-sky-bottom-view-1706.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Tall dry grass waves in the breeze under a blue sky with white fluffy clouds.",
"image_path": "clouds/Tall_dry_grass_waves_in_the_breeze_under_a_blue_sky_with_white_fluffy_clouds_-mixkit-weeds-waving-in-the-breeze-1178.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Clear blue sky as the clouds move and travel with the wind, on a clear and sunny day.",
"image_path": "clouds/Clear_blue_sky_as_the_clouds_move_and_travel_with_the_wind__on_a_clear_and_sunny_day_-mixkit-blue-sky-with-clouds-moving-with-the-wind-26112.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Clouds move across the clear blue sky, then slowly become darker.",
"image_path": "clouds/Clouds_move_across_the_clear_blue_sky__then_slowly_become_darker_-mixkit-cloudy-sky-118.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of a green meadow with clouds moving in the sky casting their shadows",
"image_path": "clouds/Time_lapse_of_a_green_meadow_with_clouds_moving_in_the_sky_casting_their_shadows-mixkit-time-lapse-of-a-green-meadow-4070.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View from the window of an airplane in flight on a sunny day, you can see an airplane wing and a turbine, the fluffy white clouds below, the sun on top, the blue sky in the background.",
"image_path": "clouds/View_from_the_window_of_an_airplane_in_flight_on_a_sunny_day__you_can_see_an_airplane_wing_and_a_tur-mixkit-sky-through-a-plane-window-4368.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of a desert with dry vegetation and some cacti in Baja California Mexico",
"image_path": "clouds/Time_lapse_of_a_desert_with_dry_vegetation_and_some_cacti_in_Baja_California_Mexico-mixkit-beautiful-desert-landscape-timelapse-4049.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Road surrounded by mountains and nature on a day with cloudy and foggy.",
"image_path": "clouds/Road_surrounded_by_mountains_and_nature_on_a_day_with_cloudy_and_foggy_-mixkit-road-surrounded-by-mountains-2392.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of the clock on top of Big Ben in London England with clouds passing in the background",
"image_path": "clouds/Time_lapse_of_the_clock_on_top_of_Big_Ben_in_London_England_with_clouds_passing_in_the_background-mixkit-big-ben-clock-time-lapse-4079.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Fisheye shot looking up to the sky capturing buildings at a financial area of a city. Corporate and business buildings in the city.",
"image_path": "clouds/Fisheye_shot_looking_up_to_the_sky_capturing_buildings_at_a_financial_area_of_a_city__Corporate_and_-mixkit-corporate-and-business-buildings-in-the-city-4170.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Take above the thick clouds moving with the wind that slowly cover a large forest covered with abundant trees.",
"image_path": "clouds/Take_above_the_thick_clouds_moving_with_the_wind_that_slowly_cover_a_large_forest_covered_with_abund-mixkit-view-above-the-clouds-that-cover-a-large-forest-39713.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Skydiver gliding over a mountain range covered entirely in green by vegetation, during a clear and sunny day.",
"image_path": "clouds/Skydiver_gliding_over_a_mountain_range_covered_entirely_in_green_by_vegetation__during_a_clear_and_s-mixkit-skydiver-flying-over-a-mountain-range-4647.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of the desert with clouds quickly traversing the blue sky and casting its shadow in the desert with dry vegetation and cactus",
"image_path": "clouds/Time_lapse_of_the_desert_with_clouds_quickly_traversing_the_blue_sky_and_casting_its_shadow_in_the_d-mixkit-desert-time-lapse-4048.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Clouds in the sky moving and flowing with the wind, with the sky in the background turquoise blue, and the clouds navy blue.",
"image_path": "clouds/Clouds_in_the_sky_moving_and_flowing_with_the_wind__with_the_sky_in_the_background_turquoise_blue__a-mixkit-clouds-in-the-sky-flowing-with-the-wind-21584.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of a large argan tree being moved by the wind in the savanna on a sunny day with the clouds passing in the sky.",
"image_path": "clouds/Time_lapse_of_a_large_argan_tree_being_moved_by_the_wind_in_the_savanna_on_a_sunny_day_with_the_clou-mixkit-huge-argan-tree-in-the-savanna-4027.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of the Eiffel Tower and the buildings near it on a cloudy day.",
"image_path": "clouds/Time_lapse_of_the_Eiffel_Tower_and_the_buildings_near_it_on_a_cloudy_day_-mixkit-the-eiffel-tower-and-the-buildings-near-it-4145.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Landscape of a plain covered with green grass, with the silhouettes of hills in the distance on the horizon, and the sky covered with thick clouds.",
"image_path": "clouds/Landscape_of_a_plain_covered_with_green_grass__with_the_silhouettes_of_hills_in_the_distance_on_the_-mixkit-landscape-of-an-immense-plain-surrounded-by-hills-21581.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time-lapse shot of the moon in the sky at the evening.",
"image_path": "clouds/Time-lapse_shot_of_the_moon_in_the_sky_at_the_evening_-mixkit-moon-in-the-sky-at-the-evening-1938.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Almost cloudless blue sky seen directly above, with some thin clouds of steam moving slowly, creating different random shapes.",
"image_path": "clouds/Almost_cloudless_blue_sky_seen_directly_above__with_some_thin_clouds_of_steam_moving_slowly__creatin-mixkit-blue-sky-seen-directly-with-some-clouds-moving-21574.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Vertical video of thick clouds traveling fast with the wind in the sky, while a hole is visible that lets in the white light of the sky.",
"image_path": "clouds/Vertical_video_of_thick_clouds_traveling_fast_with_the_wind_in_the_sky__while_a_hole_is_visible_that-mixkit-thick-clouds-speeding-in-the-sky-with-the-wind-21585.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Timelapse of the Amazing mountains in the Alps. Landscape of big mountains with a forest with tall trees in the bottom and cloudy sky above. It's getting dark and the wind is moving the clouds and trees.",
"image_path": "clouds/Timelapse_of_the_Amazing_mountains_in_the_Alps__Landscape_of_big_mountains_with_a_forest_with_tall_t-mixkit-amazing-mountains-in-the-alps-4131.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time-lapse of a natural landscape with mountains and clouds passing while the sky gradually darkens.",
"image_path": "clouds/Time-lapse_of_a_natural_landscape_with_mountains_and_clouds_passing_while_the_sky_gradually_darkens_-mixkit-time-lapse-view-of-a-mountain-281.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View of the cloudy sky covered with thick dark blue clouds, which travel slowly with the impulse of the wind.",
"image_path": "clouds/View_of_the_cloudy_sky_covered_with_thick_dark_blue_clouds__which_travel_slowly_with_the_impulse_of_-mixkit-cloudy-sky-covered-with-thick-clouds-moving-with-the-wind-21576.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Large hill covered with vegetation and clouds of mist that quickly cross from side to side in a time lapse, as night falls quickly.",
"image_path": "clouds/Large_hill_covered_with_vegetation_and_clouds_of_mist_that_quickly_cross_from_side_to_side_in_a_time-mixkit-large-hill-covered-with-vegetation-in-a-timelapse-44648.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Aerial view at sunset of a green forest and some houses in the center with mountains and lakes in the background",
"image_path": "clouds/Aerial_view_at_sunset_of_a_green_forest_and_some_houses_in_the_center_with_mountains_and_lakes_in_th-mixkit-aerial-view-of-a-green-forest-with-mountains-and-lakes-2796.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Bottom view of an old symmetrical mosque with many domes of different sizes, in the background the clear sky with clouds passing and its shadows projecting in the Mosque.",
"image_path": "clouds/Bottom_view_of_an_old_symmetrical_mosque_with_many_domes_of_different_sizes__in_the_background_the_c-mixkit-symmetrical-mosque-4313.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Panoramic view of the surroundings of the Notre Dame Cathedral during a sunny afternoon. Cars pass through the street and large clusters of people walk along the sidewalk and cross the river.",
"image_path": "clouds/Panoramic_view_of_the_surroundings_of_the_Notre_Dame_Cathedral_during_a_sunny_afternoon__Cars_pass_t-mixkit-the-surroundings-of-notre-dame-cathedral-4329.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Passenger plane preparing for takeoff near the runway at the airport. Airport staff preparing a flight with a FedEx transport plane in the background.",
"image_path": "clouds/Passenger_plane_preparing_for_takeoff_near_the_runway_at_the_airport__Airport_staff_preparing_a_flig-mixkit-passenger-plane-preparing-for-takeoff-4083.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "English castle in the countryside with a beautiful garden with grass and trees on a clear day",
"image_path": "clouds/English_castle_in_the_countryside_with_a_beautiful_garden_with_grass_and_trees_on_a_clear_day-mixkit-castle-and-beautiful-garden-4074.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Looking out the window of a plane that is flying over the clouds.",
"image_path": "clouds/Looking_out_the_window_of_a_plane_that_is_flying_over_the_clouds_-mixkit-looking-at-the-sky-from-the-window-of-an-airplane-3099.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Bottom shot of the top of an ancient mosque full of details, with a large dome, on the sides it has a pair of pointed towers, in the background, there are buildings and dry trees",
"image_path": "clouds/Bottom_shot_of_the_top_of_an_ancient_mosque_full_of_details__with_a_large_dome__on_the_sides_it_has_-mixkit-ancient-mosque-4311.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Light clouds in the sky moving very slowly with the wind, strong blue in color contrasting with the lighter blue sky.",
"image_path": "clouds/Light_clouds_in_the_sky_moving_very_slowly_with_the_wind__strong_blue_in_color_contrasting_with_the_-mixkit-clouds-in-the-sky-traveling-slowly-with-the-wind-21575.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time lapse of the desert with rocky structures and moving clouds during the day",
"image_path": "clouds/Time_lapse_of_the_desert_with_rocky_structures_and_moving_clouds_during_the_day-mixkit-desert-time-lapse-with-rocky-structures-4096.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Representation of the sun rising behind the clouds illuminating the scene, made with homemade materials, such as a yellow balloon and some cotton.",
"image_path": "clouds/Representation_of_the_sun_rising_behind_the_clouds_illuminating_the_scene__made_with_homemade_materi-mixkit-representation-of-a-sunrise-made-with-homemade-materials-13769.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Looking at the clouds and wing of an airplane from the window during a flight.",
"image_path": "clouds/Looking_at_the_clouds_and_wing_of_an_airplane_from_the_window_during_a_flight_-mixkit-looking-at-the-clouds-from-a-plane-window-2684.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying over the roofs of houses in the suburbs, with the sunset above the horizon.",
"image_path": "clouds/Flying_over_the_roofs_of_houses_in_the_suburbs__with_the_sunset_above_the_horizon_-mixkit-view-from-above-to-houses-in-the-suburbs-3420.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Facade of the Expiatorio del Sagrat Cor temple in Barcelona with a statue of Christ with open arms on top, during a sunny day",
"image_path": "clouds/Facade_of_the_Expiatorio_del_Sagrat_Cor_temple_in_Barcelona_with_a_statue_of_Christ_with_open_arms_o-mixkit-facade-of-the-expiatory-temple-of-sagrat-cor-in-barcelona-4439.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Hill covered with abundant trees and vegetation, while the shadows of the clouds in the sky pass quickly.",
"image_path": "clouds/Hill_covered_with_abundant_trees_and_vegetation__while_the_shadows_of_the_clouds_in_the_sky_pass_qui-mixkit-tree-covered-hill-in-nature-44646.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Aerial view of rocks in a field with green grass on a cloudy day with the forest in the background",
"image_path": "clouds/Aerial_view_of_rocks_in_a_field_with_green_grass_on_a_cloudy_day_with_the_forest_in_the_background-mixkit-aerial-view-of-rocks-in-the-countryside-2789.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Landscape of a natural environment, with many hills, relief, plateaus, grass, trees and a lake, in an aerial shot that turns from below towards the sky.",
"image_path": "clouds/Landscape_of_a_natural_environment__with_many_hills__relief__plateaus__grass__trees_and_a_lake__in_a-mixkit-aerial-look-at-a-natural-landscape-on-a-sunny-day-26079.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Lagoon in the middle of a plain covered with green grass, bushes and trees, surrounded by great mountains that cover the horizon, with a sky covered with thick clouds.",
"image_path": "clouds/Lagoon_in_the_middle_of_a_plain_covered_with_green_grass__bushes_and_trees__surrounded_by_great_moun-mixkit-landscape-of-a-great-plain-with-a-lake-trees-and-26073.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Statue with praying hands is on the rocks. Moving clouds in the background",
"image_path": "clouds/Statue_with_praying_hands_is_on_the_rocks__Moving_clouds_in_the_background-mixkit-statue-on-the-rocks-4063.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Mist clouds covering a landscape with trees, and various types of relief, during a sunset, seen from above.",
"image_path": "clouds/Mist_clouds_covering_a_landscape_with_trees__and_various_types_of_relief__during_a_sunset__seen_from-mixkit-landscape-seen-from-above-covered-by-mist-39710.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Abstract motion picture of a woman with tattoos and piercings, dressed with the sky and clouds in pink, with lines and circles in pastel colors.",
"image_path": "clouds/Abstract_motion_picture_of_a_woman_with_tattoos_and_piercings__dressed_with_the_sky_and_clouds_in_pi-mixkit-abstract-image-with-movement-of-a-woman-in-pastel-colors-32713.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "A high point of view of Manhattan in the financial district on a sunny afternoon. Buildings of various sizes, in a warm tone, in the background the sky and clouds move with the wind.",
"image_path": "clouds/A_high_point_of_view_of_Manhattan_in_the_financial_district_on_a_sunny_afternoon__Buildings_of_vario-mixkit-city-full-of-buildings-4339.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Front shot of the Stonehenge ruins on a sunny day as clouds travel across the sky.",
"image_path": "clouds/Front_shot_of_the_Stonehenge_ruins_on_a_sunny_day_as_clouds_travel_across_the_sky_-mixkit-stonehenge-ruins-4425.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Tree moving its branches slowly with the air, while the sun shines through in the blue sky, while the taking rises.",
"image_path": "clouds/Tree_moving_its_branches_slowly_with_the_air__while_the_sun_shines_through_in_the_blue_sky__while_th-mixkit-sun-seen-through-the-leaves-of-a-tree-3976.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Abstract and artistic video of a woman's head with blue painted lips, split in half, as steam comes out and a spinning pinwheel, with clouds behind on a pink background with a blue gradient circle.",
"image_path": "clouds/Abstract_and_artistic_video_of_a_woman_s_head_with_blue_painted_lips__split_in_half__as_steam_comes_-mixkit-abstract-video-of-a-womans-head-with-a-pinwheel-coming-13788.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying high above a large forest covered with many trees, while white clouds travel through.",
"image_path": "clouds/Flying_high_above_a_large_forest_covered_with_many_trees__while_white_clouds_travel_through_-mixkit-view-high-above-a-large-forest-through-the-clouds-39711.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "High view of the city of Paris on a sunny day, with the roof of a building in focus. With buildings to the horizon and the blue sky full of clouds. Blue roofs in the city stand out.",
"image_path": "clouds/High_view_of_the_city_of_Paris_on_a_sunny_day__with_the_roof_of_a_building_in_focus__With_buildings_-mixkit-paris-rooftops-4354.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Natural relief with mountains covered with trees and plants, a lake and a small town, seen from the heights, while the clouds slowly cover the view.",
"image_path": "clouds/Natural_relief_with_mountains_covered_with_trees_and_plants__a_lake_and_a_small_town__seen_from_the_-mixkit-natural-relief-from-the-heights-during-sunset-39709.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Wide forest covered by abundant trees, seen from very high, while the clouds travel slowly overhead.",
"image_path": "clouds/Wide_forest_covered_by_abundant_trees__seen_from_very_high__while_the_clouds_travel_slowly_overhead_-mixkit-tree-covered-forest-from-above-through-the-clouds-39712.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Clouds in different colors and moving pass over the moon from day to night",
"image_path": "clouds/Clouds_in_different_colors_and_moving_pass_over_the_moon_from_day_to_night-mixkit-clouds-passing-over-the-moon-3147.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Wide mountain range covered by an immense forest full of trees, and by thick clouds in the distance, traveled from above.",
"image_path": "clouds/Wide_mountain_range_covered_by_an_immense_forest_full_of_trees__and_by_thick_clouds_in_the_distance_-mixkit-mountain-range-covered-by-trees-seen-from-above-28344.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Large lake in a huge plain surrounded by mountain ranges, with grass, trees and other vegetation on a cloudy afternoon.",
"image_path": "clouds/Large_lake_in_a_huge_plain_surrounded_by_mountain_ranges__with_grass__trees_and_other_vegetation_on_-mixkit-lake-in-a-huge-plain-seen-from-the-air-26075.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying over a mountainous landscape covered with many clouds of steam that travel slowly with the wind, during a sunset.",
"image_path": "clouds/Flying_over_a_mountainous_landscape_covered_with_many_clouds_of_steam_that_travel_slowly_with_the_wi-mixkit-flying-over-a-mountainous-landscape-covered-with-clouds-39702.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Green harvest fields on a cloudy day with some trees and mountains in the background.",
"image_path": "clouds/Green_harvest_fields_on_a_cloudy_day_with_some_trees_and_mountains_in_the_background_-mixkit-harvest-fields-on-a-cloudy-day-2127.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Panorama of a meadow surrounded by trees, a small cabin, a wooden table for lunches, and a large row of large antennas surrounded by trees, on a bright day.",
"image_path": "clouds/Panorama_of_a_meadow_surrounded_by_trees__a_small_cabin__a_wooden_table_for_lunches__and_a_large_row-mixkit-environment-in-a-meadow-with-many-large-antennas-5295.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Silhouettes of the rooftops of Barcelona filmed from a terrace in the centre of the city with clouds passing by.",
"image_path": "clouds/Silhouettes_of_the_rooftops_of_Barcelona_filmed_from_a_terrace_in_the_centre_of_the_city_with_clouds-mixkit-rooftops-of-barcelona-4061.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Timelapse of the impressive mountain range in the Picos de Europa National Park.",
"image_path": "clouds/Timelapse_of_the_impressive_mountain_range_in_the_Picos_de_Europa_National_Park_-mixkit-mountain-range-4164.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Looking up at the sky with the sunset sun, which is above a city with many houses.",
"image_path": "clouds/Looking_up_at_the_sky_with_the_sunset_sun__which_is_above_a_city_with_many_houses_-mixkit-sky-with-sunset-sun-over-a-city-3421.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Conceptual portrait of a girl with an umbrella, surrounded by cotton clouds, on a blue background.",
"image_path": "clouds/Conceptual_portrait_of_a_girl_with_an_umbrella__surrounded_by_cotton_clouds__on_a_blue_background_-mixkit-conceptual-portrait-of-a-girl-with-umbrella-with-clouds-42297.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Panoramic view of Manhattan from above on a sunny day, while the shadows of the clouds are cast on the buildings.",
"image_path": "clouds/Panoramic_view_of_Manhattan_from_above_on_a_sunny_day__while_the_shadows_of_the_clouds_are_cast_on_t-mixkit-panoramic-view-of-manhattan-buildings-4336.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Airplane moving on an airstrip, seen from inside the airplane in a window right on the wing, on a cloudy afternoon.",
"image_path": "clouds/Airplane_moving_on_an_airstrip__seen_from_inside_the_airplane_in_a_window_right_on_the_wing__on_a_cl-mixkit-plane-taking-off-on-a-runway-view-from-a-window-3298.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Clouds in the sky in motion that change from warm colors to cold colors",
"image_path": "clouds/Clouds_in_the_sky_in_motion_that_change_from_warm_colors_to_cold_colors-mixkit-moving-clouds-that-change-color-3137.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Aerial view at sunrise of a farm field and a forest casting shadows on the floor with a cloudy sky and mountains in the background",
"image_path": "clouds/Aerial_view_at_sunrise_of_a_farm_field_and_a_forest_casting_shadows_on_the_floor_with_a_cloudy_sky_a-mixkit-aerial-view-at-dawn-of-a-crop-field-and-forest-2797.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying over a lake on a plain, with grass, and many trees, with some mountains on the horizon, on a cloudy afternoon.",
"image_path": "clouds/Flying_over_a_lake_on_a_plain__with_grass__and_many_trees__with_some_mountains_on_the_horizon__on_a_-mixkit-flying-over-a-lake-on-a-plain-in-nature-26074.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Green fields near a village town on a foggy day.",
"image_path": "clouds/Green_fields_near_a_village_town_on_a_foggy_day_-mixkit-foggy-green-fields-near-village-2129.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Storm clouds gathering before a storm hits.",
"image_path": "clouds/Storm_clouds_gathering_before_a_storm_hits_-mixkit-clouds-before-a-storm-2066.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Aerial seen in the distance, from the undergrowth with trees, mint grass, and bushes, as the shot progresses, during a sunny day of sky with clouds.",
"image_path": "clouds/Aerial_seen_in_the_distance__from_the_undergrowth_with_trees__mint_grass__and_bushes__as_the_shot_pr-mixkit-communications-antenna-in-the-distance-seen-from-the-undergrowth-5293.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Revealing a property with an industrial warehouse made of laminate in a natural environment.",
"image_path": "clouds/Revealing_a_property_with_an_industrial_warehouse_made_of_laminate_in_a_natural_environment_-mixkit-nature-property-with-a-large-cellar-5299.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Glass beer bottles of different colors in detail, outdoors on a sunny day with blue sky in the background.",
"image_path": "clouds/Glass_beer_bottles_of_different_colors_in_detail__outdoors_on_a_sunny_day_with_blue_sky_in_the_backg-mixkit-glass-bottles-of-beer-on-a-sunny-day-4920.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View of a meadow in a pine forest from an old wooden fence, during a sunny day.",
"image_path": "clouds/View_of_a_meadow_in_a_pine_forest_from_an_old_wooden_fence__during_a_sunny_day_-mixkit-the-meadow-in-a-pine-forest-4485.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Panoramic view of Manhattan city from the air on a sunny day, while the shadows of the clouds are cast on the buildings. High view of architecture of a city.",
"image_path": "clouds/Panoramic_view_of_Manhattan_city_from_the_air_on_a_sunny_day__while_the_shadows_of_the_clouds_are_ca-mixkit-high-point-of-view-of-manhattan-city-4342.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Top shot of a neighborhood in a city at dusk, the clouds cover the sky as the wind moves them. The apartments are seen from above, turning on their lights at nightfall.",
"image_path": "clouds/Top_shot_of_a_neighborhood_in_a_city_at_dusk__the_clouds_cover_the_sky_as_the_wind_moves_them__The_a-mixkit-neighborhood-in-a-city-at-dusk-4377.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Timelapse of a forested mountain with many trees during a sunny spring or summer afternoon.",
"image_path": "clouds/Timelapse_of_a_forested_mountain_with_many_trees_during_a_sunny_spring_or_summer_afternoon_-mixkit-timelapse-of-a-forest-during-the-afternoon-43146.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View of the coast of Los Cabos in Mexico from the wing of an airplane on a clear day with blue sky and clouds",
"image_path": "clouds/View_of_the_coast_of_Los_Cabos_in_Mexico_from_the_wing_of_an_airplane_on_a_clear_day_with_blue_sky_a-mixkit-los-cabos-seashore-and-desert-from-the-air-4090.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Composition of lines of a building and its windows seen a close-up section, and the blue sky with many clouds moving with the wind.",
"image_path": "clouds/Composition_of_lines_of_a_building_and_its_windows_seen_a_close-up_section__and_the_blue_sky_with_ma-mixkit-symmetrical-composition-of-a-building-and-the-sky-3974.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View of the sky covered with many clouds, when flying over a hill covered with trees.",
"image_path": "clouds/View_of_the_sky_covered_with_many_clouds__when_flying_over_a_hill_covered_with_trees_-mixkit-cloud-filled-sky-above-a-hill-41553.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View of the coast of Los Cabos in Mexico from the wing of an airplane on a clear day",
"image_path": "clouds/View_of_the_coast_of_Los_Cabos_in_Mexico_from_the_wing_of_an_airplane_on_a_clear_day-mixkit-view-of-the-coast-from-the-air-4089.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Panorama from the top of the clouds that cover a mountainous relief, with a view to the horizon, during a sunset.",
"image_path": "clouds/Panorama_from_the_top_of_the_clouds_that_cover_a_mountainous_relief__with_a_view_to_the_horizon__dur-mixkit-landscape-from-the-top-of-a-cloudy-mountain-range-39703.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "City seen from above, with many houses, a river and many cars crossing the main roads, with the horizon in the background, on a sunny day.",
"image_path": "clouds/City_seen_from_above__with_many_houses__a_river_and_many_cars_crossing_the_main_roads__with_the_hori-mixkit-city-from-above-overlooking-the-horizon-3419.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "City illuminated in its avenues during the evening, seen from above, towards the horizon.",
"image_path": "clouds/City_illuminated_in_its_avenues_during_the_evening__seen_from_above__towards_the_horizon_-mixkit-illuminated-city-seen-from-above-3424.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Suburbs seen from above, with many cars passing, with hills bordering the horizon, during a sunny day.",
"image_path": "clouds/Suburbs_seen_from_above__with_many_cars_passing__with_hills_bordering_the_horizon__during_a_sunny_da-mixkit-suburbs-from-above-3417.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "River crossing a city with bridges and buildings around it, from the heights, during a sunset.",
"image_path": "clouds/River_crossing_a_city_with_bridges_and_buildings_around_it__from_the_heights__during_a_sunset_-mixkit-river-crossing-a-city-shot-from-the-air-3416.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Airplane on an airport runway seen in the distance, with carts surrounding it, and an access walkway, on a cloudy afternoon.",
"image_path": "clouds/Airplane_on_an_airport_runway_seen_in_the_distance__with_carts_surrounding_it__and_an_access_walkway-mixkit-plane-on-an-airstrip-3411.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Boat sailing along the river, in the background some mountains with green vegetation and a blue sky with big clouds",
"image_path": "clouds/Boat_sailing_along_the_river__in_the_background_some_mountains_with_green_vegetation_and_a_blue_sky_-mixkit-boat-sailing-along-the-river-3482.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Couple of men hug and look to each face on a balcony with the city in the background and a cloudy day in the morning.",
"image_path": "clouds/Couple_of_men_hug_and_look_to_each_face_on_a_balcony_with_the_city_in_the_background_and_a_cloudy_da-mixkit-boyfriends-hug-on-balcony-3193.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Landscape of some rocky mountains and a clear sky with some clouds passing at sunset",
"image_path": "clouds/Landscape_of_some_rocky_mountains_and_a_clear_sky_with_some_clouds_passing_at_sunset-mixkit-landscape-with-mountains-at-sunset-3143.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "White clouds of different shapes are moving over a blue sky",
"image_path": "clouds/White_clouds_of_different_shapes_are_moving_over_a_blue_sky-mixkit-white-clouds-in-motion-3140.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "White clouds over a blue sky changing shape and moving forward",
"image_path": "clouds/White_clouds_over_a_blue_sky_changing_shape_and_moving_forward-mixkit-white-clouds-in-the-sky-passing-3142.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "White clouds move with the wind over some mountains in the background",
"image_path": "clouds/White_clouds_move_with_the_wind_over_some_mountains_in_the_background-mixkit-white-clouds-moving-over-the-mountains-3141.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Blue sky with white clouds moving from left to right",
"image_path": "clouds/Blue_sky_with_white_clouds_moving_from_left_to_right-mixkit-blue-sky-with-moving-clouds-3138.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Sky with blue and green gradient color darkens. Light black clouds passing",
"image_path": "clouds/Sky_with_blue_and_green_gradient_color_darkens__Light_black_clouds_passing-mixkit-sky-darkening-with-black-clouds-passing-3139.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Cloudy sky with big rain clouds passing over a blue sky",
"image_path": "clouds/Cloudy_sky_with_big_rain_clouds_passing_over_a_blue_sky-mixkit-cloudy-sky-with-rain-clouds-passing-3136.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Tourist beach in front of the hotel zone during a cloudy day and with calm sea and turquoise blue.",
"image_path": "clouds/Tourist_beach_in_front_of_the_hotel_zone_during_a_cloudy_day_and_with_calm_sea_and_turquoise_blue_-mixkit-tourist-beach-in-front-of-the-hotel-zone-3106.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Sunset time lapse of the city, with mountains in the background and big clouds",
"image_path": "clouds/Sunset_time_lapse_of_the_city__with_mountains_in_the_background_and_big_clouds-mixkit-time-lapse-of-sunset-in-the-city-3134.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "White and elongated clouds fly over a blue sky",
"image_path": "clouds/White_and_elongated_clouds_fly_over_a_blue_sky-mixkit-clouds-flying-in-a-blue-sky-3135.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "A ruined wooden ship abandoned among the grass.",
"image_path": "clouds/A_ruined_wooden_ship_abandoned_among_the_grass_-mixkit-ship-in-ruins-3016.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "White clouds move across a blue sky with yellow tinges.",
"image_path": "clouds/White_clouds_move_across_a_blue_sky_with_yellow_tinges_-mixkit-time-lapse-video-of-a-cloudy-sky-284.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Dense tree in the middle of a meadow covered by grass, surrounded by a large forest and mountains, during sunrise on a cloudy day.",
"image_path": "clouds/Dense_tree_in_the_middle_of_a_meadow_covered_by_grass__surrounded_by_a_large_forest_and_mountains__d-mixkit-tree-on-a-meadow-in-a-cloud-forest-at-sunrise-28340.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Immense forest full of dense trees that covers a mountain, seen from the air, on a cloudy afternoon, covered with clouds in the sky.",
"image_path": "clouds/Immense_forest_full_of_dense_trees_that_covers_a_mountain__seen_from_the_air__on_a_cloudy_afternoon_-mixkit-aerial-tour-through-a-large-forest-that-covers-a-mountain-28337.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Two tall corporate buildings in a city during the day with a blue cloudy sky.",
"image_path": "clouds/Two_tall_corporate_buildings_in_a_city_during_the_day_with_a_blue_cloudy_sky_-mixkit-two-corporate-buildings-of-a-city-283.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Huge dense forest covering a mountain, seen from the air above a meadow with a path, during a cloudy day.",
"image_path": "clouds/Huge_dense_forest_covering_a_mountain__seen_from_the_air_above_a_meadow_with_a_path__during_a_cloudy-mixkit-mountain-covered-by-a-large-forest-seen-from-above-28333.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Cloudy sky with a dry lagoon and a road and distant mountains in the background",
"image_path": "clouds/Cloudy_sky_with_a_dry_lagoon_and_a_road_and_distant_mountains_in_the_background-mixkit-cloudy-sky-with-dry-lagoon-2785.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Black-haired woman with short braids wearing a denim jacket taking photos with a vintage camera in the countryside on a cloudy day",
"image_path": "clouds/Black-haired_woman_with_short_braids_wearing_a_denim_jacket_taking_photos_with_a_vintage_camera_in_t-mixkit-young-woman-taking-photos-in-the-field-2765.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Aerial view of a wooded landscape with a road in the center and mountains in the background with clouds passing",
"image_path": "clouds/Aerial_view_of_a_wooded_landscape_with_a_road_in_the_center_and_mountains_in_the_background_with_clo-mixkit-aerial-view-of-a-wooded-landscape-with-a-road-2793.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Aerial view of a forested and mountainous landscape with the shadow of clouds projecting on the floor",
"image_path": "clouds/Aerial_view_of_a_forested_and_mountainous_landscape_with_the_shadow_of_clouds_projecting_on_the_floo-mixkit-aerial-view-of-a-forested-and-mountainous-landscape-2794.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Landscape from a mountain, with a small town in the distance, mountains, clouds covering the sky, and mist covering the horizon.",
"image_path": "clouds/Landscape_from_a_mountain__with_a_small_town_in_the_distance__mountains__clouds_covering_the_sky__an-mixkit-cloudy-panorama-from-high-on-a-mountain-26104.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "A bridge in a small city with snow-covered buildings near snowy mountains.",
"image_path": "clouds/A_bridge_in_a_small_city_with_snow-covered_buildings_near_snowy_mountains_-mixkit-bridge-in-a-small-snowy-town-2612.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Clouds in the clear blue sky moving gently in the wind.",
"image_path": "clouds/Clouds_in_the_clear_blue_sky_moving_gently_in_the_wind_-mixkit-clouds-moving-gently-with-the-wind-in-the-blue-sky-26109.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying over a huge open field, with a small town in the center, surrounding countryside divided into parcels, and in the distance a few hills combined with the horizon, during a cloudy afternoon.",
"image_path": "clouds/Flying_over_a_huge_open_field__with_a_small_town_in_the_center__surrounding_countryside_divided_into-mixkit-flying-over-a-large-plain-with-a-town-plots-and-26077.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "River with floating pieces of ice",
"image_path": "clouds/River_with_floating_pieces_of_ice-mixkit-thawing-river-2565.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Mountain range seen from the top of a mountain, with a meadow in the background, mist and the sky covered with clouds, while the shot slowly slides back.",
"image_path": "clouds/Mountain_range_seen_from_the_top_of_a_mountain__with_a_meadow_in_the_background__mist_and_the_sky_co-mixkit-landscape-of-a-mountain-range-seen-from-the-top-of-26103.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "A tall apartment building stands in front of a blue sky with white clouds.",
"image_path": "clouds/A_tall_apartment_building_stands_in_front_of_a_blue_sky_with_white_clouds_-mixkit-clouds-behind-an-apartment-building-254.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Apartment buildings in the city on a cloudy day.",
"image_path": "clouds/Apartment_buildings_in_the_city_on_a_cloudy_day_-mixkit-cloudy-sky-in-the-city-2458.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Small farming town in a farming area with houses and a church in the city center.",
"image_path": "clouds/Small_farming_town_in_a_farming_area_with_houses_and_a_church_in_the_city_center_-mixkit-small-town-in-a-cultivation-area-2391.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Lake in the middle of a plain in nature, covered with grass, trees, hills on the horizon, and the sky covered with some thick clouds.",
"image_path": "clouds/Lake_in_the_middle_of_a_plain_in_nature__covered_with_grass__trees__hills_on_the_horizon__and_the_sk-mixkit-lake-in-the-middle-of-a-plain-surrounded-by-hills-21580.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Flying over a gorgeous forest full of green trees with a road nearby.",
"image_path": "clouds/Flying_over_a_gorgeous_forest_full_of_green_trees_with_a_road_nearby_-mixkit-flying-through-the-clouds-2218.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Green harvest fields with trees and mountains in the background under a grey sky.",
"image_path": "clouds/Green_harvest_fields_with_trees_and_mountains_in_the_background_under_a_grey_sky_-mixkit-mountains-and-fields-2130.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Landscape to a large grassy plain surrounded by large mountains, with the sky covered with thick clouds, during a sunny day.",
"image_path": "clouds/Landscape_to_a_large_grassy_plain_surrounded_by_large_mountains__with_the_sky_covered_with_thick_clo-mixkit-panorama-of-a-large-natural-plain-on-a-sunny-afternoon-21578.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Green farm fields with aeriel view of misty sunrise",
"image_path": "clouds/Green_farm_fields_with_aeriel_view_of_misty_sunrise-mixkit-misty-sunrise-over-green-fields-2120.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Misty sunrise over mountains and trees with freeway traffic below.",
"image_path": "clouds/Misty_sunrise_over_mountains_and_trees_with_freeway_traffic_below_-mixkit-sunrise-and-mist-over-freeway-2081.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Storm about to occur at the beach with palms being moved by the wind under a cloudy sky.",
"image_path": "clouds/Storm_about_to_occur_at_the_beach_with_palms_being_moved_by_the_wind_under_a_cloudy_sky_-mixkit-stormy-day-at-beach-2073.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "City full of buildings on a cloudy day with the silhouette of mountains in the background.",
"image_path": "clouds/City_full_of_buildings_on_a_cloudy_day_with_the_silhouette_of_mountains_in_the_background_-mixkit-city-buildings-on-cloudy-day-2062.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Sky with many clouds advancing to the left of the video, below, on the skyline you can see a city with some skyscrapers.",
"image_path": "clouds/Sky_with_many_clouds_advancing_to_the_left_of_the_video__below__on_the_skyline_you_can_see_a_city_wi-mixkit-cloudy-sky-over-a-contemporary-city-2027.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Driving on a freeway with mountains and a cloudy sky in the end.",
"image_path": "clouds/Driving_on_a_freeway_with_mountains_and_a_cloudy_sky_in_the_end_-mixkit-driving-on-a-freeway-with-mountains-1922.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Sky time-lapse with clouds moving.",
"image_path": "clouds/Sky_time-lapse_with_clouds_moving_-mixkit-sky-time-lapse-1905.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time-lapse video of a cloudy sky at dusk.",
"image_path": "clouds/Time-lapse_video_of_a_cloudy_sky_at_dusk_-mixkit-cloudy-sky-getting-dark-1900.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Time-lapse of clouds in the sky over beach palms and the sand.",
"image_path": "clouds/Time-lapse_of_clouds_in_the_sky_over_beach_palms_and_the_sand_-mixkit-clouds-in-the-sky-over-beach-palms-1918.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Hyperlapse shot of a cloudy sky above the mountains during the day.",
"image_path": "clouds/Hyperlapse_shot_of_a_cloudy_sky_above_the_mountains_during_the_day_-mixkit-hyperlapse-of-a-cloudy-sky-1766.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Blue sky with clouds reflected on the water, close up.",
"image_path": "clouds/Blue_sky_with_clouds_reflected_on_the_water__close_up_-mixkit-blue-sky-with-clouds-reflected-on-the-water-1645.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Small moving clouds in an almost clear blue sky.",
"image_path": "clouds/Small_moving_clouds_in_an_almost_clear_blue_sky_-mixkit-small-clouds-moving-in-the-sky-1646.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Moonlit clouds in motion, time-lapse. Sky with clouds, motion clouds, a bunch of clouds in the blue sky.",
"image_path": "clouds/Moonlit_clouds_in_motion__time-lapse__Sky_with_clouds__motion_clouds__a_bunch_of_clouds_in_the_blue_-mixkit-moonlit-clouds-in-motion-time-lapse-1609.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Tall trees and a blue sky with clouds.",
"image_path": "clouds/Tall_trees_and_a_blue_sky_with_clouds_-mixkit-some-trees-and-blue-sky-1246.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "A mesmerizing timelapse unfolds, capturing the ever-shifting spectacle of clouds gracefully gliding above the expansive forest canopy.",
"image_path": "clouds/A_mesmerizing_timelapse_unfolds__capturing_the_ever-shifting_spectacle_of_clouds_gracefully_gliding_-mixkit-mesmerizing-timelapse-of-clouds-moving-avobe-the-forest-canopy-51586.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "A close-up lens captures the intricate movements of white clouds against the blue sky.",
"image_path": "clouds/A_close-up_lens_captures_the_intricate_movements_of_white_clouds_against_the_blue_sky_-mixkit-close-up-of-white-clouds-moving-in-the-sky-51112.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Over a forest expanse, stunning white clouds create a dynamic spectacle in the sky.",
"image_path": "clouds/Over_a_forest_expanse__stunning_white_clouds_create_a_dynamic_spectacle_in_the_sky_-mixkit-stunning-white-clouds-moving-over-a-forest-51111.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "From a low perspective, clouds glide majestically over tree branches, framing the sky.",
"image_path": "clouds/From_a_low_perspective__clouds_glide_majestically_over_tree_branches__framing_the_sky_-mixkit-clouds-moving-over-tree-branches-low-view-51108.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Gloomy cloud forest, full of tall trees, covered with leaves and vines, while many raindrops fall, and the camera moves slowly.",
"image_path": "clouds/Gloomy_cloud_forest__full_of_tall_trees__covered_with_leaves_and_vines__while_many_raindrops_fall__a-mixkit-raining-in-a-cloud-forest-full-of-tall-trees-22728.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "View to the sky in a vertical video, with some light clouds traveling with the wind, and the colors of the sky in gradient from white to blue.",
"image_path": "clouds/View_to_the_sky_in_a_vertical_video__with_some_light_clouds_traveling_with_the_wind__and_the_colors_-mixkit-sky-with-some-light-clouds-and-their-gradient-colors-21583.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Image of a man from the front, dressed in black, with drop glasses that reflect the moon and round hair with moving clouds in the sky in black and white, and a background of red rings.",
"image_path": "clouds/Image_of_a_man_from_the_front__dressed_in_black__with_drop_glasses_that_reflect_the_moon_and_round_h-mixkit-conceptual-image-of-a-man-with-glasses-and-hair-with-32646.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Slowly approaching a tree in the center of a grassy meadow in the middle of a forest of abundant trees on a cloudy day.",
"image_path": "clouds/Slowly_approaching_a_tree_in_the_center_of_a_grassy_meadow_in_the_middle_of_a_forest_of_abundant_tre-mixkit-tree-at-the-center-of-a-meadow-in-a-cloud-28338.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Mist that covers a large forest with large and dense trees, traveled from the heights, with the light of the sun at dawn peeking out from one edge of the intake.",
"image_path": "clouds/Mist_that_covers_a_large_forest_with_large_and_dense_trees__traveled_from_the_heights__with_the_ligh-mixkit-aerial-tour-above-a-cloud-forest-28341.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Smiling girl in a blue set with an umbrella painted like the sky, surrounded by cotton clouds hung from the ceiling with a thread.",
"image_path": "clouds/Smiling_girl_in_a_blue_set_with_an_umbrella_painted_like_the_sky__surrounded_by_cotton_clouds_hung_f-mixkit-girl-with-an-umbrella-among-cotton-clouds-42309.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Black cloud of dark ink being shot underwater with a white background in a four-axis mirror effect video.",
"image_path": "clouds/Black_cloud_of_dark_ink_being_shot_underwater_with_a_white_background_in_a_four-axis_mirror_effect_v-mixkit-black-ink-cloud-under-water-42006.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Pink heart placed on a reflective surface, with the blue sky and clouds moving fast in the background.",
"image_path": "clouds/Pink_heart_placed_on_a_reflective_surface__with_the_blue_sky_and_clouds_moving_fast_in_the_backgroun-mixkit-pink-heart-on-a-mirror-with-the-sky-and-clouds-13776.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
},
{
"caption": "Spooky Halloween pumpkin, illuminated inside, in a dark, gloomy and cloudy forest, with many trees with long trunks.",
"image_path": "clouds/Spooky_Halloween_pumpkin__illuminated_inside__in_a_dark__gloomy_and_cloudy_forest__with_many_trees_w-mixkit-creepy-halloween-pumpkin-in-dark-cloud-forest-33884.jpg",
"num_inference_steps": 3,
"height": 448,
"width": 832,
"num_frames": 61
}
]
} |