This is page 3 of 3. Use http://codebase.md/gyoridavid/short-video-maker?lines=true&page={x} to view the full context. # Directory Structure ``` ├── __mocks__ │ └── pexels-response.json ├── .dockerignore ├── .editorconfig ├── .env.example ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── docker-compose.yml ├── eslint.config.mjs ├── LICENSE ├── main-cuda.Dockerfile ├── main-tiny.Dockerfile ├── main.Dockerfile ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── postcss.config.mjs ├── README.md ├── remotion.config.ts ├── rest.http ├── src │ ├── components │ │ ├── root │ │ │ ├── index.ts │ │ │ └── Root.tsx │ │ ├── types.ts │ │ ├── utils.ts │ │ └── videos │ │ ├── LandscapeVideo.tsx │ │ ├── PortraitVideo.tsx │ │ └── Test.tsx │ ├── config.ts │ ├── index.ts │ ├── logger.ts │ ├── scripts │ │ ├── install.ts │ │ └── normalizeMusic.ts │ ├── server │ │ ├── routers │ │ │ ├── mcp.ts │ │ │ └── rest.ts │ │ ├── server.ts │ │ └── validator.ts │ ├── short-creator │ │ ├── libraries │ │ │ ├── FFmpeg.ts │ │ │ ├── Kokoro.ts │ │ │ ├── Pexels.test.ts │ │ │ ├── Pexels.ts │ │ │ ├── Remotion.ts │ │ │ └── Whisper.ts │ │ ├── music.ts │ │ ├── ShortCreator.test.ts │ │ └── ShortCreator.ts │ ├── types │ │ └── shorts.ts │ └── ui │ ├── App.tsx │ ├── components │ │ └── Layout.tsx │ ├── index.html │ ├── index.tsx │ ├── pages │ │ ├── VideoCreator.tsx │ │ ├── VideoDetails.tsx │ │ └── VideoList.tsx │ ├── public │ │ └── index.html │ └── styles │ └── index.css ├── static │ └── music │ ├── Aurora on the Boulevard - National Sweetheart.mp3 │ ├── Baby Animals Playing - Joel Cummins.mp3 │ ├── Banjo Doops - Joel Cummins.mp3 │ ├── Buckle Up - Jeremy Korpas.mp3 │ ├── Cafecito por la Manana - Cumbia Deli.mp3 │ ├── Champion - Telecasted.mp3 │ ├── Crystaline - Quincas Moreira.mp3 │ ├── Curse of the Witches - Jimena Contreras.mp3 │ ├── Delayed Baggage - Ryan Stasik.mp3 │ ├── Final Soliloquy - Asher Fulero.mp3 │ ├── Heartbeat Of The Wind - Asher Fulero.mp3 │ ├── Honey, I Dismembered The Kids - Ezra Lipp.mp3 │ ├── Hopeful - Nat Keefe.mp3 │ ├── Hopeful Freedom - Asher Fulero.mp3 │ ├── Hopeless - Jimena Contreras.mp3 │ ├── Jetski - Telecasted.mp3 │ ├── Like It Loud - Dyalla.mp3 │ ├── Name The Time And Place - Telecasted.mp3 │ ├── Night Hunt - Jimena Contreras.mp3 │ ├── No.2 Remembering Her - Esther Abrami.mp3 │ ├── Oh Please - Telecasted.mp3 │ ├── On The Hunt - Andrew Langdon.mp3 │ ├── Organic Guitar House - Dyalla.mp3 │ ├── Phantom - Density & Time.mp3 │ ├── README.md │ ├── Restless Heart - Jimena Contreras.mp3 │ ├── Seagull - Telecasted.mp3 │ ├── Sinister - Anno Domini Beats.mp3 │ ├── Sly Sky - Telecasted.mp3 │ ├── Touch - Anno Domini Beats.mp3 │ ├── Traversing - Godmode.mp3 │ └── Twin Engines - Jeremy Korpas.mp3 ├── tailwind.config.js ├── tsconfig.build.json ├── tsconfig.json ├── vite.config.ts └── vitest.config.ts ``` # Files -------------------------------------------------------------------------------- /__mocks__/pexels-response.json: -------------------------------------------------------------------------------- ```json 1 | { 2 | "page": 1, 3 | "per_page": 80, 4 | "videos": [ 5 | { 6 | "id": 2834230, 7 | "width": 1080, 8 | "height": 1920, 9 | "duration": 3, 10 | "full_res": null, 11 | "tags": [], 12 | "url": "https://www.pexels.com/video/a-pet-dog-on-a-couch-2834230/", 13 | "image": "https://images.pexels.com/videos/2834230/free-video-2834230.jpg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 14 | "avg_color": null, 15 | "user": { 16 | "id": 409016, 17 | "name": "Viktoria B.", 18 | "url": "https://www.pexels.com/@viktoriab" 19 | }, 20 | "video_files": [ 21 | { 22 | "id": 165424, 23 | "quality": "hd", 24 | "file_type": "video/mp4", 25 | "width": 1080, 26 | "height": 1920, 27 | "fps": 14.984999656677246, 28 | "link": "https://videos.pexels.com/video-files/2834230/2834230-hd_1080_1920_15fps.mp4", 29 | "size": 1670224 30 | }, 31 | { 32 | "id": 165425, 33 | "quality": "sd", 34 | "file_type": "video/mp4", 35 | "width": 360, 36 | "height": 640, 37 | "fps": 14.984999656677246, 38 | "link": "https://videos.pexels.com/video-files/2834230/2834230-sd_360_640_15fps.mp4", 39 | "size": 183539 40 | }, 41 | { 42 | "id": 165426, 43 | "quality": "sd", 44 | "file_type": "video/mp4", 45 | "width": 240, 46 | "height": 426, 47 | "fps": 14.984999656677246, 48 | "link": "https://videos.pexels.com/video-files/2834230/2834230-sd_240_426_15fps.mp4", 49 | "size": 112221 50 | }, 51 | { 52 | "id": 165427, 53 | "quality": "hd", 54 | "file_type": "video/mp4", 55 | "width": 720, 56 | "height": 1280, 57 | "fps": 14.984999656677246, 58 | "link": "https://videos.pexels.com/video-files/2834230/2834230-hd_720_1280_15fps.mp4", 59 | "size": 850169 60 | }, 61 | { 62 | "id": 165428, 63 | "quality": "sd", 64 | "file_type": "video/mp4", 65 | "width": 540, 66 | "height": 960, 67 | "fps": 14.984999656677246, 68 | "link": "https://videos.pexels.com/video-files/2834230/2834230-sd_540_960_15fps.mp4", 69 | "size": 522827 70 | } 71 | ], 72 | "video_pictures": [ 73 | { 74 | "id": 399262, 75 | "nr": 0, 76 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-0.jpeg" 77 | }, 78 | { 79 | "id": 399263, 80 | "nr": 1, 81 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-1.jpeg" 82 | }, 83 | { 84 | "id": 399264, 85 | "nr": 2, 86 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-2.jpeg" 87 | }, 88 | { 89 | "id": 399265, 90 | "nr": 3, 91 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-3.jpeg" 92 | }, 93 | { 94 | "id": 399266, 95 | "nr": 4, 96 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-4.jpeg" 97 | }, 98 | { 99 | "id": 399267, 100 | "nr": 5, 101 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-5.jpeg" 102 | }, 103 | { 104 | "id": 399268, 105 | "nr": 6, 106 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-6.jpeg" 107 | }, 108 | { 109 | "id": 399269, 110 | "nr": 7, 111 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-7.jpeg" 112 | }, 113 | { 114 | "id": 399270, 115 | "nr": 8, 116 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-8.jpeg" 117 | }, 118 | { 119 | "id": 399271, 120 | "nr": 9, 121 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-9.jpeg" 122 | }, 123 | { 124 | "id": 399272, 125 | "nr": 10, 126 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-10.jpeg" 127 | }, 128 | { 129 | "id": 399273, 130 | "nr": 11, 131 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-11.jpeg" 132 | }, 133 | { 134 | "id": 399274, 135 | "nr": 12, 136 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-12.jpeg" 137 | }, 138 | { 139 | "id": 399275, 140 | "nr": 13, 141 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-13.jpeg" 142 | }, 143 | { 144 | "id": 399276, 145 | "nr": 14, 146 | "picture": "https://images.pexels.com/videos/2834230/pictures/preview-14.jpeg" 147 | } 148 | ] 149 | }, 150 | { 151 | "id": 4838318, 152 | "width": 2160, 153 | "height": 3840, 154 | "duration": 8, 155 | "full_res": null, 156 | "tags": [], 157 | "url": "https://www.pexels.com/video/cute-puppy-sitting-on-a-stool-4838318/", 158 | "image": "https://images.pexels.com/videos/4838318/adorable-animal-cute-cute-puppy-4838318.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 159 | "avg_color": null, 160 | "user": { 161 | "id": 1984515, 162 | "name": "Anna Shvets", 163 | "url": "https://www.pexels.com/@shvetsa" 164 | }, 165 | "video_files": [ 166 | { 167 | "id": 9398210, 168 | "quality": "sd", 169 | "file_type": "video/mp4", 170 | "width": 540, 171 | "height": 960, 172 | "fps": 24, 173 | "link": "https://videos.pexels.com/video-files/4838318/4838318-sd_540_960_24fps.mp4", 174 | "size": 1395230 175 | }, 176 | { 177 | "id": 9398227, 178 | "quality": "uhd", 179 | "file_type": "video/mp4", 180 | "width": 2160, 181 | "height": 3840, 182 | "fps": 24, 183 | "link": "https://videos.pexels.com/video-files/4838318/4838318-uhd_2160_3840_24fps.mp4", 184 | "size": 21291854 185 | }, 186 | { 187 | "id": 9398246, 188 | "quality": "hd", 189 | "file_type": "video/mp4", 190 | "width": 1080, 191 | "height": 1920, 192 | "fps": 24, 193 | "link": "https://videos.pexels.com/video-files/4838318/4838318-hd_1080_1920_24fps.mp4", 194 | "size": 4595797 195 | }, 196 | { 197 | "id": 9398278, 198 | "quality": "sd", 199 | "file_type": "video/mp4", 200 | "width": 240, 201 | "height": 426, 202 | "fps": 24, 203 | "link": "https://videos.pexels.com/video-files/4838318/4838318-sd_240_426_24fps.mp4", 204 | "size": 282950 205 | }, 206 | { 207 | "id": 9398299, 208 | "quality": "sd", 209 | "file_type": "video/mp4", 210 | "width": 360, 211 | "height": 640, 212 | "fps": 24, 213 | "link": "https://videos.pexels.com/video-files/4838318/4838318-sd_360_640_24fps.mp4", 214 | "size": 469609 215 | }, 216 | { 217 | "id": 9398325, 218 | "quality": "hd", 219 | "file_type": "video/mp4", 220 | "width": 720, 221 | "height": 1280, 222 | "fps": 24, 223 | "link": "https://videos.pexels.com/video-files/4838318/4838318-hd_720_1280_24fps.mp4", 224 | "size": 2333933 225 | }, 226 | { 227 | "id": 9398356, 228 | "quality": "uhd", 229 | "file_type": "video/mp4", 230 | "width": 1440, 231 | "height": 2560, 232 | "fps": 24, 233 | "link": "https://videos.pexels.com/video-files/4838318/4838318-uhd_1440_2560_24fps.mp4", 234 | "size": 11262742 235 | } 236 | ], 237 | "video_pictures": [ 238 | { 239 | "id": 2023424, 240 | "nr": 0, 241 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-0.jpeg" 242 | }, 243 | { 244 | "id": 2023427, 245 | "nr": 1, 246 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-1.jpeg" 247 | }, 248 | { 249 | "id": 2023430, 250 | "nr": 2, 251 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-2.jpeg" 252 | }, 253 | { 254 | "id": 2023433, 255 | "nr": 3, 256 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-3.jpeg" 257 | }, 258 | { 259 | "id": 2023437, 260 | "nr": 4, 261 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-4.jpeg" 262 | }, 263 | { 264 | "id": 2023440, 265 | "nr": 5, 266 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-5.jpeg" 267 | }, 268 | { 269 | "id": 2023443, 270 | "nr": 6, 271 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-6.jpeg" 272 | }, 273 | { 274 | "id": 2023445, 275 | "nr": 7, 276 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-7.jpeg" 277 | }, 278 | { 279 | "id": 2023446, 280 | "nr": 8, 281 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-8.jpeg" 282 | }, 283 | { 284 | "id": 2023447, 285 | "nr": 9, 286 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-9.jpeg" 287 | }, 288 | { 289 | "id": 2023448, 290 | "nr": 10, 291 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-10.jpeg" 292 | }, 293 | { 294 | "id": 2023449, 295 | "nr": 11, 296 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-11.jpeg" 297 | }, 298 | { 299 | "id": 2023450, 300 | "nr": 12, 301 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-12.jpeg" 302 | }, 303 | { 304 | "id": 2023453, 305 | "nr": 13, 306 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-13.jpeg" 307 | }, 308 | { 309 | "id": 2023457, 310 | "nr": 14, 311 | "picture": "https://images.pexels.com/videos/4838318/pictures/preview-14.jpeg" 312 | } 313 | ] 314 | }, 315 | { 316 | "id": 4057316, 317 | "width": 2160, 318 | "height": 4096, 319 | "duration": 16, 320 | "full_res": null, 321 | "tags": [], 322 | "url": "https://www.pexels.com/video/feet-yellow-animal-dog-4057316/", 323 | "image": "https://images.pexels.com/videos/4057316/pexels-photo-4057316.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 324 | "avg_color": null, 325 | "user": { 326 | "id": 1437723, 327 | "name": "cottonbro studio", 328 | "url": "https://www.pexels.com/@cottonbro" 329 | }, 330 | "video_files": [ 331 | { 332 | "id": 9343208, 333 | "quality": "hd", 334 | "file_type": "video/mp4", 335 | "width": 1080, 336 | "height": 2048, 337 | "fps": 25, 338 | "link": "https://videos.pexels.com/video-files/4057316/4057316-hd_1080_2048_25fps.mp4", 339 | "size": 5105472 340 | }, 341 | { 342 | "id": 9343226, 343 | "quality": "sd", 344 | "file_type": "video/mp4", 345 | "width": 506, 346 | "height": 960, 347 | "fps": 25, 348 | "link": "https://videos.pexels.com/video-files/4057316/4057316-sd_506_960_25fps.mp4", 349 | "size": 1250697 350 | }, 351 | { 352 | "id": 9343287, 353 | "quality": "uhd", 354 | "file_type": "video/mp4", 355 | "width": 2160, 356 | "height": 4096, 357 | "fps": 25, 358 | "link": "https://videos.pexels.com/video-files/4057316/4057316-uhd_2160_4096_25fps.mp4", 359 | "size": 34510207 360 | }, 361 | { 362 | "id": 9343374, 363 | "quality": "hd", 364 | "file_type": "video/mp4", 365 | "width": 720, 366 | "height": 1366, 367 | "fps": 50, 368 | "link": "https://videos.pexels.com/video-files/4057316/4057316-hd_720_1366_50fps.mp4", 369 | "size": 2529164 370 | }, 371 | { 372 | "id": 9343452, 373 | "quality": "sd", 374 | "file_type": "video/mp4", 375 | "width": 338, 376 | "height": 640, 377 | "fps": 25, 378 | "link": "https://videos.pexels.com/video-files/4057316/4057316-sd_338_640_25fps.mp4", 379 | "size": 714518 380 | }, 381 | { 382 | "id": 9343515, 383 | "quality": "uhd", 384 | "file_type": "video/mp4", 385 | "width": 1440, 386 | "height": 2732, 387 | "fps": 25, 388 | "link": "https://videos.pexels.com/video-files/4057316/4057316-uhd_1440_2732_25fps.mp4", 389 | "size": 9716704 390 | }, 391 | { 392 | "id": 9343567, 393 | "quality": "sd", 394 | "file_type": "video/mp4", 395 | "width": 226, 396 | "height": 426, 397 | "fps": 25, 398 | "link": "https://videos.pexels.com/video-files/4057316/4057316-sd_226_426_25fps.mp4", 399 | "size": 409115 400 | } 401 | ], 402 | "video_pictures": [ 403 | { 404 | "id": 1106466, 405 | "nr": 0, 406 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-0.jpeg" 407 | }, 408 | { 409 | "id": 1106468, 410 | "nr": 1, 411 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-1.jpeg" 412 | }, 413 | { 414 | "id": 1106471, 415 | "nr": 2, 416 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-2.jpeg" 417 | }, 418 | { 419 | "id": 1106475, 420 | "nr": 3, 421 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-3.jpeg" 422 | }, 423 | { 424 | "id": 1106477, 425 | "nr": 4, 426 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-4.jpeg" 427 | }, 428 | { 429 | "id": 1106480, 430 | "nr": 5, 431 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-5.jpeg" 432 | }, 433 | { 434 | "id": 1106483, 435 | "nr": 6, 436 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-6.jpeg" 437 | }, 438 | { 439 | "id": 1106486, 440 | "nr": 7, 441 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-7.jpeg" 442 | }, 443 | { 444 | "id": 1106489, 445 | "nr": 8, 446 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-8.jpeg" 447 | }, 448 | { 449 | "id": 1106491, 450 | "nr": 9, 451 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-9.jpeg" 452 | }, 453 | { 454 | "id": 1106494, 455 | "nr": 10, 456 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-10.jpeg" 457 | }, 458 | { 459 | "id": 1106497, 460 | "nr": 11, 461 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-11.jpeg" 462 | }, 463 | { 464 | "id": 1106499, 465 | "nr": 12, 466 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-12.jpeg" 467 | }, 468 | { 469 | "id": 1106502, 470 | "nr": 13, 471 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-13.jpeg" 472 | }, 473 | { 474 | "id": 1106505, 475 | "nr": 14, 476 | "picture": "https://images.pexels.com/videos/4057316/pictures/preview-14.jpeg" 477 | } 478 | ] 479 | }, 480 | { 481 | "id": 5640919, 482 | "width": 1080, 483 | "height": 1920, 484 | "duration": 17, 485 | "full_res": null, 486 | "tags": [], 487 | "url": "https://www.pexels.com/video/a-furry-dog-for-a-pet-lover-5640919/", 488 | "image": "https://images.pexels.com/videos/5640919/pexels-photo-5640919.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 489 | "avg_color": null, 490 | "user": { 491 | "id": 3684321, 492 | "name": "Anna Bondarenko", 493 | "url": "https://www.pexels.com/@aaa333" 494 | }, 495 | "video_files": [ 496 | { 497 | "id": 9758860, 498 | "quality": "sd", 499 | "file_type": "video/mp4", 500 | "width": 240, 501 | "height": 426, 502 | "fps": 29.969999313354492, 503 | "link": "https://videos.pexels.com/video-files/5640919/5640919-sd_240_426_30fps.mp4", 504 | "size": 838504 505 | }, 506 | { 507 | "id": 9758954, 508 | "quality": "hd", 509 | "file_type": "video/mp4", 510 | "width": 720, 511 | "height": 1280, 512 | "fps": 29.969999313354492, 513 | "link": "https://videos.pexels.com/video-files/5640919/5640919-hd_720_1280_30fps.mp4", 514 | "size": 6506754 515 | }, 516 | { 517 | "id": 9759026, 518 | "quality": "sd", 519 | "file_type": "video/mp4", 520 | "width": 540, 521 | "height": 960, 522 | "fps": 29.969999313354492, 523 | "link": "https://videos.pexels.com/video-files/5640919/5640919-sd_540_960_30fps.mp4", 524 | "size": 3604569 525 | }, 526 | { 527 | "id": 9759073, 528 | "quality": "sd", 529 | "file_type": "video/mp4", 530 | "width": 360, 531 | "height": 640, 532 | "fps": 29.969999313354492, 533 | "link": "https://videos.pexels.com/video-files/5640919/5640919-sd_360_640_30fps.mp4", 534 | "size": 1376862 535 | }, 536 | { 537 | "id": 9759137, 538 | "quality": "hd", 539 | "file_type": "video/mp4", 540 | "width": 1080, 541 | "height": 1920, 542 | "fps": 29.969999313354492, 543 | "link": "https://videos.pexels.com/video-files/5640919/5640919-hd_1080_1920_30fps.mp4", 544 | "size": 12368058 545 | } 546 | ], 547 | "video_pictures": [ 548 | { 549 | "id": 3127909, 550 | "nr": 0, 551 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-0.jpeg" 552 | }, 553 | { 554 | "id": 3127924, 555 | "nr": 1, 556 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-1.jpeg" 557 | }, 558 | { 559 | "id": 3127940, 560 | "nr": 2, 561 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-2.jpeg" 562 | }, 563 | { 564 | "id": 3127955, 565 | "nr": 3, 566 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-3.jpeg" 567 | }, 568 | { 569 | "id": 3127970, 570 | "nr": 4, 571 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-4.jpeg" 572 | }, 573 | { 574 | "id": 3127982, 575 | "nr": 5, 576 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-5.jpeg" 577 | }, 578 | { 579 | "id": 3127998, 580 | "nr": 6, 581 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-6.jpeg" 582 | }, 583 | { 584 | "id": 3128008, 585 | "nr": 7, 586 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-7.jpeg" 587 | }, 588 | { 589 | "id": 3128025, 590 | "nr": 8, 591 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-8.jpeg" 592 | }, 593 | { 594 | "id": 3128040, 595 | "nr": 9, 596 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-9.jpeg" 597 | }, 598 | { 599 | "id": 3128049, 600 | "nr": 10, 601 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-10.jpeg" 602 | }, 603 | { 604 | "id": 3128064, 605 | "nr": 11, 606 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-11.jpeg" 607 | }, 608 | { 609 | "id": 3128074, 610 | "nr": 12, 611 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-12.jpeg" 612 | }, 613 | { 614 | "id": 3128083, 615 | "nr": 13, 616 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-13.jpeg" 617 | }, 618 | { 619 | "id": 3128094, 620 | "nr": 14, 621 | "picture": "https://images.pexels.com/videos/5640919/pictures/preview-14.jpeg" 622 | } 623 | ] 624 | }, 625 | { 626 | "id": 2796087, 627 | "width": 1080, 628 | "height": 1920, 629 | "duration": 7, 630 | "full_res": null, 631 | "tags": [], 632 | "url": "https://www.pexels.com/video/cute-dog-kissing-her-owner-2796087/", 633 | "image": "https://images.pexels.com/videos/2796087/free-video-2796087.jpg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 634 | "avg_color": null, 635 | "user": { 636 | "id": 1437723, 637 | "name": "cottonbro studio", 638 | "url": "https://www.pexels.com/@cottonbro" 639 | }, 640 | "video_files": [ 641 | { 642 | "id": 9274167, 643 | "quality": "hd", 644 | "file_type": "video/mp4", 645 | "width": 1080, 646 | "height": 1920, 647 | "fps": 25, 648 | "link": "https://videos.pexels.com/video-files/2796087/2796087-hd_1080_1920_25fps.mp4", 649 | "size": 4767357 650 | }, 651 | { 652 | "id": 9274243, 653 | "quality": "sd", 654 | "file_type": "video/mp4", 655 | "width": 360, 656 | "height": 640, 657 | "fps": 25, 658 | "link": "https://videos.pexels.com/video-files/2796087/2796087-sd_360_640_25fps.mp4", 659 | "size": 559814 660 | }, 661 | { 662 | "id": 9274342, 663 | "quality": "sd", 664 | "file_type": "video/mp4", 665 | "width": 240, 666 | "height": 426, 667 | "fps": 25, 668 | "link": "https://videos.pexels.com/video-files/2796087/2796087-sd_240_426_25fps.mp4", 669 | "size": 338415 670 | }, 671 | { 672 | "id": 9274434, 673 | "quality": "sd", 674 | "file_type": "video/mp4", 675 | "width": 540, 676 | "height": 960, 677 | "fps": 25, 678 | "link": "https://videos.pexels.com/video-files/2796087/2796087-sd_540_960_25fps.mp4", 679 | "size": 1621844 680 | }, 681 | { 682 | "id": 9274505, 683 | "quality": "hd", 684 | "file_type": "video/mp4", 685 | "width": 720, 686 | "height": 1280, 687 | "fps": 25, 688 | "link": "https://videos.pexels.com/video-files/2796087/2796087-hd_720_1280_25fps.mp4", 689 | "size": 2518080 690 | } 691 | ], 692 | "video_pictures": [ 693 | { 694 | "id": 386227, 695 | "nr": 0, 696 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-0.jpeg" 697 | }, 698 | { 699 | "id": 386228, 700 | "nr": 1, 701 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-1.jpeg" 702 | }, 703 | { 704 | "id": 386230, 705 | "nr": 2, 706 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-2.jpeg" 707 | }, 708 | { 709 | "id": 386231, 710 | "nr": 3, 711 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-3.jpeg" 712 | }, 713 | { 714 | "id": 386233, 715 | "nr": 4, 716 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-4.jpeg" 717 | }, 718 | { 719 | "id": 386234, 720 | "nr": 5, 721 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-5.jpeg" 722 | }, 723 | { 724 | "id": 386236, 725 | "nr": 6, 726 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-6.jpeg" 727 | }, 728 | { 729 | "id": 386237, 730 | "nr": 7, 731 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-7.jpeg" 732 | }, 733 | { 734 | "id": 386239, 735 | "nr": 8, 736 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-8.jpeg" 737 | }, 738 | { 739 | "id": 386240, 740 | "nr": 9, 741 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-9.jpeg" 742 | }, 743 | { 744 | "id": 386242, 745 | "nr": 10, 746 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-10.jpeg" 747 | }, 748 | { 749 | "id": 386243, 750 | "nr": 11, 751 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-11.jpeg" 752 | }, 753 | { 754 | "id": 386245, 755 | "nr": 12, 756 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-12.jpeg" 757 | }, 758 | { 759 | "id": 386246, 760 | "nr": 13, 761 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-13.jpeg" 762 | }, 763 | { 764 | "id": 386247, 765 | "nr": 14, 766 | "picture": "https://images.pexels.com/videos/2796087/pictures/preview-14.jpeg" 767 | } 768 | ] 769 | }, 770 | { 771 | "id": 4057322, 772 | "width": 2160, 773 | "height": 4096, 774 | "duration": 55, 775 | "full_res": null, 776 | "tags": [], 777 | "url": "https://www.pexels.com/video/a-woman-embracing-her-pet-dog-in-bed-4057322/", 778 | "image": "https://images.pexels.com/videos/4057322/pexels-photo-4057322.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 779 | "avg_color": null, 780 | "user": { 781 | "id": 1437723, 782 | "name": "cottonbro studio", 783 | "url": "https://www.pexels.com/@cottonbro" 784 | }, 785 | "video_files": [ 786 | { 787 | "id": 9343066, 788 | "quality": "hd", 789 | "file_type": "video/mp4", 790 | "width": 1080, 791 | "height": 2048, 792 | "fps": 25, 793 | "link": "https://videos.pexels.com/video-files/4057322/4057322-hd_1080_2048_25fps.mp4", 794 | "size": 29351986 795 | }, 796 | { 797 | "id": 9343123, 798 | "quality": "uhd", 799 | "file_type": "video/mp4", 800 | "width": 1440, 801 | "height": 2732, 802 | "fps": 25, 803 | "link": "https://videos.pexels.com/video-files/4057322/4057322-uhd_1440_2732_25fps.mp4", 804 | "size": 53144176 805 | }, 806 | { 807 | "id": 9343174, 808 | "quality": "sd", 809 | "file_type": "video/mp4", 810 | "width": 338, 811 | "height": 640, 812 | "fps": 25, 813 | "link": "https://videos.pexels.com/video-files/4057322/4057322-sd_338_640_25fps.mp4", 814 | "size": 3406340 815 | }, 816 | { 817 | "id": 9343222, 818 | "quality": "sd", 819 | "file_type": "video/mp4", 820 | "width": 506, 821 | "height": 960, 822 | "fps": 25, 823 | "link": "https://videos.pexels.com/video-files/4057322/4057322-sd_506_960_25fps.mp4", 824 | "size": 7561607 825 | }, 826 | { 827 | "id": 9343299, 828 | "quality": "uhd", 829 | "file_type": "video/mp4", 830 | "width": 2160, 831 | "height": 4096, 832 | "fps": 25, 833 | "link": "https://videos.pexels.com/video-files/4057322/4057322-uhd_2160_4096_25fps.mp4", 834 | "size": 124989303 835 | }, 836 | { 837 | "id": 9343354, 838 | "quality": "sd", 839 | "file_type": "video/mp4", 840 | "width": 226, 841 | "height": 426, 842 | "fps": 25, 843 | "link": "https://videos.pexels.com/video-files/4057322/4057322-sd_226_426_25fps.mp4", 844 | "size": 2091917 845 | }, 846 | { 847 | "id": 9343430, 848 | "quality": "hd", 849 | "file_type": "video/mp4", 850 | "width": 720, 851 | "height": 1366, 852 | "fps": 50, 853 | "link": "https://videos.pexels.com/video-files/4057322/4057322-hd_720_1366_50fps.mp4", 854 | "size": 15363594 855 | } 856 | ], 857 | "video_pictures": [ 858 | { 859 | "id": 1106172, 860 | "nr": 0, 861 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-0.jpeg" 862 | }, 863 | { 864 | "id": 1106179, 865 | "nr": 1, 866 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-1.jpeg" 867 | }, 868 | { 869 | "id": 1106188, 870 | "nr": 2, 871 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-2.jpeg" 872 | }, 873 | { 874 | "id": 1106197, 875 | "nr": 3, 876 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-3.jpeg" 877 | }, 878 | { 879 | "id": 1106203, 880 | "nr": 4, 881 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-4.jpeg" 882 | }, 883 | { 884 | "id": 1106213, 885 | "nr": 5, 886 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-5.jpeg" 887 | }, 888 | { 889 | "id": 1106218, 890 | "nr": 6, 891 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-6.jpeg" 892 | }, 893 | { 894 | "id": 1106224, 895 | "nr": 7, 896 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-7.jpeg" 897 | }, 898 | { 899 | "id": 1106230, 900 | "nr": 8, 901 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-8.jpeg" 902 | }, 903 | { 904 | "id": 1106233, 905 | "nr": 9, 906 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-9.jpeg" 907 | }, 908 | { 909 | "id": 1106239, 910 | "nr": 10, 911 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-10.jpeg" 912 | }, 913 | { 914 | "id": 1106243, 915 | "nr": 11, 916 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-11.jpeg" 917 | }, 918 | { 919 | "id": 1106263, 920 | "nr": 12, 921 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-12.jpeg" 922 | }, 923 | { 924 | "id": 1106267, 925 | "nr": 13, 926 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-13.jpeg" 927 | }, 928 | { 929 | "id": 1106277, 930 | "nr": 14, 931 | "picture": "https://images.pexels.com/videos/4057322/pictures/preview-14.jpeg" 932 | } 933 | ] 934 | }, 935 | { 936 | "id": 4838264, 937 | "width": 2160, 938 | "height": 3840, 939 | "duration": 14, 940 | "full_res": null, 941 | "tags": [], 942 | "url": "https://www.pexels.com/video/cute-dog-with-a-bow-tie-4838264/", 943 | "image": "https://images.pexels.com/videos/4838264/adorable-animal-bow-tie-cute-4838264.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 944 | "avg_color": null, 945 | "user": { 946 | "id": 1984515, 947 | "name": "Anna Shvets", 948 | "url": "https://www.pexels.com/@shvetsa" 949 | }, 950 | "video_files": [ 951 | { 952 | "id": 9398801, 953 | "quality": "sd", 954 | "file_type": "video/mp4", 955 | "width": 240, 956 | "height": 426, 957 | "fps": 24, 958 | "link": "https://videos.pexels.com/video-files/4838264/4838264-sd_240_426_24fps.mp4", 959 | "size": 188716 960 | }, 961 | { 962 | "id": 9398902, 963 | "quality": "sd", 964 | "file_type": "video/mp4", 965 | "width": 360, 966 | "height": 640, 967 | "fps": 24, 968 | "link": "https://videos.pexels.com/video-files/4838264/4838264-sd_360_640_24fps.mp4", 969 | "size": 368248 970 | }, 971 | { 972 | "id": 9398969, 973 | "quality": "uhd", 974 | "file_type": "video/mp4", 975 | "width": 2160, 976 | "height": 3840, 977 | "fps": 24, 978 | "link": "https://videos.pexels.com/video-files/4838264/4838264-uhd_2160_3840_24fps.mp4", 979 | "size": 15258106 980 | }, 981 | { 982 | "id": 9399029, 983 | "quality": "hd", 984 | "file_type": "video/mp4", 985 | "width": 720, 986 | "height": 1280, 987 | "fps": 24, 988 | "link": "https://videos.pexels.com/video-files/4838264/4838264-hd_720_1280_24fps.mp4", 989 | "size": 1305001 990 | }, 991 | { 992 | "id": 9399062, 993 | "quality": "uhd", 994 | "file_type": "video/mp4", 995 | "width": 1440, 996 | "height": 2560, 997 | "fps": 24, 998 | "link": "https://videos.pexels.com/video-files/4838264/4838264-uhd_1440_2560_24fps.mp4", 999 | "size": 5690310 1000 | }, 1001 | { 1002 | "id": 9399111, 1003 | "quality": "sd", 1004 | "file_type": "video/mp4", 1005 | "width": 540, 1006 | "height": 960, 1007 | "fps": 24, 1008 | "link": "https://videos.pexels.com/video-files/4838264/4838264-sd_540_960_24fps.mp4", 1009 | "size": 770170 1010 | }, 1011 | { 1012 | "id": 9399189, 1013 | "quality": "hd", 1014 | "file_type": "video/mp4", 1015 | "width": 1080, 1016 | "height": 1920, 1017 | "fps": 24, 1018 | "link": "https://videos.pexels.com/video-files/4838264/4838264-hd_1080_1920_24fps.mp4", 1019 | "size": 3288851 1020 | } 1021 | ], 1022 | "video_pictures": [ 1023 | { 1024 | "id": 2023346, 1025 | "nr": 0, 1026 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-0.jpeg" 1027 | }, 1028 | { 1029 | "id": 2023347, 1030 | "nr": 1, 1031 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-1.jpeg" 1032 | }, 1033 | { 1034 | "id": 2023349, 1035 | "nr": 2, 1036 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-2.jpeg" 1037 | }, 1038 | { 1039 | "id": 2023350, 1040 | "nr": 3, 1041 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-3.jpeg" 1042 | }, 1043 | { 1044 | "id": 2023352, 1045 | "nr": 4, 1046 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-4.jpeg" 1047 | }, 1048 | { 1049 | "id": 2023354, 1050 | "nr": 5, 1051 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-5.jpeg" 1052 | }, 1053 | { 1054 | "id": 2023357, 1055 | "nr": 6, 1056 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-6.jpeg" 1057 | }, 1058 | { 1059 | "id": 2023361, 1060 | "nr": 7, 1061 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-7.jpeg" 1062 | }, 1063 | { 1064 | "id": 2023368, 1065 | "nr": 8, 1066 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-8.jpeg" 1067 | }, 1068 | { 1069 | "id": 2023382, 1070 | "nr": 9, 1071 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-9.jpeg" 1072 | }, 1073 | { 1074 | "id": 2023391, 1075 | "nr": 10, 1076 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-10.jpeg" 1077 | }, 1078 | { 1079 | "id": 2023395, 1080 | "nr": 11, 1081 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-11.jpeg" 1082 | }, 1083 | { 1084 | "id": 2023397, 1085 | "nr": 12, 1086 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-12.jpeg" 1087 | }, 1088 | { 1089 | "id": 2023399, 1090 | "nr": 13, 1091 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-13.jpeg" 1092 | }, 1093 | { 1094 | "id": 2023401, 1095 | "nr": 14, 1096 | "picture": "https://images.pexels.com/videos/4838264/pictures/preview-14.jpeg" 1097 | } 1098 | ] 1099 | }, 1100 | { 1101 | "id": 7516662, 1102 | "width": 1080, 1103 | "height": 1920, 1104 | "duration": 14, 1105 | "full_res": null, 1106 | "tags": [], 1107 | "url": "https://www.pexels.com/video/a-fashionable-dog-7516662/", 1108 | "image": "https://images.pexels.com/videos/7516662/pexels-photo-7516662.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 1109 | "avg_color": null, 1110 | "user": { 1111 | "id": 3149039, 1112 | "name": "RDNE Stock project", 1113 | "url": "https://www.pexels.com/@rdne" 1114 | }, 1115 | "video_files": [ 1116 | { 1117 | "id": 10457297, 1118 | "quality": "sd", 1119 | "file_type": "video/mp4", 1120 | "width": 360, 1121 | "height": 640, 1122 | "fps": 30, 1123 | "link": "https://videos.pexels.com/video-files/7516662/7516662-sd_360_640_30fps.mp4", 1124 | "size": 692484 1125 | }, 1126 | { 1127 | "id": 10457440, 1128 | "quality": "hd", 1129 | "file_type": "video/mp4", 1130 | "width": 1080, 1131 | "height": 1920, 1132 | "fps": 30, 1133 | "link": "https://videos.pexels.com/video-files/7516662/7516662-hd_1080_1920_30fps.mp4", 1134 | "size": 7088770 1135 | }, 1136 | { 1137 | "id": 10457686, 1138 | "quality": "sd", 1139 | "file_type": "video/mp4", 1140 | "width": 540, 1141 | "height": 960, 1142 | "fps": 30, 1143 | "link": "https://videos.pexels.com/video-files/7516662/7516662-sd_540_960_30fps.mp4", 1144 | "size": 1443492 1145 | }, 1146 | { 1147 | "id": 10457900, 1148 | "quality": "hd", 1149 | "file_type": "video/mp4", 1150 | "width": 720, 1151 | "height": 1280, 1152 | "fps": 30, 1153 | "link": "https://videos.pexels.com/video-files/7516662/7516662-hd_720_1280_30fps.mp4", 1154 | "size": 2916768 1155 | }, 1156 | { 1157 | "id": 10457978, 1158 | "quality": "sd", 1159 | "file_type": "video/mp4", 1160 | "width": 240, 1161 | "height": 426, 1162 | "fps": 30, 1163 | "link": "https://videos.pexels.com/video-files/7516662/7516662-sd_240_426_30fps.mp4", 1164 | "size": 507454 1165 | } 1166 | ], 1167 | "video_pictures": [ 1168 | { 1169 | "id": 6529252, 1170 | "nr": 0, 1171 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-0.jpeg" 1172 | }, 1173 | { 1174 | "id": 6529257, 1175 | "nr": 1, 1176 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-1.jpeg" 1177 | }, 1178 | { 1179 | "id": 6529261, 1180 | "nr": 2, 1181 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-2.jpeg" 1182 | }, 1183 | { 1184 | "id": 6529266, 1185 | "nr": 3, 1186 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-3.jpeg" 1187 | }, 1188 | { 1189 | "id": 6529270, 1190 | "nr": 4, 1191 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-4.jpeg" 1192 | }, 1193 | { 1194 | "id": 6529274, 1195 | "nr": 5, 1196 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-5.jpeg" 1197 | }, 1198 | { 1199 | "id": 6529278, 1200 | "nr": 6, 1201 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-6.jpeg" 1202 | }, 1203 | { 1204 | "id": 6529283, 1205 | "nr": 7, 1206 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-7.jpeg" 1207 | }, 1208 | { 1209 | "id": 6529286, 1210 | "nr": 8, 1211 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-8.jpeg" 1212 | }, 1213 | { 1214 | "id": 6529288, 1215 | "nr": 9, 1216 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-9.jpeg" 1217 | }, 1218 | { 1219 | "id": 6529293, 1220 | "nr": 10, 1221 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-10.jpeg" 1222 | }, 1223 | { 1224 | "id": 6529297, 1225 | "nr": 11, 1226 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-11.jpeg" 1227 | }, 1228 | { 1229 | "id": 6529300, 1230 | "nr": 12, 1231 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-12.jpeg" 1232 | }, 1233 | { 1234 | "id": 6529303, 1235 | "nr": 13, 1236 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-13.jpeg" 1237 | }, 1238 | { 1239 | "id": 6529306, 1240 | "nr": 14, 1241 | "picture": "https://images.pexels.com/videos/7516662/pictures/preview-14.jpeg" 1242 | } 1243 | ] 1244 | }, 1245 | { 1246 | "id": 6869468, 1247 | "width": 2160, 1248 | "height": 3840, 1249 | "duration": 16, 1250 | "full_res": null, 1251 | "tags": [], 1252 | "url": "https://www.pexels.com/video/a-dog-in-a-pet-harness-digging-6869468/", 1253 | "image": "https://images.pexels.com/videos/6869468/pexels-photo-6869468.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 1254 | "avg_color": null, 1255 | "user": { 1256 | "id": 6926475, 1257 | "name": "Dario Fernandez Ruz", 1258 | "url": "https://www.pexels.com/@dario-fernandez-ruz" 1259 | }, 1260 | "video_files": [ 1261 | { 1262 | "id": 10211091, 1263 | "quality": "uhd", 1264 | "file_type": "video/mp4", 1265 | "width": 1440, 1266 | "height": 2560, 1267 | "fps": 30, 1268 | "link": "https://videos.pexels.com/video-files/6869468/6869468-uhd_1440_2560_30fps.mp4", 1269 | "size": 21164429 1270 | }, 1271 | { 1272 | "id": 10211164, 1273 | "quality": "hd", 1274 | "file_type": "video/mp4", 1275 | "width": 1080, 1276 | "height": 1920, 1277 | "fps": 30, 1278 | "link": "https://videos.pexels.com/video-files/6869468/6869468-hd_1080_1920_30fps.mp4", 1279 | "size": 10701790 1280 | }, 1281 | { 1282 | "id": 10211185, 1283 | "quality": "sd", 1284 | "file_type": "video/mp4", 1285 | "width": 240, 1286 | "height": 426, 1287 | "fps": 30, 1288 | "link": "https://videos.pexels.com/video-files/6869468/6869468-sd_240_426_30fps.mp4", 1289 | "size": 752818 1290 | }, 1291 | { 1292 | "id": 10211248, 1293 | "quality": "sd", 1294 | "file_type": "video/mp4", 1295 | "width": 360, 1296 | "height": 640, 1297 | "fps": 30, 1298 | "link": "https://videos.pexels.com/video-files/6869468/6869468-sd_360_640_30fps.mp4", 1299 | "size": 1288253 1300 | }, 1301 | { 1302 | "id": 10211279, 1303 | "quality": "sd", 1304 | "file_type": "video/mp4", 1305 | "width": 540, 1306 | "height": 960, 1307 | "fps": 30, 1308 | "link": "https://videos.pexels.com/video-files/6869468/6869468-sd_540_960_30fps.mp4", 1309 | "size": 3249539 1310 | }, 1311 | { 1312 | "id": 10211390, 1313 | "quality": "hd", 1314 | "file_type": "video/mp4", 1315 | "width": 720, 1316 | "height": 1280, 1317 | "fps": 30, 1318 | "link": "https://videos.pexels.com/video-files/6869468/6869468-hd_720_1280_30fps.mp4", 1319 | "size": 5663124 1320 | }, 1321 | { 1322 | "id": 10211482, 1323 | "quality": "uhd", 1324 | "file_type": "video/mp4", 1325 | "width": 2160, 1326 | "height": 3840, 1327 | "fps": 30, 1328 | "link": "https://videos.pexels.com/video-files/6869468/6869468-uhd_2160_3840_30fps.mp4", 1329 | "size": 44125237 1330 | } 1331 | ], 1332 | "video_pictures": [ 1333 | { 1334 | "id": 5273946, 1335 | "nr": 0, 1336 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-0.jpeg" 1337 | }, 1338 | { 1339 | "id": 5273956, 1340 | "nr": 1, 1341 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-1.jpeg" 1342 | }, 1343 | { 1344 | "id": 5273971, 1345 | "nr": 2, 1346 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-2.jpeg" 1347 | }, 1348 | { 1349 | "id": 5273987, 1350 | "nr": 3, 1351 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-3.jpeg" 1352 | }, 1353 | { 1354 | "id": 5273999, 1355 | "nr": 4, 1356 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-4.jpeg" 1357 | }, 1358 | { 1359 | "id": 5274018, 1360 | "nr": 5, 1361 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-5.jpeg" 1362 | }, 1363 | { 1364 | "id": 5274035, 1365 | "nr": 6, 1366 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-6.jpeg" 1367 | }, 1368 | { 1369 | "id": 5274050, 1370 | "nr": 7, 1371 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-7.jpeg" 1372 | }, 1373 | { 1374 | "id": 5274061, 1375 | "nr": 8, 1376 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-8.jpeg" 1377 | }, 1378 | { 1379 | "id": 5274072, 1380 | "nr": 9, 1381 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-9.jpeg" 1382 | }, 1383 | { 1384 | "id": 5274080, 1385 | "nr": 10, 1386 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-10.jpeg" 1387 | }, 1388 | { 1389 | "id": 5274090, 1390 | "nr": 11, 1391 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-11.jpeg" 1392 | }, 1393 | { 1394 | "id": 5274097, 1395 | "nr": 12, 1396 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-12.jpeg" 1397 | }, 1398 | { 1399 | "id": 5274106, 1400 | "nr": 13, 1401 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-13.jpeg" 1402 | }, 1403 | { 1404 | "id": 5274111, 1405 | "nr": 14, 1406 | "picture": "https://images.pexels.com/videos/6869468/pictures/preview-14.jpeg" 1407 | } 1408 | ] 1409 | }, 1410 | { 1411 | "id": 4838265, 1412 | "width": 2160, 1413 | "height": 3840, 1414 | "duration": 8, 1415 | "full_res": null, 1416 | "tags": [], 1417 | "url": "https://www.pexels.com/video/small-dog-standing-on-a-stool-4838265/", 1418 | "image": "https://images.pexels.com/videos/4838265/animal-chihuahua-confetti-dog-4838265.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 1419 | "avg_color": null, 1420 | "user": { 1421 | "id": 1984515, 1422 | "name": "Anna Shvets", 1423 | "url": "https://www.pexels.com/@shvetsa" 1424 | }, 1425 | "video_files": [ 1426 | { 1427 | "id": 9398209, 1428 | "quality": "hd", 1429 | "file_type": "video/mp4", 1430 | "width": 720, 1431 | "height": 1280, 1432 | "fps": 24, 1433 | "link": "https://videos.pexels.com/video-files/4838265/4838265-hd_720_1280_24fps.mp4", 1434 | "size": 2402332 1435 | }, 1436 | { 1437 | "id": 9398258, 1438 | "quality": "uhd", 1439 | "file_type": "video/mp4", 1440 | "width": 2160, 1441 | "height": 3840, 1442 | "fps": 24, 1443 | "link": "https://videos.pexels.com/video-files/4838265/4838265-uhd_2160_3840_24fps.mp4", 1444 | "size": 22722849 1445 | }, 1446 | { 1447 | "id": 9398311, 1448 | "quality": "sd", 1449 | "file_type": "video/mp4", 1450 | "width": 240, 1451 | "height": 426, 1452 | "fps": 24, 1453 | "link": "https://videos.pexels.com/video-files/4838265/4838265-sd_240_426_24fps.mp4", 1454 | "size": 291319 1455 | }, 1456 | { 1457 | "id": 9398404, 1458 | "quality": "sd", 1459 | "file_type": "video/mp4", 1460 | "width": 360, 1461 | "height": 640, 1462 | "fps": 24, 1463 | "link": "https://videos.pexels.com/video-files/4838265/4838265-sd_360_640_24fps.mp4", 1464 | "size": 477287 1465 | }, 1466 | { 1467 | "id": 9398548, 1468 | "quality": "sd", 1469 | "file_type": "video/mp4", 1470 | "width": 540, 1471 | "height": 960, 1472 | "fps": 24, 1473 | "link": "https://videos.pexels.com/video-files/4838265/4838265-sd_540_960_24fps.mp4", 1474 | "size": 1411785 1475 | }, 1476 | { 1477 | "id": 9398656, 1478 | "quality": "hd", 1479 | "file_type": "video/mp4", 1480 | "width": 1080, 1481 | "height": 1920, 1482 | "fps": 24, 1483 | "link": "https://videos.pexels.com/video-files/4838265/4838265-hd_1080_1920_24fps.mp4", 1484 | "size": 4780169 1485 | }, 1486 | { 1487 | "id": 9398706, 1488 | "quality": "uhd", 1489 | "file_type": "video/mp4", 1490 | "width": 1440, 1491 | "height": 2560, 1492 | "fps": 24, 1493 | "link": "https://videos.pexels.com/video-files/4838265/4838265-uhd_1440_2560_24fps.mp4", 1494 | "size": 12419792 1495 | } 1496 | ], 1497 | "video_pictures": [ 1498 | { 1499 | "id": 2023305, 1500 | "nr": 0, 1501 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-0.jpeg" 1502 | }, 1503 | { 1504 | "id": 2023317, 1505 | "nr": 1, 1506 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-1.jpeg" 1507 | }, 1508 | { 1509 | "id": 2023329, 1510 | "nr": 2, 1511 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-2.jpeg" 1512 | }, 1513 | { 1514 | "id": 2023334, 1515 | "nr": 3, 1516 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-3.jpeg" 1517 | }, 1518 | { 1519 | "id": 2023337, 1520 | "nr": 4, 1521 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-4.jpeg" 1522 | }, 1523 | { 1524 | "id": 2023338, 1525 | "nr": 5, 1526 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-5.jpeg" 1527 | }, 1528 | { 1529 | "id": 2023339, 1530 | "nr": 6, 1531 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-6.jpeg" 1532 | }, 1533 | { 1534 | "id": 2023340, 1535 | "nr": 7, 1536 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-7.jpeg" 1537 | }, 1538 | { 1539 | "id": 2023341, 1540 | "nr": 8, 1541 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-8.jpeg" 1542 | }, 1543 | { 1544 | "id": 2023342, 1545 | "nr": 9, 1546 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-9.jpeg" 1547 | }, 1548 | { 1549 | "id": 2023343, 1550 | "nr": 10, 1551 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-10.jpeg" 1552 | }, 1553 | { 1554 | "id": 2023344, 1555 | "nr": 11, 1556 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-11.jpeg" 1557 | }, 1558 | { 1559 | "id": 2023345, 1560 | "nr": 12, 1561 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-12.jpeg" 1562 | }, 1563 | { 1564 | "id": 2023348, 1565 | "nr": 13, 1566 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-13.jpeg" 1567 | }, 1568 | { 1569 | "id": 2023351, 1570 | "nr": 14, 1571 | "picture": "https://images.pexels.com/videos/4838265/pictures/preview-14.jpeg" 1572 | } 1573 | ] 1574 | }, 1575 | { 1576 | "id": 4772990, 1577 | "width": 2160, 1578 | "height": 3840, 1579 | "duration": 5, 1580 | "full_res": null, 1581 | "tags": [], 1582 | "url": "https://www.pexels.com/video/cute-wrinkled-puppy-with-a-party-hat-4772990/", 1583 | "image": "https://images.pexels.com/videos/4772990/pexels-photo-4772990.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 1584 | "avg_color": null, 1585 | "user": { 1586 | "id": 1984515, 1587 | "name": "Anna Shvets", 1588 | "url": "https://www.pexels.com/@shvetsa" 1589 | }, 1590 | "video_files": [ 1591 | { 1592 | "id": 9397039, 1593 | "quality": "uhd", 1594 | "file_type": "video/mp4", 1595 | "width": 1440, 1596 | "height": 2560, 1597 | "fps": 24, 1598 | "link": "https://videos.pexels.com/video-files/4772990/4772990-uhd_1440_2560_24fps.mp4", 1599 | "size": 8119934 1600 | }, 1601 | { 1602 | "id": 9397193, 1603 | "quality": "sd", 1604 | "file_type": "video/mp4", 1605 | "width": 540, 1606 | "height": 960, 1607 | "fps": 24, 1608 | "link": "https://videos.pexels.com/video-files/4772990/4772990-sd_540_960_24fps.mp4", 1609 | "size": 952631 1610 | }, 1611 | { 1612 | "id": 9397393, 1613 | "quality": "sd", 1614 | "file_type": "video/mp4", 1615 | "width": 360, 1616 | "height": 640, 1617 | "fps": 24, 1618 | "link": "https://videos.pexels.com/video-files/4772990/4772990-sd_360_640_24fps.mp4", 1619 | "size": 316197 1620 | }, 1621 | { 1622 | "id": 9397519, 1623 | "quality": "uhd", 1624 | "file_type": "video/mp4", 1625 | "width": 2160, 1626 | "height": 3840, 1627 | "fps": 24, 1628 | "link": "https://videos.pexels.com/video-files/4772990/4772990-uhd_2160_3840_24fps.mp4", 1629 | "size": 14748363 1630 | }, 1631 | { 1632 | "id": 9397624, 1633 | "quality": "hd", 1634 | "file_type": "video/mp4", 1635 | "width": 720, 1636 | "height": 1280, 1637 | "fps": 24, 1638 | "link": "https://videos.pexels.com/video-files/4772990/4772990-hd_720_1280_24fps.mp4", 1639 | "size": 1609628 1640 | }, 1641 | { 1642 | "id": 9397709, 1643 | "quality": "hd", 1644 | "file_type": "video/mp4", 1645 | "width": 1080, 1646 | "height": 1920, 1647 | "fps": 24, 1648 | "link": "https://videos.pexels.com/video-files/4772990/4772990-hd_1080_1920_24fps.mp4", 1649 | "size": 3192595 1650 | }, 1651 | { 1652 | "id": 9397800, 1653 | "quality": "sd", 1654 | "file_type": "video/mp4", 1655 | "width": 240, 1656 | "height": 426, 1657 | "fps": 24, 1658 | "link": "https://videos.pexels.com/video-files/4772990/4772990-sd_240_426_24fps.mp4", 1659 | "size": 192566 1660 | } 1661 | ], 1662 | "video_pictures": [ 1663 | { 1664 | "id": 1969533, 1665 | "nr": 0, 1666 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-0.jpeg" 1667 | }, 1668 | { 1669 | "id": 1969577, 1670 | "nr": 1, 1671 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-1.jpeg" 1672 | }, 1673 | { 1674 | "id": 1969589, 1675 | "nr": 2, 1676 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-2.jpeg" 1677 | }, 1678 | { 1679 | "id": 1969603, 1680 | "nr": 3, 1681 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-3.jpeg" 1682 | }, 1683 | { 1684 | "id": 1969613, 1685 | "nr": 4, 1686 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-4.jpeg" 1687 | }, 1688 | { 1689 | "id": 1969625, 1690 | "nr": 5, 1691 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-5.jpeg" 1692 | }, 1693 | { 1694 | "id": 1969639, 1695 | "nr": 6, 1696 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-6.jpeg" 1697 | }, 1698 | { 1699 | "id": 1969646, 1700 | "nr": 7, 1701 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-7.jpeg" 1702 | }, 1703 | { 1704 | "id": 1969655, 1705 | "nr": 8, 1706 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-8.jpeg" 1707 | }, 1708 | { 1709 | "id": 1969663, 1710 | "nr": 9, 1711 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-9.jpeg" 1712 | }, 1713 | { 1714 | "id": 1969668, 1715 | "nr": 10, 1716 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-10.jpeg" 1717 | }, 1718 | { 1719 | "id": 1969674, 1720 | "nr": 11, 1721 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-11.jpeg" 1722 | }, 1723 | { 1724 | "id": 1969679, 1725 | "nr": 12, 1726 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-12.jpeg" 1727 | }, 1728 | { 1729 | "id": 1969686, 1730 | "nr": 13, 1731 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-13.jpeg" 1732 | }, 1733 | { 1734 | "id": 1969690, 1735 | "nr": 14, 1736 | "picture": "https://images.pexels.com/videos/4772990/pictures/preview-14.jpeg" 1737 | } 1738 | ] 1739 | }, 1740 | { 1741 | "id": 7525614, 1742 | "width": 1066, 1743 | "height": 1920, 1744 | "duration": 13, 1745 | "full_res": null, 1746 | "tags": [], 1747 | "url": "https://www.pexels.com/video/a-dog-on-standing-position-7525614/", 1748 | "image": "https://images.pexels.com/videos/7525614/animal-canine-cute-dog-7525614.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 1749 | "avg_color": null, 1750 | "user": { 1751 | "id": 2570462, 1752 | "name": "Antoni Shkraba", 1753 | "url": "https://www.pexels.com/@shkrabaanthony" 1754 | }, 1755 | "video_files": [ 1756 | { 1757 | "id": 10460511, 1758 | "quality": "sd", 1759 | "file_type": "video/mp4", 1760 | "width": 534, 1761 | "height": 960, 1762 | "fps": 25, 1763 | "link": "https://videos.pexels.com/video-files/7525614/7525614-sd_534_960_25fps.mp4", 1764 | "size": 1573644 1765 | }, 1766 | { 1767 | "id": 10460574, 1768 | "quality": "sd", 1769 | "file_type": "video/mp4", 1770 | "width": 238, 1771 | "height": 426, 1772 | "fps": 25, 1773 | "link": "https://videos.pexels.com/video-files/7525614/7525614-sd_238_426_25fps.mp4", 1774 | "size": 413286 1775 | }, 1776 | { 1777 | "id": 10460632, 1778 | "quality": "sd", 1779 | "file_type": "video/mp4", 1780 | "width": 356, 1781 | "height": 640, 1782 | "fps": 25, 1783 | "link": "https://videos.pexels.com/video-files/7525614/7525614-sd_356_640_25fps.mp4", 1784 | "size": 713082 1785 | }, 1786 | { 1787 | "id": 10460679, 1788 | "quality": "hd", 1789 | "file_type": "video/mp4", 1790 | "width": 720, 1791 | "height": 1298, 1792 | "fps": 50, 1793 | "link": "https://videos.pexels.com/video-files/7525614/7525614-hd_720_1298_50fps.mp4", 1794 | "size": 2852397 1795 | }, 1796 | { 1797 | "id": 10460738, 1798 | "quality": "hd", 1799 | "file_type": "video/mp4", 1800 | "width": 1066, 1801 | "height": 1920, 1802 | "fps": 25, 1803 | "link": "https://videos.pexels.com/video-files/7525614/7525614-hd_1066_1920_25fps.mp4", 1804 | "size": 5812227 1805 | } 1806 | ], 1807 | "video_pictures": [ 1808 | { 1809 | "id": 6546298, 1810 | "nr": 0, 1811 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-0.jpeg" 1812 | }, 1813 | { 1814 | "id": 6546310, 1815 | "nr": 1, 1816 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-1.jpeg" 1817 | }, 1818 | { 1819 | "id": 6546321, 1820 | "nr": 2, 1821 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-2.jpeg" 1822 | }, 1823 | { 1824 | "id": 6546330, 1825 | "nr": 3, 1826 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-3.jpeg" 1827 | }, 1828 | { 1829 | "id": 6546341, 1830 | "nr": 4, 1831 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-4.jpeg" 1832 | }, 1833 | { 1834 | "id": 6546349, 1835 | "nr": 5, 1836 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-5.jpeg" 1837 | }, 1838 | { 1839 | "id": 6546360, 1840 | "nr": 6, 1841 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-6.jpeg" 1842 | }, 1843 | { 1844 | "id": 6546371, 1845 | "nr": 7, 1846 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-7.jpeg" 1847 | }, 1848 | { 1849 | "id": 6546383, 1850 | "nr": 8, 1851 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-8.jpeg" 1852 | }, 1853 | { 1854 | "id": 6546391, 1855 | "nr": 9, 1856 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-9.jpeg" 1857 | }, 1858 | { 1859 | "id": 6546401, 1860 | "nr": 10, 1861 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-10.jpeg" 1862 | }, 1863 | { 1864 | "id": 6546414, 1865 | "nr": 11, 1866 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-11.jpeg" 1867 | }, 1868 | { 1869 | "id": 6546421, 1870 | "nr": 12, 1871 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-12.jpeg" 1872 | }, 1873 | { 1874 | "id": 6546425, 1875 | "nr": 13, 1876 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-13.jpeg" 1877 | }, 1878 | { 1879 | "id": 6546428, 1880 | "nr": 14, 1881 | "picture": "https://images.pexels.com/videos/7525614/pictures/preview-14.jpeg" 1882 | } 1883 | ] 1884 | }, 1885 | { 1886 | "id": 4772983, 1887 | "width": 2160, 1888 | "height": 3840, 1889 | "duration": 7, 1890 | "full_res": null, 1891 | "tags": [], 1892 | "url": "https://www.pexels.com/video/cute-dog-with-a-shower-cap-and-biting-a-toothbrush-4772983/", 1893 | "image": "https://images.pexels.com/videos/4772983/pexels-photo-4772983.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 1894 | "avg_color": null, 1895 | "user": { 1896 | "id": 1984515, 1897 | "name": "Anna Shvets", 1898 | "url": "https://www.pexels.com/@shvetsa" 1899 | }, 1900 | "video_files": [ 1901 | { 1902 | "id": 9396203, 1903 | "quality": "uhd", 1904 | "file_type": "video/mp4", 1905 | "width": 1440, 1906 | "height": 2560, 1907 | "fps": 24, 1908 | "link": "https://videos.pexels.com/video-files/4772983/4772983-uhd_1440_2560_24fps.mp4", 1909 | "size": 10084467 1910 | }, 1911 | { 1912 | "id": 9396226, 1913 | "quality": "uhd", 1914 | "file_type": "video/mp4", 1915 | "width": 2160, 1916 | "height": 3840, 1917 | "fps": 24, 1918 | "link": "https://videos.pexels.com/video-files/4772983/4772983-uhd_2160_3840_24fps.mp4", 1919 | "size": 18119237 1920 | }, 1921 | { 1922 | "id": 9396335, 1923 | "quality": "sd", 1924 | "file_type": "video/mp4", 1925 | "width": 540, 1926 | "height": 960, 1927 | "fps": 24, 1928 | "link": "https://videos.pexels.com/video-files/4772983/4772983-sd_540_960_24fps.mp4", 1929 | "size": 1193840 1930 | }, 1931 | { 1932 | "id": 9396459, 1933 | "quality": "hd", 1934 | "file_type": "video/mp4", 1935 | "width": 720, 1936 | "height": 1280, 1937 | "fps": 24, 1938 | "link": "https://videos.pexels.com/video-files/4772983/4772983-hd_720_1280_24fps.mp4", 1939 | "size": 2022293 1940 | }, 1941 | { 1942 | "id": 9396559, 1943 | "quality": "sd", 1944 | "file_type": "video/mp4", 1945 | "width": 240, 1946 | "height": 426, 1947 | "fps": 24, 1948 | "link": "https://videos.pexels.com/video-files/4772983/4772983-sd_240_426_24fps.mp4", 1949 | "size": 243233 1950 | }, 1951 | { 1952 | "id": 9396737, 1953 | "quality": "hd", 1954 | "file_type": "video/mp4", 1955 | "width": 1080, 1956 | "height": 1920, 1957 | "fps": 24, 1958 | "link": "https://videos.pexels.com/video-files/4772983/4772983-hd_1080_1920_24fps.mp4", 1959 | "size": 4087546 1960 | }, 1961 | { 1962 | "id": 9396923, 1963 | "quality": "sd", 1964 | "file_type": "video/mp4", 1965 | "width": 360, 1966 | "height": 640, 1967 | "fps": 24, 1968 | "link": "https://videos.pexels.com/video-files/4772983/4772983-sd_360_640_24fps.mp4", 1969 | "size": 398056 1970 | } 1971 | ], 1972 | "video_pictures": [ 1973 | { 1974 | "id": 1969362, 1975 | "nr": 0, 1976 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-0.jpeg" 1977 | }, 1978 | { 1979 | "id": 1969410, 1980 | "nr": 1, 1981 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-1.jpeg" 1982 | }, 1983 | { 1984 | "id": 1969423, 1985 | "nr": 2, 1986 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-2.jpeg" 1987 | }, 1988 | { 1989 | "id": 1969436, 1990 | "nr": 3, 1991 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-3.jpeg" 1992 | }, 1993 | { 1994 | "id": 1969448, 1995 | "nr": 4, 1996 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-4.jpeg" 1997 | }, 1998 | { 1999 | "id": 1969459, 2000 | "nr": 5, 2001 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-5.jpeg" 2002 | }, 2003 | { 2004 | "id": 1969470, 2005 | "nr": 6, 2006 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-6.jpeg" 2007 | }, 2008 | { 2009 | "id": 1969483, 2010 | "nr": 7, 2011 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-7.jpeg" 2012 | }, 2013 | { 2014 | "id": 1969497, 2015 | "nr": 8, 2016 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-8.jpeg" 2017 | }, 2018 | { 2019 | "id": 1969506, 2020 | "nr": 9, 2021 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-9.jpeg" 2022 | }, 2023 | { 2024 | "id": 1969518, 2025 | "nr": 10, 2026 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-10.jpeg" 2027 | }, 2028 | { 2029 | "id": 1969531, 2030 | "nr": 11, 2031 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-11.jpeg" 2032 | }, 2033 | { 2034 | "id": 1969548, 2035 | "nr": 12, 2036 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-12.jpeg" 2037 | }, 2038 | { 2039 | "id": 1969560, 2040 | "nr": 13, 2041 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-13.jpeg" 2042 | }, 2043 | { 2044 | "id": 1969572, 2045 | "nr": 14, 2046 | "picture": "https://images.pexels.com/videos/4772983/pictures/preview-14.jpeg" 2047 | } 2048 | ] 2049 | }, 2050 | { 2051 | "id": 4838317, 2052 | "width": 2160, 2053 | "height": 3840, 2054 | "duration": 16, 2055 | "full_res": null, 2056 | "tags": [], 2057 | "url": "https://www.pexels.com/video/cute-puppy-with-a-sign-sitting-on-a-stool-4838317/", 2058 | "image": "https://images.pexels.com/videos/4838317/adorable-animal-cute-cute-puppy-4838317.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2059 | "avg_color": null, 2060 | "user": { 2061 | "id": 1984515, 2062 | "name": "Anna Shvets", 2063 | "url": "https://www.pexels.com/@shvetsa" 2064 | }, 2065 | "video_files": [ 2066 | { 2067 | "id": 9398248, 2068 | "quality": "sd", 2069 | "file_type": "video/mp4", 2070 | "width": 240, 2071 | "height": 426, 2072 | "fps": 24, 2073 | "link": "https://videos.pexels.com/video-files/4838317/4838317-sd_240_426_24fps.mp4", 2074 | "size": 313527 2075 | }, 2076 | { 2077 | "id": 9398273, 2078 | "quality": "hd", 2079 | "file_type": "video/mp4", 2080 | "width": 1080, 2081 | "height": 1920, 2082 | "fps": 24, 2083 | "link": "https://videos.pexels.com/video-files/4838317/4838317-hd_1080_1920_24fps.mp4", 2084 | "size": 4737192 2085 | }, 2086 | { 2087 | "id": 9398287, 2088 | "quality": "sd", 2089 | "file_type": "video/mp4", 2090 | "width": 360, 2091 | "height": 640, 2092 | "fps": 24, 2093 | "link": "https://videos.pexels.com/video-files/4838317/4838317-sd_360_640_24fps.mp4", 2094 | "size": 570678 2095 | }, 2096 | { 2097 | "id": 9398316, 2098 | "quality": "uhd", 2099 | "file_type": "video/mp4", 2100 | "width": 2160, 2101 | "height": 3840, 2102 | "fps": 24, 2103 | "link": "https://videos.pexels.com/video-files/4838317/4838317-uhd_2160_3840_24fps.mp4", 2104 | "size": 26664953 2105 | }, 2106 | { 2107 | "id": 9398341, 2108 | "quality": "sd", 2109 | "file_type": "video/mp4", 2110 | "width": 540, 2111 | "height": 960, 2112 | "fps": 24, 2113 | "link": "https://videos.pexels.com/video-files/4838317/4838317-sd_540_960_24fps.mp4", 2114 | "size": 1185368 2115 | }, 2116 | { 2117 | "id": 9398362, 2118 | "quality": "uhd", 2119 | "file_type": "video/mp4", 2120 | "width": 1440, 2121 | "height": 2560, 2122 | "fps": 24, 2123 | "link": "https://videos.pexels.com/video-files/4838317/4838317-uhd_1440_2560_24fps.mp4", 2124 | "size": 8719652 2125 | }, 2126 | { 2127 | "id": 9398399, 2128 | "quality": "hd", 2129 | "file_type": "video/mp4", 2130 | "width": 720, 2131 | "height": 1280, 2132 | "fps": 24, 2133 | "link": "https://videos.pexels.com/video-files/4838317/4838317-hd_720_1280_24fps.mp4", 2134 | "size": 1961229 2135 | } 2136 | ], 2137 | "video_pictures": [ 2138 | { 2139 | "id": 2023451, 2140 | "nr": 0, 2141 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-0.jpeg" 2142 | }, 2143 | { 2144 | "id": 2023452, 2145 | "nr": 1, 2146 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-1.jpeg" 2147 | }, 2148 | { 2149 | "id": 2023455, 2150 | "nr": 2, 2151 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-2.jpeg" 2152 | }, 2153 | { 2154 | "id": 2023460, 2155 | "nr": 3, 2156 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-3.jpeg" 2157 | }, 2158 | { 2159 | "id": 2023462, 2160 | "nr": 4, 2161 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-4.jpeg" 2162 | }, 2163 | { 2164 | "id": 2023464, 2165 | "nr": 5, 2166 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-5.jpeg" 2167 | }, 2168 | { 2169 | "id": 2023466, 2170 | "nr": 6, 2171 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-6.jpeg" 2172 | }, 2173 | { 2174 | "id": 2023468, 2175 | "nr": 7, 2176 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-7.jpeg" 2177 | }, 2178 | { 2179 | "id": 2023470, 2180 | "nr": 8, 2181 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-8.jpeg" 2182 | }, 2183 | { 2184 | "id": 2023472, 2185 | "nr": 9, 2186 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-9.jpeg" 2187 | }, 2188 | { 2189 | "id": 2023474, 2190 | "nr": 10, 2191 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-10.jpeg" 2192 | }, 2193 | { 2194 | "id": 2023476, 2195 | "nr": 11, 2196 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-11.jpeg" 2197 | }, 2198 | { 2199 | "id": 2023478, 2200 | "nr": 12, 2201 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-12.jpeg" 2202 | }, 2203 | { 2204 | "id": 2023480, 2205 | "nr": 13, 2206 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-13.jpeg" 2207 | }, 2208 | { 2209 | "id": 2023482, 2210 | "nr": 14, 2211 | "picture": "https://images.pexels.com/videos/4838317/pictures/preview-14.jpeg" 2212 | } 2213 | ] 2214 | }, 2215 | { 2216 | "id": 5744686, 2217 | "width": 2160, 2218 | "height": 3840, 2219 | "duration": 7, 2220 | "full_res": null, 2221 | "tags": [], 2222 | "url": "https://www.pexels.com/video/petting-a-dog-5744686/", 2223 | "image": "https://images.pexels.com/videos/5744686/pexels-photo-5744686.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2224 | "avg_color": null, 2225 | "user": { 2226 | "id": 3651179, 2227 | "name": "Zen Chung", 2228 | "url": "https://www.pexels.com/@zen-chung" 2229 | }, 2230 | "video_files": [ 2231 | { 2232 | "id": 9793693, 2233 | "quality": "sd", 2234 | "file_type": "video/mp4", 2235 | "width": 360, 2236 | "height": 640, 2237 | "fps": 23.97599983215332, 2238 | "link": "https://videos.pexels.com/video-files/5744686/5744686-sd_360_640_24fps.mp4", 2239 | "size": 517092 2240 | }, 2241 | { 2242 | "id": 9793711, 2243 | "quality": "uhd", 2244 | "file_type": "video/mp4", 2245 | "width": 2160, 2246 | "height": 3840, 2247 | "fps": 23.97599983215332, 2248 | "link": "https://videos.pexels.com/video-files/5744686/5744686-uhd_2160_3840_24fps.mp4", 2249 | "size": 19129458 2250 | }, 2251 | { 2252 | "id": 9793730, 2253 | "quality": "sd", 2254 | "file_type": "video/mp4", 2255 | "width": 240, 2256 | "height": 426, 2257 | "fps": 23.97599983215332, 2258 | "link": "https://videos.pexels.com/video-files/5744686/5744686-sd_240_426_24fps.mp4", 2259 | "size": 311381 2260 | }, 2261 | { 2262 | "id": 9793773, 2263 | "quality": "hd", 2264 | "file_type": "video/mp4", 2265 | "width": 1080, 2266 | "height": 1920, 2267 | "fps": 23.97599983215332, 2268 | "link": "https://videos.pexels.com/video-files/5744686/5744686-hd_1080_1920_24fps.mp4", 2269 | "size": 4312727 2270 | }, 2271 | { 2272 | "id": 9793815, 2273 | "quality": "uhd", 2274 | "file_type": "video/mp4", 2275 | "width": 1440, 2276 | "height": 2560, 2277 | "fps": 23.97599983215332, 2278 | "link": "https://videos.pexels.com/video-files/5744686/5744686-uhd_1440_2560_24fps.mp4", 2279 | "size": 10330162 2280 | }, 2281 | { 2282 | "id": 9793855, 2283 | "quality": "hd", 2284 | "file_type": "video/mp4", 2285 | "width": 720, 2286 | "height": 1280, 2287 | "fps": 23.97599983215332, 2288 | "link": "https://videos.pexels.com/video-files/5744686/5744686-hd_720_1280_24fps.mp4", 2289 | "size": 2288397 2290 | }, 2291 | { 2292 | "id": 9793896, 2293 | "quality": "sd", 2294 | "file_type": "video/mp4", 2295 | "width": 540, 2296 | "height": 960, 2297 | "fps": 23.97599983215332, 2298 | "link": "https://videos.pexels.com/video-files/5744686/5744686-sd_540_960_24fps.mp4", 2299 | "size": 1402915 2300 | } 2301 | ], 2302 | "video_pictures": [ 2303 | { 2304 | "id": 3308020, 2305 | "nr": 0, 2306 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-0.jpeg" 2307 | }, 2308 | { 2309 | "id": 3308025, 2310 | "nr": 1, 2311 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-1.jpeg" 2312 | }, 2313 | { 2314 | "id": 3308032, 2315 | "nr": 2, 2316 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-2.jpeg" 2317 | }, 2318 | { 2319 | "id": 3308041, 2320 | "nr": 3, 2321 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-3.jpeg" 2322 | }, 2323 | { 2324 | "id": 3308048, 2325 | "nr": 4, 2326 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-4.jpeg" 2327 | }, 2328 | { 2329 | "id": 3308053, 2330 | "nr": 5, 2331 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-5.jpeg" 2332 | }, 2333 | { 2334 | "id": 3308060, 2335 | "nr": 6, 2336 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-6.jpeg" 2337 | }, 2338 | { 2339 | "id": 3308070, 2340 | "nr": 7, 2341 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-7.jpeg" 2342 | }, 2343 | { 2344 | "id": 3308079, 2345 | "nr": 8, 2346 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-8.jpeg" 2347 | }, 2348 | { 2349 | "id": 3308089, 2350 | "nr": 9, 2351 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-9.jpeg" 2352 | }, 2353 | { 2354 | "id": 3308094, 2355 | "nr": 10, 2356 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-10.jpeg" 2357 | }, 2358 | { 2359 | "id": 3308099, 2360 | "nr": 11, 2361 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-11.jpeg" 2362 | }, 2363 | { 2364 | "id": 3308107, 2365 | "nr": 12, 2366 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-12.jpeg" 2367 | }, 2368 | { 2369 | "id": 3308115, 2370 | "nr": 13, 2371 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-13.jpeg" 2372 | }, 2373 | { 2374 | "id": 3308127, 2375 | "nr": 14, 2376 | "picture": "https://images.pexels.com/videos/5744686/pictures/preview-14.jpeg" 2377 | } 2378 | ] 2379 | }, 2380 | { 2381 | "id": 5534310, 2382 | "width": 1080, 2383 | "height": 1920, 2384 | "duration": 4, 2385 | "full_res": null, 2386 | "tags": [], 2387 | "url": "https://www.pexels.com/video/dog-walking-outside-the-house-5534310/", 2388 | "image": "https://images.pexels.com/videos/5534310/pexels-photo-5534310.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2389 | "avg_color": null, 2390 | "user": { 2391 | "id": 3684321, 2392 | "name": "Anna Bondarenko", 2393 | "url": "https://www.pexels.com/@aaa333" 2394 | }, 2395 | "video_files": [ 2396 | { 2397 | "id": 9727764, 2398 | "quality": "hd", 2399 | "file_type": "video/mp4", 2400 | "width": 720, 2401 | "height": 1280, 2402 | "fps": 29.969999313354492, 2403 | "link": "https://videos.pexels.com/video-files/5534310/5534310-hd_720_1280_30fps.mp4", 2404 | "size": 1299452 2405 | }, 2406 | { 2407 | "id": 9727782, 2408 | "quality": "sd", 2409 | "file_type": "video/mp4", 2410 | "width": 540, 2411 | "height": 960, 2412 | "fps": 29.969999313354492, 2413 | "link": "https://videos.pexels.com/video-files/5534310/5534310-sd_540_960_30fps.mp4", 2414 | "size": 827724 2415 | }, 2416 | { 2417 | "id": 9727802, 2418 | "quality": "hd", 2419 | "file_type": "video/mp4", 2420 | "width": 1080, 2421 | "height": 1920, 2422 | "fps": 29.969999313354492, 2423 | "link": "https://videos.pexels.com/video-files/5534310/5534310-hd_1080_1920_30fps.mp4", 2424 | "size": 2487815 2425 | }, 2426 | { 2427 | "id": 9727820, 2428 | "quality": "sd", 2429 | "file_type": "video/mp4", 2430 | "width": 240, 2431 | "height": 426, 2432 | "fps": 29.969999313354492, 2433 | "link": "https://videos.pexels.com/video-files/5534310/5534310-sd_240_426_30fps.mp4", 2434 | "size": 171393 2435 | }, 2436 | { 2437 | "id": 9727845, 2438 | "quality": "sd", 2439 | "file_type": "video/mp4", 2440 | "width": 360, 2441 | "height": 640, 2442 | "fps": 29.969999313354492, 2443 | "link": "https://videos.pexels.com/video-files/5534310/5534310-sd_360_640_30fps.mp4", 2444 | "size": 290289 2445 | } 2446 | ], 2447 | "video_pictures": [ 2448 | { 2449 | "id": 2960452, 2450 | "nr": 0, 2451 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-0.jpeg" 2452 | }, 2453 | { 2454 | "id": 2960462, 2455 | "nr": 1, 2456 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-1.jpeg" 2457 | }, 2458 | { 2459 | "id": 2960474, 2460 | "nr": 2, 2461 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-2.jpeg" 2462 | }, 2463 | { 2464 | "id": 2960483, 2465 | "nr": 3, 2466 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-3.jpeg" 2467 | }, 2468 | { 2469 | "id": 2960491, 2470 | "nr": 4, 2471 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-4.jpeg" 2472 | }, 2473 | { 2474 | "id": 2960500, 2475 | "nr": 5, 2476 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-5.jpeg" 2477 | }, 2478 | { 2479 | "id": 2960508, 2480 | "nr": 6, 2481 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-6.jpeg" 2482 | }, 2483 | { 2484 | "id": 2960519, 2485 | "nr": 7, 2486 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-7.jpeg" 2487 | }, 2488 | { 2489 | "id": 2960525, 2490 | "nr": 8, 2491 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-8.jpeg" 2492 | }, 2493 | { 2494 | "id": 2960530, 2495 | "nr": 9, 2496 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-9.jpeg" 2497 | }, 2498 | { 2499 | "id": 2960532, 2500 | "nr": 10, 2501 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-10.jpeg" 2502 | }, 2503 | { 2504 | "id": 2960536, 2505 | "nr": 11, 2506 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-11.jpeg" 2507 | }, 2508 | { 2509 | "id": 2960543, 2510 | "nr": 12, 2511 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-12.jpeg" 2512 | }, 2513 | { 2514 | "id": 2960548, 2515 | "nr": 13, 2516 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-13.jpeg" 2517 | }, 2518 | { 2519 | "id": 2960552, 2520 | "nr": 14, 2521 | "picture": "https://images.pexels.com/videos/5534310/pictures/preview-14.jpeg" 2522 | } 2523 | ] 2524 | }, 2525 | { 2526 | "id": 3189295, 2527 | "width": 1080, 2528 | "height": 1920, 2529 | "duration": 18, 2530 | "full_res": null, 2531 | "tags": [], 2532 | "url": "https://www.pexels.com/video/a-woman-grasping-in-embrace-a-pet-dog-3189295/", 2533 | "image": "https://images.pexels.com/videos/3189295/free-video-3189295.jpg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2534 | "avg_color": null, 2535 | "user": { 2536 | "id": 1437723, 2537 | "name": "cottonbro studio", 2538 | "url": "https://www.pexels.com/@cottonbro" 2539 | }, 2540 | "video_files": [ 2541 | { 2542 | "id": 9296790, 2543 | "quality": "hd", 2544 | "file_type": "video/mp4", 2545 | "width": 720, 2546 | "height": 1280, 2547 | "fps": 50, 2548 | "link": "https://videos.pexels.com/video-files/3189295/3189295-hd_720_1280_50fps.mp4", 2549 | "size": 4137414 2550 | }, 2551 | { 2552 | "id": 9296801, 2553 | "quality": "sd", 2554 | "file_type": "video/mp4", 2555 | "width": 240, 2556 | "height": 426, 2557 | "fps": 25, 2558 | "link": "https://videos.pexels.com/video-files/3189295/3189295-sd_240_426_25fps.mp4", 2559 | "size": 737676 2560 | }, 2561 | { 2562 | "id": 9296820, 2563 | "quality": "sd", 2564 | "file_type": "video/mp4", 2565 | "width": 540, 2566 | "height": 960, 2567 | "fps": 25, 2568 | "link": "https://videos.pexels.com/video-files/3189295/3189295-sd_540_960_25fps.mp4", 2569 | "size": 2544671 2570 | }, 2571 | { 2572 | "id": 9296833, 2573 | "quality": "hd", 2574 | "file_type": "video/mp4", 2575 | "width": 1080, 2576 | "height": 1920, 2577 | "fps": 25, 2578 | "link": "https://videos.pexels.com/video-files/3189295/3189295-hd_1080_1920_25fps.mp4", 2579 | "size": 8418066 2580 | }, 2581 | { 2582 | "id": 9296841, 2583 | "quality": "sd", 2584 | "file_type": "video/mp4", 2585 | "width": 360, 2586 | "height": 640, 2587 | "fps": 25, 2588 | "link": "https://videos.pexels.com/video-files/3189295/3189295-sd_360_640_25fps.mp4", 2589 | "size": 1226574 2590 | } 2591 | ], 2592 | "video_pictures": [ 2593 | { 2594 | "id": 571926, 2595 | "nr": 0, 2596 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-0.jpeg" 2597 | }, 2598 | { 2599 | "id": 571928, 2600 | "nr": 1, 2601 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-1.jpeg" 2602 | }, 2603 | { 2604 | "id": 571930, 2605 | "nr": 2, 2606 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-2.jpeg" 2607 | }, 2608 | { 2609 | "id": 571932, 2610 | "nr": 3, 2611 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-3.jpeg" 2612 | }, 2613 | { 2614 | "id": 571934, 2615 | "nr": 4, 2616 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-4.jpeg" 2617 | }, 2618 | { 2619 | "id": 571936, 2620 | "nr": 5, 2621 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-5.jpeg" 2622 | }, 2623 | { 2624 | "id": 571938, 2625 | "nr": 6, 2626 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-6.jpeg" 2627 | }, 2628 | { 2629 | "id": 571939, 2630 | "nr": 7, 2631 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-7.jpeg" 2632 | }, 2633 | { 2634 | "id": 571940, 2635 | "nr": 8, 2636 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-8.jpeg" 2637 | }, 2638 | { 2639 | "id": 571941, 2640 | "nr": 9, 2641 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-9.jpeg" 2642 | }, 2643 | { 2644 | "id": 571942, 2645 | "nr": 10, 2646 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-10.jpeg" 2647 | }, 2648 | { 2649 | "id": 571943, 2650 | "nr": 11, 2651 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-11.jpeg" 2652 | }, 2653 | { 2654 | "id": 571944, 2655 | "nr": 12, 2656 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-12.jpeg" 2657 | }, 2658 | { 2659 | "id": 571945, 2660 | "nr": 13, 2661 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-13.jpeg" 2662 | }, 2663 | { 2664 | "id": 571946, 2665 | "nr": 14, 2666 | "picture": "https://images.pexels.com/videos/3189295/pictures/preview-14.jpeg" 2667 | } 2668 | ] 2669 | }, 2670 | { 2671 | "id": 3189188, 2672 | "width": 1080, 2673 | "height": 1920, 2674 | "duration": 11, 2675 | "full_res": null, 2676 | "tags": [], 2677 | "url": "https://www.pexels.com/video/picture-taking-of-a-group-with-a-dog-by-the-christmas-tree-3189188/", 2678 | "image": "https://images.pexels.com/videos/3189188/free-video-3189188.jpg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2679 | "avg_color": null, 2680 | "user": { 2681 | "id": 1437723, 2682 | "name": "cottonbro studio", 2683 | "url": "https://www.pexels.com/@cottonbro" 2684 | }, 2685 | "video_files": [ 2686 | { 2687 | "id": 9297075, 2688 | "quality": "sd", 2689 | "file_type": "video/mp4", 2690 | "width": 240, 2691 | "height": 426, 2692 | "fps": 25, 2693 | "link": "https://videos.pexels.com/video-files/3189188/3189188-sd_240_426_25fps.mp4", 2694 | "size": 352645 2695 | }, 2696 | { 2697 | "id": 9297079, 2698 | "quality": "hd", 2699 | "file_type": "video/mp4", 2700 | "width": 720, 2701 | "height": 1280, 2702 | "fps": 25, 2703 | "link": "https://videos.pexels.com/video-files/3189188/3189188-hd_720_1280_25fps.mp4", 2704 | "size": 1927509 2705 | }, 2706 | { 2707 | "id": 9297085, 2708 | "quality": "sd", 2709 | "file_type": "video/mp4", 2710 | "width": 360, 2711 | "height": 640, 2712 | "fps": 25, 2713 | "link": "https://videos.pexels.com/video-files/3189188/3189188-sd_360_640_25fps.mp4", 2714 | "size": 591924 2715 | }, 2716 | { 2717 | "id": 9297092, 2718 | "quality": "hd", 2719 | "file_type": "video/mp4", 2720 | "width": 1080, 2721 | "height": 1920, 2722 | "fps": 25, 2723 | "link": "https://videos.pexels.com/video-files/3189188/3189188-hd_1080_1920_25fps.mp4", 2724 | "size": 3944638 2725 | }, 2726 | { 2727 | "id": 9297103, 2728 | "quality": "sd", 2729 | "file_type": "video/mp4", 2730 | "width": 540, 2731 | "height": 960, 2732 | "fps": 25, 2733 | "link": "https://videos.pexels.com/video-files/3189188/3189188-sd_540_960_25fps.mp4", 2734 | "size": 1147135 2735 | } 2736 | ], 2737 | "video_pictures": [ 2738 | { 2739 | "id": 571632, 2740 | "nr": 0, 2741 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-0.jpeg" 2742 | }, 2743 | { 2744 | "id": 571633, 2745 | "nr": 1, 2746 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-1.jpeg" 2747 | }, 2748 | { 2749 | "id": 571634, 2750 | "nr": 2, 2751 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-2.jpeg" 2752 | }, 2753 | { 2754 | "id": 571635, 2755 | "nr": 3, 2756 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-3.jpeg" 2757 | }, 2758 | { 2759 | "id": 571636, 2760 | "nr": 4, 2761 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-4.jpeg" 2762 | }, 2763 | { 2764 | "id": 571637, 2765 | "nr": 5, 2766 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-5.jpeg" 2767 | }, 2768 | { 2769 | "id": 571638, 2770 | "nr": 6, 2771 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-6.jpeg" 2772 | }, 2773 | { 2774 | "id": 571639, 2775 | "nr": 7, 2776 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-7.jpeg" 2777 | }, 2778 | { 2779 | "id": 571641, 2780 | "nr": 8, 2781 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-8.jpeg" 2782 | }, 2783 | { 2784 | "id": 571643, 2785 | "nr": 9, 2786 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-9.jpeg" 2787 | }, 2788 | { 2789 | "id": 571645, 2790 | "nr": 10, 2791 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-10.jpeg" 2792 | }, 2793 | { 2794 | "id": 571647, 2795 | "nr": 11, 2796 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-11.jpeg" 2797 | }, 2798 | { 2799 | "id": 571648, 2800 | "nr": 12, 2801 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-12.jpeg" 2802 | }, 2803 | { 2804 | "id": 571651, 2805 | "nr": 13, 2806 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-13.jpeg" 2807 | }, 2808 | { 2809 | "id": 571652, 2810 | "nr": 14, 2811 | "picture": "https://images.pexels.com/videos/3189188/pictures/preview-14.jpeg" 2812 | } 2813 | ] 2814 | }, 2815 | { 2816 | "id": 4057153, 2817 | "width": 2160, 2818 | "height": 4096, 2819 | "duration": 20, 2820 | "full_res": null, 2821 | "tags": [], 2822 | "url": "https://www.pexels.com/video/woman-girl-bed-bedroom-4057153/", 2823 | "image": "https://images.pexels.com/videos/4057153/pexels-photo-4057153.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2824 | "avg_color": null, 2825 | "user": { 2826 | "id": 1437723, 2827 | "name": "cottonbro studio", 2828 | "url": "https://www.pexels.com/@cottonbro" 2829 | }, 2830 | "video_files": [ 2831 | { 2832 | "id": 9343585, 2833 | "quality": "hd", 2834 | "file_type": "video/mp4", 2835 | "width": 720, 2836 | "height": 1366, 2837 | "fps": 50, 2838 | "link": "https://videos.pexels.com/video-files/4057153/4057153-hd_720_1366_50fps.mp4", 2839 | "size": 7224917 2840 | }, 2841 | { 2842 | "id": 9343671, 2843 | "quality": "sd", 2844 | "file_type": "video/mp4", 2845 | "width": 338, 2846 | "height": 640, 2847 | "fps": 25, 2848 | "link": "https://videos.pexels.com/video-files/4057153/4057153-sd_338_640_25fps.mp4", 2849 | "size": 1323215 2850 | }, 2851 | { 2852 | "id": 9343704, 2853 | "quality": "uhd", 2854 | "file_type": "video/mp4", 2855 | "width": 1440, 2856 | "height": 2732, 2857 | "fps": 25, 2858 | "link": "https://videos.pexels.com/video-files/4057153/4057153-uhd_1440_2732_25fps.mp4", 2859 | "size": 23644037 2860 | }, 2861 | { 2862 | "id": 9343817, 2863 | "quality": "uhd", 2864 | "file_type": "video/mp4", 2865 | "width": 2160, 2866 | "height": 4096, 2867 | "fps": 25, 2868 | "link": "https://videos.pexels.com/video-files/4057153/4057153-uhd_2160_4096_25fps.mp4", 2869 | "size": 53899996 2870 | }, 2871 | { 2872 | "id": 9343891, 2873 | "quality": "sd", 2874 | "file_type": "video/mp4", 2875 | "width": 226, 2876 | "height": 426, 2877 | "fps": 25, 2878 | "link": "https://videos.pexels.com/video-files/4057153/4057153-sd_226_426_25fps.mp4", 2879 | "size": 825709 2880 | }, 2881 | { 2882 | "id": 9344035, 2883 | "quality": "hd", 2884 | "file_type": "video/mp4", 2885 | "width": 1080, 2886 | "height": 2048, 2887 | "fps": 25, 2888 | "link": "https://videos.pexels.com/video-files/4057153/4057153-hd_1080_2048_25fps.mp4", 2889 | "size": 13265085 2890 | }, 2891 | { 2892 | "id": 9344080, 2893 | "quality": "sd", 2894 | "file_type": "video/mp4", 2895 | "width": 506, 2896 | "height": 960, 2897 | "fps": 25, 2898 | "link": "https://videos.pexels.com/video-files/4057153/4057153-sd_506_960_25fps.mp4", 2899 | "size": 3443888 2900 | } 2901 | ], 2902 | "video_pictures": [ 2903 | { 2904 | "id": 1105385, 2905 | "nr": 0, 2906 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-0.jpeg" 2907 | }, 2908 | { 2909 | "id": 1105386, 2910 | "nr": 1, 2911 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-1.jpeg" 2912 | }, 2913 | { 2914 | "id": 1105388, 2915 | "nr": 2, 2916 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-2.jpeg" 2917 | }, 2918 | { 2919 | "id": 1105392, 2920 | "nr": 3, 2921 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-3.jpeg" 2922 | }, 2923 | { 2924 | "id": 1105396, 2925 | "nr": 4, 2926 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-4.jpeg" 2927 | }, 2928 | { 2929 | "id": 1105400, 2930 | "nr": 5, 2931 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-5.jpeg" 2932 | }, 2933 | { 2934 | "id": 1105404, 2935 | "nr": 6, 2936 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-6.jpeg" 2937 | }, 2938 | { 2939 | "id": 1105409, 2940 | "nr": 7, 2941 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-7.jpeg" 2942 | }, 2943 | { 2944 | "id": 1105415, 2945 | "nr": 8, 2946 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-8.jpeg" 2947 | }, 2948 | { 2949 | "id": 1105423, 2950 | "nr": 9, 2951 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-9.jpeg" 2952 | }, 2953 | { 2954 | "id": 1105439, 2955 | "nr": 10, 2956 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-10.jpeg" 2957 | }, 2958 | { 2959 | "id": 1105447, 2960 | "nr": 11, 2961 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-11.jpeg" 2962 | }, 2963 | { 2964 | "id": 1105459, 2965 | "nr": 12, 2966 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-12.jpeg" 2967 | }, 2968 | { 2969 | "id": 1105474, 2970 | "nr": 13, 2971 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-13.jpeg" 2972 | }, 2973 | { 2974 | "id": 1105485, 2975 | "nr": 14, 2976 | "picture": "https://images.pexels.com/videos/4057153/pictures/preview-14.jpeg" 2977 | } 2978 | ] 2979 | }, 2980 | { 2981 | "id": 4772987, 2982 | "width": 2160, 2983 | "height": 3840, 2984 | "duration": 13, 2985 | "full_res": null, 2986 | "tags": [], 2987 | "url": "https://www.pexels.com/video/cute-dog-wearing-a-party-hat-4772987/", 2988 | "image": "https://images.pexels.com/videos/4772987/pexels-photo-4772987.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 2989 | "avg_color": null, 2990 | "user": { 2991 | "id": 1984515, 2992 | "name": "Anna Shvets", 2993 | "url": "https://www.pexels.com/@shvetsa" 2994 | }, 2995 | "video_files": [ 2996 | { 2997 | "id": 9396072, 2998 | "quality": "uhd", 2999 | "file_type": "video/mp4", 3000 | "width": 2160, 3001 | "height": 3840, 3002 | "fps": 24, 3003 | "link": "https://videos.pexels.com/video-files/4772987/4772987-uhd_2160_3840_24fps.mp4", 3004 | "size": 14428559 3005 | }, 3006 | { 3007 | "id": 9396075, 3008 | "quality": "hd", 3009 | "file_type": "video/mp4", 3010 | "width": 1080, 3011 | "height": 1920, 3012 | "fps": 24, 3013 | "link": "https://videos.pexels.com/video-files/4772987/4772987-hd_1080_1920_24fps.mp4", 3014 | "size": 2636301 3015 | }, 3016 | { 3017 | "id": 9396080, 3018 | "quality": "sd", 3019 | "file_type": "video/mp4", 3020 | "width": 540, 3021 | "height": 960, 3022 | "fps": 24, 3023 | "link": "https://videos.pexels.com/video-files/4772987/4772987-sd_540_960_24fps.mp4", 3024 | "size": 693787 3025 | }, 3026 | { 3027 | "id": 9396085, 3028 | "quality": "hd", 3029 | "file_type": "video/mp4", 3030 | "width": 720, 3031 | "height": 1280, 3032 | "fps": 24, 3033 | "link": "https://videos.pexels.com/video-files/4772987/4772987-hd_720_1280_24fps.mp4", 3034 | "size": 1108340 3035 | }, 3036 | { 3037 | "id": 9396089, 3038 | "quality": "sd", 3039 | "file_type": "video/mp4", 3040 | "width": 240, 3041 | "height": 426, 3042 | "fps": 24, 3043 | "link": "https://videos.pexels.com/video-files/4772987/4772987-sd_240_426_24fps.mp4", 3044 | "size": 184486 3045 | }, 3046 | { 3047 | "id": 9396097, 3048 | "quality": "uhd", 3049 | "file_type": "video/mp4", 3050 | "width": 1440, 3051 | "height": 2560, 3052 | "fps": 24, 3053 | "link": "https://videos.pexels.com/video-files/4772987/4772987-uhd_1440_2560_24fps.mp4", 3054 | "size": 4526205 3055 | }, 3056 | { 3057 | "id": 9396106, 3058 | "quality": "sd", 3059 | "file_type": "video/mp4", 3060 | "width": 360, 3061 | "height": 640, 3062 | "fps": 24, 3063 | "link": "https://videos.pexels.com/video-files/4772987/4772987-sd_360_640_24fps.mp4", 3064 | "size": 356129 3065 | } 3066 | ], 3067 | "video_pictures": [ 3068 | { 3069 | "id": 1969466, 3070 | "nr": 0, 3071 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-0.jpeg" 3072 | }, 3073 | { 3074 | "id": 1969520, 3075 | "nr": 1, 3076 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-1.jpeg" 3077 | }, 3078 | { 3079 | "id": 1969538, 3080 | "nr": 2, 3081 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-2.jpeg" 3082 | }, 3083 | { 3084 | "id": 1969556, 3085 | "nr": 3, 3086 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-3.jpeg" 3087 | }, 3088 | { 3089 | "id": 1969569, 3090 | "nr": 4, 3091 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-4.jpeg" 3092 | }, 3093 | { 3094 | "id": 1969584, 3095 | "nr": 5, 3096 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-5.jpeg" 3097 | }, 3098 | { 3099 | "id": 1969597, 3100 | "nr": 6, 3101 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-6.jpeg" 3102 | }, 3103 | { 3104 | "id": 1969612, 3105 | "nr": 7, 3106 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-7.jpeg" 3107 | }, 3108 | { 3109 | "id": 1969623, 3110 | "nr": 8, 3111 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-8.jpeg" 3112 | }, 3113 | { 3114 | "id": 1969633, 3115 | "nr": 9, 3116 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-9.jpeg" 3117 | }, 3118 | { 3119 | "id": 1969643, 3120 | "nr": 10, 3121 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-10.jpeg" 3122 | }, 3123 | { 3124 | "id": 1969650, 3125 | "nr": 11, 3126 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-11.jpeg" 3127 | }, 3128 | { 3129 | "id": 1969661, 3130 | "nr": 12, 3131 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-12.jpeg" 3132 | }, 3133 | { 3134 | "id": 1969667, 3135 | "nr": 13, 3136 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-13.jpeg" 3137 | }, 3138 | { 3139 | "id": 1969672, 3140 | "nr": 14, 3141 | "picture": "https://images.pexels.com/videos/4772987/pictures/preview-14.jpeg" 3142 | } 3143 | ] 3144 | }, 3145 | { 3146 | "id": 6568968, 3147 | "width": 2160, 3148 | "height": 4096, 3149 | "duration": 29, 3150 | "full_res": null, 3151 | "tags": [], 3152 | "url": "https://www.pexels.com/video/cute-dog-for-adoption-6568968/", 3153 | "image": "https://images.pexels.com/videos/6568968/pexels-photo-6568968.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 3154 | "avg_color": null, 3155 | "user": { 3156 | "id": 1437723, 3157 | "name": "cottonbro studio", 3158 | "url": "https://www.pexels.com/@cottonbro" 3159 | }, 3160 | "video_files": [ 3161 | { 3162 | "id": 10089710, 3163 | "quality": "sd", 3164 | "file_type": "video/mp4", 3165 | "width": 226, 3166 | "height": 426, 3167 | "fps": 25, 3168 | "link": "https://videos.pexels.com/video-files/6568968/6568968-sd_226_426_25fps.mp4", 3169 | "size": 1019847 3170 | }, 3171 | { 3172 | "id": 10089795, 3173 | "quality": "sd", 3174 | "file_type": "video/mp4", 3175 | "width": 506, 3176 | "height": 960, 3177 | "fps": 25, 3178 | "link": "https://videos.pexels.com/video-files/6568968/6568968-sd_506_960_25fps.mp4", 3179 | "size": 3655396 3180 | }, 3181 | { 3182 | "id": 10089892, 3183 | "quality": "uhd", 3184 | "file_type": "video/mp4", 3185 | "width": 2160, 3186 | "height": 4096, 3187 | "fps": 25, 3188 | "link": "https://videos.pexels.com/video-files/6568968/6568968-uhd_2160_4096_25fps.mp4", 3189 | "size": 64428275 3190 | }, 3191 | { 3192 | "id": 10089924, 3193 | "quality": "hd", 3194 | "file_type": "video/mp4", 3195 | "width": 720, 3196 | "height": 1366, 3197 | "fps": 25, 3198 | "link": "https://videos.pexels.com/video-files/6568968/6568968-hd_720_1366_25fps.mp4", 3199 | "size": 6887907 3200 | }, 3201 | { 3202 | "id": 10089942, 3203 | "quality": "hd", 3204 | "file_type": "video/mp4", 3205 | "width": 1080, 3206 | "height": 2048, 3207 | "fps": 25, 3208 | "link": "https://videos.pexels.com/video-files/6568968/6568968-hd_1080_2048_25fps.mp4", 3209 | "size": 14025291 3210 | }, 3211 | { 3212 | "id": 10090047, 3213 | "quality": "uhd", 3214 | "file_type": "video/mp4", 3215 | "width": 1440, 3216 | "height": 2732, 3217 | "fps": 25, 3218 | "link": "https://videos.pexels.com/video-files/6568968/6568968-uhd_1440_2732_25fps.mp4", 3219 | "size": 28760636 3220 | }, 3221 | { 3222 | "id": 10090120, 3223 | "quality": "sd", 3224 | "file_type": "video/mp4", 3225 | "width": 338, 3226 | "height": 640, 3227 | "fps": 25, 3228 | "link": "https://videos.pexels.com/video-files/6568968/6568968-sd_338_640_25fps.mp4", 3229 | "size": 1627681 3230 | } 3231 | ], 3232 | "video_pictures": [ 3233 | { 3234 | "id": 4667304, 3235 | "nr": 0, 3236 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-0.jpeg" 3237 | }, 3238 | { 3239 | "id": 4667311, 3240 | "nr": 1, 3241 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-1.jpeg" 3242 | }, 3243 | { 3244 | "id": 4667324, 3245 | "nr": 2, 3246 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-2.jpeg" 3247 | }, 3248 | { 3249 | "id": 4667337, 3250 | "nr": 3, 3251 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-3.jpeg" 3252 | }, 3253 | { 3254 | "id": 4667352, 3255 | "nr": 4, 3256 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-4.jpeg" 3257 | }, 3258 | { 3259 | "id": 4667361, 3260 | "nr": 5, 3261 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-5.jpeg" 3262 | }, 3263 | { 3264 | "id": 4667369, 3265 | "nr": 6, 3266 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-6.jpeg" 3267 | }, 3268 | { 3269 | "id": 4667375, 3270 | "nr": 7, 3271 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-7.jpeg" 3272 | }, 3273 | { 3274 | "id": 4667380, 3275 | "nr": 8, 3276 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-8.jpeg" 3277 | }, 3278 | { 3279 | "id": 4667386, 3280 | "nr": 9, 3281 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-9.jpeg" 3282 | }, 3283 | { 3284 | "id": 4667392, 3285 | "nr": 10, 3286 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-10.jpeg" 3287 | }, 3288 | { 3289 | "id": 4667401, 3290 | "nr": 11, 3291 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-11.jpeg" 3292 | }, 3293 | { 3294 | "id": 4667405, 3295 | "nr": 12, 3296 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-12.jpeg" 3297 | }, 3298 | { 3299 | "id": 4667408, 3300 | "nr": 13, 3301 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-13.jpeg" 3302 | }, 3303 | { 3304 | "id": 4667411, 3305 | "nr": 14, 3306 | "picture": "https://images.pexels.com/videos/6568968/pictures/preview-14.jpeg" 3307 | } 3308 | ] 3309 | }, 3310 | { 3311 | "id": 7189538, 3312 | "width": 2160, 3313 | "height": 3840, 3314 | "duration": 16, 3315 | "full_res": null, 3316 | "tags": [], 3317 | "url": "https://www.pexels.com/video/woman-training-her-dog-7189538/", 3318 | "image": "https://images.pexels.com/videos/7189538/pexels-photo-7189538.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 3319 | "avg_color": null, 3320 | "user": { 3321 | "id": 33201670, 3322 | "name": "Blue Bird", 3323 | "url": "https://www.pexels.com/@blue-bird" 3324 | }, 3325 | "video_files": [ 3326 | { 3327 | "id": 10335704, 3328 | "quality": "sd", 3329 | "file_type": "video/mp4", 3330 | "width": 540, 3331 | "height": 960, 3332 | "fps": 25, 3333 | "link": "https://videos.pexels.com/video-files/7189538/7189538-sd_540_960_25fps.mp4", 3334 | "size": 2607124 3335 | }, 3336 | { 3337 | "id": 10335746, 3338 | "quality": "hd", 3339 | "file_type": "video/mp4", 3340 | "width": 720, 3341 | "height": 1280, 3342 | "fps": 50, 3343 | "link": "https://videos.pexels.com/video-files/7189538/7189538-hd_720_1280_50fps.mp4", 3344 | "size": 5543220 3345 | }, 3346 | { 3347 | "id": 10335791, 3348 | "quality": "hd", 3349 | "file_type": "video/mp4", 3350 | "width": 1080, 3351 | "height": 1920, 3352 | "fps": 25, 3353 | "link": "https://videos.pexels.com/video-files/7189538/7189538-hd_1080_1920_25fps.mp4", 3354 | "size": 10168483 3355 | }, 3356 | { 3357 | "id": 10335864, 3358 | "quality": "uhd", 3359 | "file_type": "video/mp4", 3360 | "width": 1440, 3361 | "height": 2560, 3362 | "fps": 25, 3363 | "link": "https://videos.pexels.com/video-files/7189538/7189538-uhd_1440_2560_25fps.mp4", 3364 | "size": 21310724 3365 | }, 3366 | { 3367 | "id": 10335916, 3368 | "quality": "sd", 3369 | "file_type": "video/mp4", 3370 | "width": 360, 3371 | "height": 640, 3372 | "fps": 25, 3373 | "link": "https://videos.pexels.com/video-files/7189538/7189538-sd_360_640_25fps.mp4", 3374 | "size": 957606 3375 | }, 3376 | { 3377 | "id": 10335993, 3378 | "quality": "uhd", 3379 | "file_type": "video/mp4", 3380 | "width": 2160, 3381 | "height": 3840, 3382 | "fps": 25, 3383 | "link": "https://videos.pexels.com/video-files/7189538/7189538-uhd_2160_3840_25fps.mp4", 3384 | "size": 40665513 3385 | }, 3386 | { 3387 | "id": 10336030, 3388 | "quality": "sd", 3389 | "file_type": "video/mp4", 3390 | "width": 240, 3391 | "height": 426, 3392 | "fps": 25, 3393 | "link": "https://videos.pexels.com/video-files/7189538/7189538-sd_240_426_25fps.mp4", 3394 | "size": 660696 3395 | } 3396 | ], 3397 | "video_pictures": [ 3398 | { 3399 | "id": 5917761, 3400 | "nr": 0, 3401 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-0.jpeg" 3402 | }, 3403 | { 3404 | "id": 5917778, 3405 | "nr": 1, 3406 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-1.jpeg" 3407 | }, 3408 | { 3409 | "id": 5917791, 3410 | "nr": 2, 3411 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-2.jpeg" 3412 | }, 3413 | { 3414 | "id": 5917803, 3415 | "nr": 3, 3416 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-3.jpeg" 3417 | }, 3418 | { 3419 | "id": 5917816, 3420 | "nr": 4, 3421 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-4.jpeg" 3422 | }, 3423 | { 3424 | "id": 5917827, 3425 | "nr": 5, 3426 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-5.jpeg" 3427 | }, 3428 | { 3429 | "id": 5917839, 3430 | "nr": 6, 3431 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-6.jpeg" 3432 | }, 3433 | { 3434 | "id": 5917847, 3435 | "nr": 7, 3436 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-7.jpeg" 3437 | }, 3438 | { 3439 | "id": 5917858, 3440 | "nr": 8, 3441 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-8.jpeg" 3442 | }, 3443 | { 3444 | "id": 5917872, 3445 | "nr": 9, 3446 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-9.jpeg" 3447 | }, 3448 | { 3449 | "id": 5917884, 3450 | "nr": 10, 3451 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-10.jpeg" 3452 | }, 3453 | { 3454 | "id": 5917897, 3455 | "nr": 11, 3456 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-11.jpeg" 3457 | }, 3458 | { 3459 | "id": 5917907, 3460 | "nr": 12, 3461 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-12.jpeg" 3462 | }, 3463 | { 3464 | "id": 5917919, 3465 | "nr": 13, 3466 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-13.jpeg" 3467 | }, 3468 | { 3469 | "id": 5917926, 3470 | "nr": 14, 3471 | "picture": "https://images.pexels.com/videos/7189538/pictures/preview-14.jpeg" 3472 | } 3473 | ] 3474 | }, 3475 | { 3476 | "id": 4057149, 3477 | "width": 2160, 3478 | "height": 4096, 3479 | "duration": 27, 3480 | "full_res": null, 3481 | "tags": [], 3482 | "url": "https://www.pexels.com/video/woman-girl-bed-bedroom-4057149/", 3483 | "image": "https://images.pexels.com/videos/4057149/pexels-photo-4057149.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 3484 | "avg_color": null, 3485 | "user": { 3486 | "id": 1437723, 3487 | "name": "cottonbro studio", 3488 | "url": "https://www.pexels.com/@cottonbro" 3489 | }, 3490 | "video_files": [ 3491 | { 3492 | "id": 9343239, 3493 | "quality": "hd", 3494 | "file_type": "video/mp4", 3495 | "width": 1080, 3496 | "height": 2048, 3497 | "fps": 25, 3498 | "link": "https://videos.pexels.com/video-files/4057149/4057149-hd_1080_2048_25fps.mp4", 3499 | "size": 13848377 3500 | }, 3501 | { 3502 | "id": 9343378, 3503 | "quality": "sd", 3504 | "file_type": "video/mp4", 3505 | "width": 338, 3506 | "height": 640, 3507 | "fps": 25, 3508 | "link": "https://videos.pexels.com/video-files/4057149/4057149-sd_338_640_25fps.mp4", 3509 | "size": 1687807 3510 | }, 3511 | { 3512 | "id": 9343537, 3513 | "quality": "uhd", 3514 | "file_type": "video/mp4", 3515 | "width": 2160, 3516 | "height": 4096, 3517 | "fps": 25, 3518 | "link": "https://videos.pexels.com/video-files/4057149/4057149-uhd_2160_4096_25fps.mp4", 3519 | "size": 63058867 3520 | }, 3521 | { 3522 | "id": 9343643, 3523 | "quality": "sd", 3524 | "file_type": "video/mp4", 3525 | "width": 506, 3526 | "height": 960, 3527 | "fps": 25, 3528 | "link": "https://videos.pexels.com/video-files/4057149/4057149-sd_506_960_25fps.mp4", 3529 | "size": 3646129 3530 | }, 3531 | { 3532 | "id": 9343754, 3533 | "quality": "uhd", 3534 | "file_type": "video/mp4", 3535 | "width": 1440, 3536 | "height": 2732, 3537 | "fps": 25, 3538 | "link": "https://videos.pexels.com/video-files/4057149/4057149-uhd_1440_2732_25fps.mp4", 3539 | "size": 26432918 3540 | }, 3541 | { 3542 | "id": 9343866, 3543 | "quality": "hd", 3544 | "file_type": "video/mp4", 3545 | "width": 720, 3546 | "height": 1366, 3547 | "fps": 50, 3548 | "link": "https://videos.pexels.com/video-files/4057149/4057149-hd_720_1366_50fps.mp4", 3549 | "size": 7341162 3550 | }, 3551 | { 3552 | "id": 9343943, 3553 | "quality": "sd", 3554 | "file_type": "video/mp4", 3555 | "width": 226, 3556 | "height": 426, 3557 | "fps": 25, 3558 | "link": "https://videos.pexels.com/video-files/4057149/4057149-sd_226_426_25fps.mp4", 3559 | "size": 1032488 3560 | } 3561 | ], 3562 | "video_pictures": [ 3563 | { 3564 | "id": 1105414, 3565 | "nr": 0, 3566 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-0.jpeg" 3567 | }, 3568 | { 3569 | "id": 1105419, 3570 | "nr": 1, 3571 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-1.jpeg" 3572 | }, 3573 | { 3574 | "id": 1105428, 3575 | "nr": 2, 3576 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-2.jpeg" 3577 | }, 3578 | { 3579 | "id": 1105433, 3580 | "nr": 3, 3581 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-3.jpeg" 3582 | }, 3583 | { 3584 | "id": 1105438, 3585 | "nr": 4, 3586 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-4.jpeg" 3587 | }, 3588 | { 3589 | "id": 1105450, 3590 | "nr": 5, 3591 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-5.jpeg" 3592 | }, 3593 | { 3594 | "id": 1105463, 3595 | "nr": 6, 3596 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-6.jpeg" 3597 | }, 3598 | { 3599 | "id": 1105473, 3600 | "nr": 7, 3601 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-7.jpeg" 3602 | }, 3603 | { 3604 | "id": 1105483, 3605 | "nr": 8, 3606 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-8.jpeg" 3607 | }, 3608 | { 3609 | "id": 1105492, 3610 | "nr": 9, 3611 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-9.jpeg" 3612 | }, 3613 | { 3614 | "id": 1105501, 3615 | "nr": 10, 3616 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-10.jpeg" 3617 | }, 3618 | { 3619 | "id": 1105511, 3620 | "nr": 11, 3621 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-11.jpeg" 3622 | }, 3623 | { 3624 | "id": 1105517, 3625 | "nr": 12, 3626 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-12.jpeg" 3627 | }, 3628 | { 3629 | "id": 1105524, 3630 | "nr": 13, 3631 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-13.jpeg" 3632 | }, 3633 | { 3634 | "id": 1105531, 3635 | "nr": 14, 3636 | "picture": "https://images.pexels.com/videos/4057149/pictures/preview-14.jpeg" 3637 | } 3638 | ] 3639 | }, 3640 | { 3641 | "id": 4057317, 3642 | "width": 2160, 3643 | "height": 4096, 3644 | "duration": 15, 3645 | "full_res": null, 3646 | "tags": [], 3647 | "url": "https://www.pexels.com/video/woman-feet-legs-apple-4057317/", 3648 | "image": "https://images.pexels.com/videos/4057317/pexels-photo-4057317.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 3649 | "avg_color": null, 3650 | "user": { 3651 | "id": 1437723, 3652 | "name": "cottonbro studio", 3653 | "url": "https://www.pexels.com/@cottonbro" 3654 | }, 3655 | "video_files": [ 3656 | { 3657 | "id": 9343170, 3658 | "quality": "uhd", 3659 | "file_type": "video/mp4", 3660 | "width": 1440, 3661 | "height": 2732, 3662 | "fps": 25, 3663 | "link": "https://videos.pexels.com/video-files/4057317/4057317-uhd_1440_2732_25fps.mp4", 3664 | "size": 11307862 3665 | }, 3666 | { 3667 | "id": 9343269, 3668 | "quality": "sd", 3669 | "file_type": "video/mp4", 3670 | "width": 338, 3671 | "height": 640, 3672 | "fps": 25, 3673 | "link": "https://videos.pexels.com/video-files/4057317/4057317-sd_338_640_25fps.mp4", 3674 | "size": 831299 3675 | }, 3676 | { 3677 | "id": 9343301, 3678 | "quality": "sd", 3679 | "file_type": "video/mp4", 3680 | "width": 226, 3681 | "height": 426, 3682 | "fps": 25, 3683 | "link": "https://videos.pexels.com/video-files/4057317/4057317-sd_226_426_25fps.mp4", 3684 | "size": 518520 3685 | }, 3686 | { 3687 | "id": 9343398, 3688 | "quality": "hd", 3689 | "file_type": "video/mp4", 3690 | "width": 1080, 3691 | "height": 2048, 3692 | "fps": 25, 3693 | "link": "https://videos.pexels.com/video-files/4057317/4057317-hd_1080_2048_25fps.mp4", 3694 | "size": 5835317 3695 | }, 3696 | { 3697 | "id": 9343419, 3698 | "quality": "sd", 3699 | "file_type": "video/mp4", 3700 | "width": 506, 3701 | "height": 960, 3702 | "fps": 25, 3703 | "link": "https://videos.pexels.com/video-files/4057317/4057317-sd_506_960_25fps.mp4", 3704 | "size": 1611695 3705 | }, 3706 | { 3707 | "id": 9343495, 3708 | "quality": "hd", 3709 | "file_type": "video/mp4", 3710 | "width": 720, 3711 | "height": 1366, 3712 | "fps": 50, 3713 | "link": "https://videos.pexels.com/video-files/4057317/4057317-hd_720_1366_50fps.mp4", 3714 | "size": 3443388 3715 | }, 3716 | { 3717 | "id": 9343633, 3718 | "quality": "uhd", 3719 | "file_type": "video/mp4", 3720 | "width": 2160, 3721 | "height": 4096, 3722 | "fps": 25, 3723 | "link": "https://videos.pexels.com/video-files/4057317/4057317-uhd_2160_4096_25fps.mp4", 3724 | "size": 28663400 3725 | } 3726 | ], 3727 | "video_pictures": [ 3728 | { 3729 | "id": 1106465, 3730 | "nr": 0, 3731 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-0.jpeg" 3732 | }, 3733 | { 3734 | "id": 1106467, 3735 | "nr": 1, 3736 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-1.jpeg" 3737 | }, 3738 | { 3739 | "id": 1106470, 3740 | "nr": 2, 3741 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-2.jpeg" 3742 | }, 3743 | { 3744 | "id": 1106473, 3745 | "nr": 3, 3746 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-3.jpeg" 3747 | }, 3748 | { 3749 | "id": 1106476, 3750 | "nr": 4, 3751 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-4.jpeg" 3752 | }, 3753 | { 3754 | "id": 1106479, 3755 | "nr": 5, 3756 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-5.jpeg" 3757 | }, 3758 | { 3759 | "id": 1106482, 3760 | "nr": 6, 3761 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-6.jpeg" 3762 | }, 3763 | { 3764 | "id": 1106485, 3765 | "nr": 7, 3766 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-7.jpeg" 3767 | }, 3768 | { 3769 | "id": 1106487, 3770 | "nr": 8, 3771 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-8.jpeg" 3772 | }, 3773 | { 3774 | "id": 1106492, 3775 | "nr": 9, 3776 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-9.jpeg" 3777 | }, 3778 | { 3779 | "id": 1106496, 3780 | "nr": 10, 3781 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-10.jpeg" 3782 | }, 3783 | { 3784 | "id": 1106498, 3785 | "nr": 11, 3786 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-11.jpeg" 3787 | }, 3788 | { 3789 | "id": 1106501, 3790 | "nr": 12, 3791 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-12.jpeg" 3792 | }, 3793 | { 3794 | "id": 1106504, 3795 | "nr": 13, 3796 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-13.jpeg" 3797 | }, 3798 | { 3799 | "id": 1106507, 3800 | "nr": 14, 3801 | "picture": "https://images.pexels.com/videos/4057317/pictures/preview-14.jpeg" 3802 | } 3803 | ] 3804 | }, 3805 | { 3806 | "id": 5540192, 3807 | "width": 1080, 3808 | "height": 1920, 3809 | "duration": 2, 3810 | "full_res": null, 3811 | "tags": [], 3812 | "url": "https://www.pexels.com/video/woman-kissing-her-pet-dog-5540192/", 3813 | "image": "https://images.pexels.com/videos/5540192/autumn-dog-fall-girl-5540192.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 3814 | "avg_color": null, 3815 | "user": { 3816 | "id": 2104565, 3817 | "name": "Polina Tankilevitch", 3818 | "url": "https://www.pexels.com/@polina-tankilevitch" 3819 | }, 3820 | "video_files": [ 3821 | { 3822 | "id": 9724720, 3823 | "quality": "sd", 3824 | "file_type": "video/mp4", 3825 | "width": 360, 3826 | "height": 640, 3827 | "fps": 30, 3828 | "link": "https://videos.pexels.com/video-files/5540192/5540192-sd_360_640_30fps.mp4", 3829 | "size": 121830 3830 | }, 3831 | { 3832 | "id": 9724759, 3833 | "quality": "sd", 3834 | "file_type": "video/mp4", 3835 | "width": 540, 3836 | "height": 960, 3837 | "fps": 30, 3838 | "link": "https://videos.pexels.com/video-files/5540192/5540192-sd_540_960_30fps.mp4", 3839 | "size": 331505 3840 | }, 3841 | { 3842 | "id": 9724815, 3843 | "quality": "hd", 3844 | "file_type": "video/mp4", 3845 | "width": 1080, 3846 | "height": 1920, 3847 | "fps": 30, 3848 | "link": "https://videos.pexels.com/video-files/5540192/5540192-hd_1080_1920_30fps.mp4", 3849 | "size": 1074747 3850 | }, 3851 | { 3852 | "id": 9724911, 3853 | "quality": "hd", 3854 | "file_type": "video/mp4", 3855 | "width": 720, 3856 | "height": 1280, 3857 | "fps": 30, 3858 | "link": "https://videos.pexels.com/video-files/5540192/5540192-hd_720_1280_30fps.mp4", 3859 | "size": 564265 3860 | }, 3861 | { 3862 | "id": 9724996, 3863 | "quality": "sd", 3864 | "file_type": "video/mp4", 3865 | "width": 240, 3866 | "height": 426, 3867 | "fps": 30, 3868 | "link": "https://videos.pexels.com/video-files/5540192/5540192-sd_240_426_30fps.mp4", 3869 | "size": 75105 3870 | } 3871 | ], 3872 | "video_pictures": [ 3873 | { 3874 | "id": 2972259, 3875 | "nr": 0, 3876 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-0.jpeg" 3877 | }, 3878 | { 3879 | "id": 2972261, 3880 | "nr": 1, 3881 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-1.jpeg" 3882 | }, 3883 | { 3884 | "id": 2972262, 3885 | "nr": 2, 3886 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-2.jpeg" 3887 | }, 3888 | { 3889 | "id": 2972265, 3890 | "nr": 3, 3891 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-3.jpeg" 3892 | }, 3893 | { 3894 | "id": 2972268, 3895 | "nr": 4, 3896 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-4.jpeg" 3897 | }, 3898 | { 3899 | "id": 2972271, 3900 | "nr": 5, 3901 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-5.jpeg" 3902 | }, 3903 | { 3904 | "id": 2972275, 3905 | "nr": 6, 3906 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-6.jpeg" 3907 | }, 3908 | { 3909 | "id": 2972278, 3910 | "nr": 7, 3911 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-7.jpeg" 3912 | }, 3913 | { 3914 | "id": 2972281, 3915 | "nr": 8, 3916 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-8.jpeg" 3917 | }, 3918 | { 3919 | "id": 2972284, 3920 | "nr": 9, 3921 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-9.jpeg" 3922 | }, 3923 | { 3924 | "id": 2972287, 3925 | "nr": 10, 3926 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-10.jpeg" 3927 | }, 3928 | { 3929 | "id": 2972290, 3930 | "nr": 11, 3931 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-11.jpeg" 3932 | }, 3933 | { 3934 | "id": 2972296, 3935 | "nr": 12, 3936 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-12.jpeg" 3937 | }, 3938 | { 3939 | "id": 2972302, 3940 | "nr": 13, 3941 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-13.jpeg" 3942 | }, 3943 | { 3944 | "id": 2972310, 3945 | "nr": 14, 3946 | "picture": "https://images.pexels.com/videos/5540192/pictures/preview-14.jpeg" 3947 | } 3948 | ] 3949 | }, 3950 | { 3951 | "id": 4838263, 3952 | "width": 2160, 3953 | "height": 3840, 3954 | "duration": 5, 3955 | "full_res": null, 3956 | "tags": [], 3957 | "url": "https://www.pexels.com/video/cute-dog-with-antlers-headband-4838263/", 3958 | "image": "https://images.pexels.com/videos/4838263/pexels-photo-4838263.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 3959 | "avg_color": null, 3960 | "user": { 3961 | "id": 1984515, 3962 | "name": "Anna Shvets", 3963 | "url": "https://www.pexels.com/@shvetsa" 3964 | }, 3965 | "video_files": [ 3966 | { 3967 | "id": 9398378, 3968 | "quality": "uhd", 3969 | "file_type": "video/mp4", 3970 | "width": 2160, 3971 | "height": 3840, 3972 | "fps": 24, 3973 | "link": "https://videos.pexels.com/video-files/4838263/4838263-uhd_2160_3840_24fps.mp4", 3974 | "size": 15068828 3975 | }, 3976 | { 3977 | "id": 9398419, 3978 | "quality": "sd", 3979 | "file_type": "video/mp4", 3980 | "width": 540, 3981 | "height": 960, 3982 | "fps": 24, 3983 | "link": "https://videos.pexels.com/video-files/4838263/4838263-sd_540_960_24fps.mp4", 3984 | "size": 934434 3985 | }, 3986 | { 3987 | "id": 9398457, 3988 | "quality": "uhd", 3989 | "file_type": "video/mp4", 3990 | "width": 1440, 3991 | "height": 2560, 3992 | "fps": 24, 3993 | "link": "https://videos.pexels.com/video-files/4838263/4838263-uhd_1440_2560_24fps.mp4", 3994 | "size": 7984435 3995 | }, 3996 | { 3997 | "id": 9398504, 3998 | "quality": "hd", 3999 | "file_type": "video/mp4", 4000 | "width": 1080, 4001 | "height": 1920, 4002 | "fps": 24, 4003 | "link": "https://videos.pexels.com/video-files/4838263/4838263-hd_1080_1920_24fps.mp4", 4004 | "size": 3187235 4005 | }, 4006 | { 4007 | "id": 9398575, 4008 | "quality": "hd", 4009 | "file_type": "video/mp4", 4010 | "width": 720, 4011 | "height": 1280, 4012 | "fps": 24, 4013 | "link": "https://videos.pexels.com/video-files/4838263/4838263-hd_720_1280_24fps.mp4", 4014 | "size": 1636861 4015 | }, 4016 | { 4017 | "id": 9398626, 4018 | "quality": "sd", 4019 | "file_type": "video/mp4", 4020 | "width": 240, 4021 | "height": 426, 4022 | "fps": 24, 4023 | "link": "https://videos.pexels.com/video-files/4838263/4838263-sd_240_426_24fps.mp4", 4024 | "size": 189891 4025 | }, 4026 | { 4027 | "id": 9398680, 4028 | "quality": "sd", 4029 | "file_type": "video/mp4", 4030 | "width": 360, 4031 | "height": 640, 4032 | "fps": 24, 4033 | "link": "https://videos.pexels.com/video-files/4838263/4838263-sd_360_640_24fps.mp4", 4034 | "size": 312172 4035 | } 4036 | ], 4037 | "video_pictures": [ 4038 | { 4039 | "id": 2023258, 4040 | "nr": 0, 4041 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-0.jpeg" 4042 | }, 4043 | { 4044 | "id": 2023259, 4045 | "nr": 1, 4046 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-1.jpeg" 4047 | }, 4048 | { 4049 | "id": 2023260, 4050 | "nr": 2, 4051 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-2.jpeg" 4052 | }, 4053 | { 4054 | "id": 2023261, 4055 | "nr": 3, 4056 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-3.jpeg" 4057 | }, 4058 | { 4059 | "id": 2023262, 4060 | "nr": 4, 4061 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-4.jpeg" 4062 | }, 4063 | { 4064 | "id": 2023263, 4065 | "nr": 5, 4066 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-5.jpeg" 4067 | }, 4068 | { 4069 | "id": 2023264, 4070 | "nr": 6, 4071 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-6.jpeg" 4072 | }, 4073 | { 4074 | "id": 2023265, 4075 | "nr": 7, 4076 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-7.jpeg" 4077 | }, 4078 | { 4079 | "id": 2023266, 4080 | "nr": 8, 4081 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-8.jpeg" 4082 | }, 4083 | { 4084 | "id": 2023267, 4085 | "nr": 9, 4086 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-9.jpeg" 4087 | }, 4088 | { 4089 | "id": 2023268, 4090 | "nr": 10, 4091 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-10.jpeg" 4092 | }, 4093 | { 4094 | "id": 2023269, 4095 | "nr": 11, 4096 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-11.jpeg" 4097 | }, 4098 | { 4099 | "id": 2023270, 4100 | "nr": 12, 4101 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-12.jpeg" 4102 | }, 4103 | { 4104 | "id": 2023271, 4105 | "nr": 13, 4106 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-13.jpeg" 4107 | }, 4108 | { 4109 | "id": 2023272, 4110 | "nr": 14, 4111 | "picture": "https://images.pexels.com/videos/4838263/pictures/preview-14.jpeg" 4112 | } 4113 | ] 4114 | }, 4115 | { 4116 | "id": 6507676, 4117 | "width": 1080, 4118 | "height": 1920, 4119 | "duration": 34, 4120 | "full_res": null, 4121 | "tags": [], 4122 | "url": "https://www.pexels.com/video/close-up-video-of-a-siberian-husky-looking-around-6507676/", 4123 | "image": "https://images.pexels.com/videos/6507676/action-afternoon-alaskan-animal-6507676.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 4124 | "avg_color": null, 4125 | "user": { 4126 | "id": 11437196, 4127 | "name": "Mikhail Nilov", 4128 | "url": "https://www.pexels.com/@mikhail-nilov" 4129 | }, 4130 | "video_files": [ 4131 | { 4132 | "id": 10059609, 4133 | "quality": "sd", 4134 | "file_type": "video/mp4", 4135 | "width": 240, 4136 | "height": 426, 4137 | "fps": 25, 4138 | "link": "https://videos.pexels.com/video-files/6507676/6507676-sd_240_426_25fps.mp4", 4139 | "size": 786266 4140 | }, 4141 | { 4142 | "id": 10059655, 4143 | "quality": "sd", 4144 | "file_type": "video/mp4", 4145 | "width": 540, 4146 | "height": 960, 4147 | "fps": 25, 4148 | "link": "https://videos.pexels.com/video-files/6507676/6507676-sd_540_960_25fps.mp4", 4149 | "size": 2864950 4150 | }, 4151 | { 4152 | "id": 10059693, 4153 | "quality": "hd", 4154 | "file_type": "video/mp4", 4155 | "width": 1080, 4156 | "height": 1920, 4157 | "fps": 25, 4158 | "link": "https://videos.pexels.com/video-files/6507676/6507676-hd_1080_1920_25fps.mp4", 4159 | "size": 11641108 4160 | }, 4161 | { 4162 | "id": 10059743, 4163 | "quality": "sd", 4164 | "file_type": "video/mp4", 4165 | "width": 360, 4166 | "height": 640, 4167 | "fps": 25, 4168 | "link": "https://videos.pexels.com/video-files/6507676/6507676-sd_360_640_25fps.mp4", 4169 | "size": 1463155 4170 | }, 4171 | { 4172 | "id": 10059771, 4173 | "quality": "hd", 4174 | "file_type": "video/mp4", 4175 | "width": 720, 4176 | "height": 1280, 4177 | "fps": 25, 4178 | "link": "https://videos.pexels.com/video-files/6507676/6507676-hd_720_1280_25fps.mp4", 4179 | "size": 4786608 4180 | } 4181 | ], 4182 | "video_pictures": [ 4183 | { 4184 | "id": 4547446, 4185 | "nr": 0, 4186 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-0.jpeg" 4187 | }, 4188 | { 4189 | "id": 4547448, 4190 | "nr": 1, 4191 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-1.jpeg" 4192 | }, 4193 | { 4194 | "id": 4547450, 4195 | "nr": 2, 4196 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-2.jpeg" 4197 | }, 4198 | { 4199 | "id": 4547452, 4200 | "nr": 3, 4201 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-3.jpeg" 4202 | }, 4203 | { 4204 | "id": 4547453, 4205 | "nr": 4, 4206 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-4.jpeg" 4207 | }, 4208 | { 4209 | "id": 4547455, 4210 | "nr": 5, 4211 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-5.jpeg" 4212 | }, 4213 | { 4214 | "id": 4547457, 4215 | "nr": 6, 4216 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-6.jpeg" 4217 | }, 4218 | { 4219 | "id": 4547459, 4220 | "nr": 7, 4221 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-7.jpeg" 4222 | }, 4223 | { 4224 | "id": 4547461, 4225 | "nr": 8, 4226 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-8.jpeg" 4227 | }, 4228 | { 4229 | "id": 4547463, 4230 | "nr": 9, 4231 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-9.jpeg" 4232 | }, 4233 | { 4234 | "id": 4547464, 4235 | "nr": 10, 4236 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-10.jpeg" 4237 | }, 4238 | { 4239 | "id": 4547465, 4240 | "nr": 11, 4241 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-11.jpeg" 4242 | }, 4243 | { 4244 | "id": 4547466, 4245 | "nr": 12, 4246 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-12.jpeg" 4247 | }, 4248 | { 4249 | "id": 4547467, 4250 | "nr": 13, 4251 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-13.jpeg" 4252 | }, 4253 | { 4254 | "id": 4547468, 4255 | "nr": 14, 4256 | "picture": "https://images.pexels.com/videos/6507676/pictures/preview-14.jpeg" 4257 | } 4258 | ] 4259 | }, 4260 | { 4261 | "id": 5877829, 4262 | "width": 1080, 4263 | "height": 1920, 4264 | "duration": 11, 4265 | "full_res": null, 4266 | "tags": [], 4267 | "url": "https://www.pexels.com/video/a-cute-dog-on-top-of-a-wooden-table-5877829/", 4268 | "image": "https://images.pexels.com/videos/5877829/pomeranian-5877829.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 4269 | "avg_color": null, 4270 | "user": { 4271 | "id": 3684321, 4272 | "name": "Anna Bondarenko", 4273 | "url": "https://www.pexels.com/@aaa333" 4274 | }, 4275 | "video_files": [ 4276 | { 4277 | "id": 9835438, 4278 | "quality": "hd", 4279 | "file_type": "video/mp4", 4280 | "width": 720, 4281 | "height": 1280, 4282 | "fps": 29.969999313354492, 4283 | "link": "https://videos.pexels.com/video-files/5877829/5877829-hd_720_1280_30fps.mp4", 4284 | "size": 4055117 4285 | }, 4286 | { 4287 | "id": 9835471, 4288 | "quality": "sd", 4289 | "file_type": "video/mp4", 4290 | "width": 360, 4291 | "height": 640, 4292 | "fps": 29.969999313354492, 4293 | "link": "https://videos.pexels.com/video-files/5877829/5877829-sd_360_640_30fps.mp4", 4294 | "size": 834808 4295 | }, 4296 | { 4297 | "id": 9835505, 4298 | "quality": "sd", 4299 | "file_type": "video/mp4", 4300 | "width": 540, 4301 | "height": 960, 4302 | "fps": 29.969999313354492, 4303 | "link": "https://videos.pexels.com/video-files/5877829/5877829-sd_540_960_30fps.mp4", 4304 | "size": 2146804 4305 | }, 4306 | { 4307 | "id": 9835566, 4308 | "quality": "sd", 4309 | "file_type": "video/mp4", 4310 | "width": 240, 4311 | "height": 426, 4312 | "fps": 29.969999313354492, 4313 | "link": "https://videos.pexels.com/video-files/5877829/5877829-sd_240_426_30fps.mp4", 4314 | "size": 503171 4315 | }, 4316 | { 4317 | "id": 9835597, 4318 | "quality": "hd", 4319 | "file_type": "video/mp4", 4320 | "width": 1080, 4321 | "height": 1920, 4322 | "fps": 29.969999313354492, 4323 | "link": "https://videos.pexels.com/video-files/5877829/5877829-hd_1080_1920_30fps.mp4", 4324 | "size": 7302920 4325 | } 4326 | ], 4327 | "video_pictures": [ 4328 | { 4329 | "id": 3509988, 4330 | "nr": 0, 4331 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-0.jpeg" 4332 | }, 4333 | { 4334 | "id": 3509989, 4335 | "nr": 1, 4336 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-1.jpeg" 4337 | }, 4338 | { 4339 | "id": 3509991, 4340 | "nr": 2, 4341 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-2.jpeg" 4342 | }, 4343 | { 4344 | "id": 3509992, 4345 | "nr": 3, 4346 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-3.jpeg" 4347 | }, 4348 | { 4349 | "id": 3509994, 4350 | "nr": 4, 4351 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-4.jpeg" 4352 | }, 4353 | { 4354 | "id": 3509995, 4355 | "nr": 5, 4356 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-5.jpeg" 4357 | }, 4358 | { 4359 | "id": 3509996, 4360 | "nr": 6, 4361 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-6.jpeg" 4362 | }, 4363 | { 4364 | "id": 3509998, 4365 | "nr": 7, 4366 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-7.jpeg" 4367 | }, 4368 | { 4369 | "id": 3510001, 4370 | "nr": 8, 4371 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-8.jpeg" 4372 | }, 4373 | { 4374 | "id": 3510006, 4375 | "nr": 9, 4376 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-9.jpeg" 4377 | }, 4378 | { 4379 | "id": 3510012, 4380 | "nr": 10, 4381 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-10.jpeg" 4382 | }, 4383 | { 4384 | "id": 3510013, 4385 | "nr": 11, 4386 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-11.jpeg" 4387 | }, 4388 | { 4389 | "id": 3510027, 4390 | "nr": 12, 4391 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-12.jpeg" 4392 | }, 4393 | { 4394 | "id": 3510029, 4395 | "nr": 13, 4396 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-13.jpeg" 4397 | }, 4398 | { 4399 | "id": 3510034, 4400 | "nr": 14, 4401 | "picture": "https://images.pexels.com/videos/5877829/pictures/preview-14.jpeg" 4402 | } 4403 | ] 4404 | }, 4405 | { 4406 | "id": 6568519, 4407 | "width": 2160, 4408 | "height": 4096, 4409 | "duration": 22, 4410 | "full_res": null, 4411 | "tags": [], 4412 | "url": "https://www.pexels.com/video/woman-training-a-dog-6568519/", 4413 | "image": "https://images.pexels.com/videos/6568519/pexels-photo-6568519.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 4414 | "avg_color": null, 4415 | "user": { 4416 | "id": 1437723, 4417 | "name": "cottonbro studio", 4418 | "url": "https://www.pexels.com/@cottonbro" 4419 | }, 4420 | "video_files": [ 4421 | { 4422 | "id": 10083184, 4423 | "quality": "hd", 4424 | "file_type": "video/mp4", 4425 | "width": 1080, 4426 | "height": 2048, 4427 | "fps": 25, 4428 | "link": "https://videos.pexels.com/video-files/6568519/6568519-hd_1080_2048_25fps.mp4", 4429 | "size": 10133326 4430 | }, 4431 | { 4432 | "id": 10083233, 4433 | "quality": "uhd", 4434 | "file_type": "video/mp4", 4435 | "width": 1440, 4436 | "height": 2732, 4437 | "fps": 25, 4438 | "link": "https://videos.pexels.com/video-files/6568519/6568519-uhd_1440_2732_25fps.mp4", 4439 | "size": 18828468 4440 | }, 4441 | { 4442 | "id": 10083259, 4443 | "quality": "hd", 4444 | "file_type": "video/mp4", 4445 | "width": 720, 4446 | "height": 1366, 4447 | "fps": 25, 4448 | "link": "https://videos.pexels.com/video-files/6568519/6568519-hd_720_1366_25fps.mp4", 4449 | "size": 4160797 4450 | }, 4451 | { 4452 | "id": 10083299, 4453 | "quality": "uhd", 4454 | "file_type": "video/mp4", 4455 | "width": 2160, 4456 | "height": 4096, 4457 | "fps": 25, 4458 | "link": "https://videos.pexels.com/video-files/6568519/6568519-uhd_2160_4096_25fps.mp4", 4459 | "size": 50209288 4460 | }, 4461 | { 4462 | "id": 10083334, 4463 | "quality": "sd", 4464 | "file_type": "video/mp4", 4465 | "width": 506, 4466 | "height": 960, 4467 | "fps": 25, 4468 | "link": "https://videos.pexels.com/video-files/6568519/6568519-sd_506_960_25fps.mp4", 4469 | "size": 2040519 4470 | }, 4471 | { 4472 | "id": 10083358, 4473 | "quality": "sd", 4474 | "file_type": "video/mp4", 4475 | "width": 226, 4476 | "height": 426, 4477 | "fps": 25, 4478 | "link": "https://videos.pexels.com/video-files/6568519/6568519-sd_226_426_25fps.mp4", 4479 | "size": 543188 4480 | }, 4481 | { 4482 | "id": 10083375, 4483 | "quality": "sd", 4484 | "file_type": "video/mp4", 4485 | "width": 338, 4486 | "height": 640, 4487 | "fps": 25, 4488 | "link": "https://videos.pexels.com/video-files/6568519/6568519-sd_338_640_25fps.mp4", 4489 | "size": 968418 4490 | } 4491 | ], 4492 | "video_pictures": [ 4493 | { 4494 | "id": 4666771, 4495 | "nr": 0, 4496 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-0.jpeg" 4497 | }, 4498 | { 4499 | "id": 4666780, 4500 | "nr": 1, 4501 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-1.jpeg" 4502 | }, 4503 | { 4504 | "id": 4666789, 4505 | "nr": 2, 4506 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-2.jpeg" 4507 | }, 4508 | { 4509 | "id": 4666796, 4510 | "nr": 3, 4511 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-3.jpeg" 4512 | }, 4513 | { 4514 | "id": 4666804, 4515 | "nr": 4, 4516 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-4.jpeg" 4517 | }, 4518 | { 4519 | "id": 4666810, 4520 | "nr": 5, 4521 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-5.jpeg" 4522 | }, 4523 | { 4524 | "id": 4666816, 4525 | "nr": 6, 4526 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-6.jpeg" 4527 | }, 4528 | { 4529 | "id": 4666822, 4530 | "nr": 7, 4531 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-7.jpeg" 4532 | }, 4533 | { 4534 | "id": 4666826, 4535 | "nr": 8, 4536 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-8.jpeg" 4537 | }, 4538 | { 4539 | "id": 4666833, 4540 | "nr": 9, 4541 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-9.jpeg" 4542 | }, 4543 | { 4544 | "id": 4666839, 4545 | "nr": 10, 4546 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-10.jpeg" 4547 | }, 4548 | { 4549 | "id": 4666841, 4550 | "nr": 11, 4551 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-11.jpeg" 4552 | }, 4553 | { 4554 | "id": 4666844, 4555 | "nr": 12, 4556 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-12.jpeg" 4557 | }, 4558 | { 4559 | "id": 4666848, 4560 | "nr": 13, 4561 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-13.jpeg" 4562 | }, 4563 | { 4564 | "id": 4666851, 4565 | "nr": 14, 4566 | "picture": "https://images.pexels.com/videos/6568519/pictures/preview-14.jpeg" 4567 | } 4568 | ] 4569 | }, 4570 | { 4571 | "id": 7515918, 4572 | "width": 1080, 4573 | "height": 1920, 4574 | "duration": 13, 4575 | "full_res": null, 4576 | "tags": [], 4577 | "url": "https://www.pexels.com/video/a-dog-with-red-sunglasses-7515918/", 4578 | "image": "https://images.pexels.com/videos/7515918/adorable-animal-baby-dog-big-cat-7515918.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 4579 | "avg_color": null, 4580 | "user": { 4581 | "id": 3149039, 4582 | "name": "RDNE Stock project", 4583 | "url": "https://www.pexels.com/@rdne" 4584 | }, 4585 | "video_files": [ 4586 | { 4587 | "id": 10456225, 4588 | "quality": "sd", 4589 | "file_type": "video/mp4", 4590 | "width": 540, 4591 | "height": 960, 4592 | "fps": 30, 4593 | "link": "https://videos.pexels.com/video-files/7515918/7515918-sd_540_960_30fps.mp4", 4594 | "size": 1522296 4595 | }, 4596 | { 4597 | "id": 10456313, 4598 | "quality": "sd", 4599 | "file_type": "video/mp4", 4600 | "width": 240, 4601 | "height": 426, 4602 | "fps": 30, 4603 | "link": "https://videos.pexels.com/video-files/7515918/7515918-sd_240_426_30fps.mp4", 4604 | "size": 500887 4605 | }, 4606 | { 4607 | "id": 10456373, 4608 | "quality": "hd", 4609 | "file_type": "video/mp4", 4610 | "width": 1080, 4611 | "height": 1920, 4612 | "fps": 30, 4613 | "link": "https://videos.pexels.com/video-files/7515918/7515918-hd_1080_1920_30fps.mp4", 4614 | "size": 6413316 4615 | }, 4616 | { 4617 | "id": 10456502, 4618 | "quality": "hd", 4619 | "file_type": "video/mp4", 4620 | "width": 720, 4621 | "height": 1280, 4622 | "fps": 30, 4623 | "link": "https://videos.pexels.com/video-files/7515918/7515918-hd_720_1280_30fps.mp4", 4624 | "size": 2731405 4625 | }, 4626 | { 4627 | "id": 10456558, 4628 | "quality": "sd", 4629 | "file_type": "video/mp4", 4630 | "width": 360, 4631 | "height": 640, 4632 | "fps": 30, 4633 | "link": "https://videos.pexels.com/video-files/7515918/7515918-sd_360_640_30fps.mp4", 4634 | "size": 731408 4635 | } 4636 | ], 4637 | "video_pictures": [ 4638 | { 4639 | "id": 6528504, 4640 | "nr": 0, 4641 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-0.jpeg" 4642 | }, 4643 | { 4644 | "id": 6528509, 4645 | "nr": 1, 4646 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-1.jpeg" 4647 | }, 4648 | { 4649 | "id": 6528513, 4650 | "nr": 2, 4651 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-2.jpeg" 4652 | }, 4653 | { 4654 | "id": 6528516, 4655 | "nr": 3, 4656 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-3.jpeg" 4657 | }, 4658 | { 4659 | "id": 6528520, 4660 | "nr": 4, 4661 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-4.jpeg" 4662 | }, 4663 | { 4664 | "id": 6528525, 4665 | "nr": 5, 4666 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-5.jpeg" 4667 | }, 4668 | { 4669 | "id": 6528530, 4670 | "nr": 6, 4671 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-6.jpeg" 4672 | }, 4673 | { 4674 | "id": 6528533, 4675 | "nr": 7, 4676 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-7.jpeg" 4677 | }, 4678 | { 4679 | "id": 6528536, 4680 | "nr": 8, 4681 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-8.jpeg" 4682 | }, 4683 | { 4684 | "id": 6528538, 4685 | "nr": 9, 4686 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-9.jpeg" 4687 | }, 4688 | { 4689 | "id": 6528540, 4690 | "nr": 10, 4691 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-10.jpeg" 4692 | }, 4693 | { 4694 | "id": 6528541, 4695 | "nr": 11, 4696 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-11.jpeg" 4697 | }, 4698 | { 4699 | "id": 6528543, 4700 | "nr": 12, 4701 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-12.jpeg" 4702 | }, 4703 | { 4704 | "id": 6528545, 4705 | "nr": 13, 4706 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-13.jpeg" 4707 | }, 4708 | { 4709 | "id": 6528547, 4710 | "nr": 14, 4711 | "picture": "https://images.pexels.com/videos/7515918/pictures/preview-14.jpeg" 4712 | } 4713 | ] 4714 | }, 4715 | { 4716 | "id": 4838261, 4717 | "width": 2160, 4718 | "height": 3840, 4719 | "duration": 11, 4720 | "full_res": null, 4721 | "tags": [], 4722 | "url": "https://www.pexels.com/video/hand-holding-a-cupcake-and-a-small-dog-on-a-stool-4838261/", 4723 | "image": "https://images.pexels.com/videos/4838261/animal-birthday-candle-chihuahua-4838261.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 4724 | "avg_color": null, 4725 | "user": { 4726 | "id": 1984515, 4727 | "name": "Anna Shvets", 4728 | "url": "https://www.pexels.com/@shvetsa" 4729 | }, 4730 | "video_files": [ 4731 | { 4732 | "id": 9398224, 4733 | "quality": "uhd", 4734 | "file_type": "video/mp4", 4735 | "width": 2160, 4736 | "height": 3840, 4737 | "fps": 24, 4738 | "link": "https://videos.pexels.com/video-files/4838261/4838261-uhd_2160_3840_24fps.mp4", 4739 | "size": 13875840 4740 | }, 4741 | { 4742 | "id": 9398394, 4743 | "quality": "uhd", 4744 | "file_type": "video/mp4", 4745 | "width": 1440, 4746 | "height": 2560, 4747 | "fps": 24, 4748 | "link": "https://videos.pexels.com/video-files/4838261/4838261-uhd_1440_2560_24fps.mp4", 4749 | "size": 4377639 4750 | }, 4751 | { 4752 | "id": 9398540, 4753 | "quality": "sd", 4754 | "file_type": "video/mp4", 4755 | "width": 540, 4756 | "height": 960, 4757 | "fps": 24, 4758 | "link": "https://videos.pexels.com/video-files/4838261/4838261-sd_540_960_24fps.mp4", 4759 | "size": 504348 4760 | }, 4761 | { 4762 | "id": 9398617, 4763 | "quality": "hd", 4764 | "file_type": "video/mp4", 4765 | "width": 1080, 4766 | "height": 1920, 4767 | "fps": 24, 4768 | "link": "https://videos.pexels.com/video-files/4838261/4838261-hd_1080_1920_24fps.mp4", 4769 | "size": 2291374 4770 | }, 4771 | { 4772 | "id": 9398741, 4773 | "quality": "sd", 4774 | "file_type": "video/mp4", 4775 | "width": 360, 4776 | "height": 640, 4777 | "fps": 24, 4778 | "link": "https://videos.pexels.com/video-files/4838261/4838261-sd_360_640_24fps.mp4", 4779 | "size": 247951 4780 | }, 4781 | { 4782 | "id": 9398847, 4783 | "quality": "hd", 4784 | "file_type": "video/mp4", 4785 | "width": 720, 4786 | "height": 1280, 4787 | "fps": 24, 4788 | "link": "https://videos.pexels.com/video-files/4838261/4838261-hd_720_1280_24fps.mp4", 4789 | "size": 809916 4790 | }, 4791 | { 4792 | "id": 9398888, 4793 | "quality": "sd", 4794 | "file_type": "video/mp4", 4795 | "width": 240, 4796 | "height": 426, 4797 | "fps": 24, 4798 | "link": "https://videos.pexels.com/video-files/4838261/4838261-sd_240_426_24fps.mp4", 4799 | "size": 120292 4800 | } 4801 | ], 4802 | "video_pictures": [ 4803 | { 4804 | "id": 2023353, 4805 | "nr": 0, 4806 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-0.jpeg" 4807 | }, 4808 | { 4809 | "id": 2023355, 4810 | "nr": 1, 4811 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-1.jpeg" 4812 | }, 4813 | { 4814 | "id": 2023359, 4815 | "nr": 2, 4816 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-2.jpeg" 4817 | }, 4818 | { 4819 | "id": 2023375, 4820 | "nr": 3, 4821 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-3.jpeg" 4822 | }, 4823 | { 4824 | "id": 2023388, 4825 | "nr": 4, 4826 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-4.jpeg" 4827 | }, 4828 | { 4829 | "id": 2023394, 4830 | "nr": 5, 4831 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-5.jpeg" 4832 | }, 4833 | { 4834 | "id": 2023396, 4835 | "nr": 6, 4836 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-6.jpeg" 4837 | }, 4838 | { 4839 | "id": 2023398, 4840 | "nr": 7, 4841 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-7.jpeg" 4842 | }, 4843 | { 4844 | "id": 2023400, 4845 | "nr": 8, 4846 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-8.jpeg" 4847 | }, 4848 | { 4849 | "id": 2023402, 4850 | "nr": 9, 4851 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-9.jpeg" 4852 | }, 4853 | { 4854 | "id": 2023403, 4855 | "nr": 10, 4856 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-10.jpeg" 4857 | }, 4858 | { 4859 | "id": 2023404, 4860 | "nr": 11, 4861 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-11.jpeg" 4862 | }, 4863 | { 4864 | "id": 2023405, 4865 | "nr": 12, 4866 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-12.jpeg" 4867 | }, 4868 | { 4869 | "id": 2023406, 4870 | "nr": 13, 4871 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-13.jpeg" 4872 | }, 4873 | { 4874 | "id": 2023407, 4875 | "nr": 14, 4876 | "picture": "https://images.pexels.com/videos/4838261/pictures/preview-14.jpeg" 4877 | } 4878 | ] 4879 | }, 4880 | { 4881 | "id": 4838262, 4882 | "width": 2160, 4883 | "height": 3840, 4884 | "duration": 21, 4885 | "full_res": null, 4886 | "tags": [], 4887 | "url": "https://www.pexels.com/video/cute-dog-with-a-shower-cap-4838262/", 4888 | "image": "https://images.pexels.com/videos/4838262/adorable-animal-cute-dog-4838262.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 4889 | "avg_color": null, 4890 | "user": { 4891 | "id": 1984515, 4892 | "name": "Anna Shvets", 4893 | "url": "https://www.pexels.com/@shvetsa" 4894 | }, 4895 | "video_files": [ 4896 | { 4897 | "id": 9398511, 4898 | "quality": "hd", 4899 | "file_type": "video/mp4", 4900 | "width": 1080, 4901 | "height": 1920, 4902 | "fps": 24, 4903 | "link": "https://videos.pexels.com/video-files/4838262/4838262-hd_1080_1920_24fps.mp4", 4904 | "size": 5062503 4905 | }, 4906 | { 4907 | "id": 9398566, 4908 | "quality": "uhd", 4909 | "file_type": "video/mp4", 4910 | "width": 2160, 4911 | "height": 3840, 4912 | "fps": 24, 4913 | "link": "https://videos.pexels.com/video-files/4838262/4838262-uhd_2160_3840_24fps.mp4", 4914 | "size": 23763084 4915 | }, 4916 | { 4917 | "id": 9398628, 4918 | "quality": "uhd", 4919 | "file_type": "video/mp4", 4920 | "width": 1440, 4921 | "height": 2560, 4922 | "fps": 24, 4923 | "link": "https://videos.pexels.com/video-files/4838262/4838262-uhd_1440_2560_24fps.mp4", 4924 | "size": 8854150 4925 | }, 4926 | { 4927 | "id": 9398670, 4928 | "quality": "hd", 4929 | "file_type": "video/mp4", 4930 | "width": 720, 4931 | "height": 1280, 4932 | "fps": 24, 4933 | "link": "https://videos.pexels.com/video-files/4838262/4838262-hd_720_1280_24fps.mp4", 4934 | "size": 1853768 4935 | }, 4936 | { 4937 | "id": 9398705, 4938 | "quality": "sd", 4939 | "file_type": "video/mp4", 4940 | "width": 360, 4941 | "height": 640, 4942 | "fps": 24, 4943 | "link": "https://videos.pexels.com/video-files/4838262/4838262-sd_360_640_24fps.mp4", 4944 | "size": 534316 4945 | }, 4946 | { 4947 | "id": 9398735, 4948 | "quality": "sd", 4949 | "file_type": "video/mp4", 4950 | "width": 540, 4951 | "height": 960, 4952 | "fps": 24, 4953 | "link": "https://videos.pexels.com/video-files/4838262/4838262-sd_540_960_24fps.mp4", 4954 | "size": 1076694 4955 | }, 4956 | { 4957 | "id": 9398800, 4958 | "quality": "sd", 4959 | "file_type": "video/mp4", 4960 | "width": 240, 4961 | "height": 426, 4962 | "fps": 24, 4963 | "link": "https://videos.pexels.com/video-files/4838262/4838262-sd_240_426_24fps.mp4", 4964 | "size": 249696 4965 | } 4966 | ], 4967 | "video_pictures": [ 4968 | { 4969 | "id": 2023408, 4970 | "nr": 0, 4971 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-0.jpeg" 4972 | }, 4973 | { 4974 | "id": 2023409, 4975 | "nr": 1, 4976 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-1.jpeg" 4977 | }, 4978 | { 4979 | "id": 2023410, 4980 | "nr": 2, 4981 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-2.jpeg" 4982 | }, 4983 | { 4984 | "id": 2023411, 4985 | "nr": 3, 4986 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-3.jpeg" 4987 | }, 4988 | { 4989 | "id": 2023412, 4990 | "nr": 4, 4991 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-4.jpeg" 4992 | }, 4993 | { 4994 | "id": 2023413, 4995 | "nr": 5, 4996 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-5.jpeg" 4997 | }, 4998 | { 4999 | "id": 2023414, 5000 | "nr": 6, 5001 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-6.jpeg" 5002 | }, 5003 | { 5004 | "id": 2023415, 5005 | "nr": 7, 5006 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-7.jpeg" 5007 | }, 5008 | { 5009 | "id": 2023416, 5010 | "nr": 8, 5011 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-8.jpeg" 5012 | }, 5013 | { 5014 | "id": 2023417, 5015 | "nr": 9, 5016 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-9.jpeg" 5017 | }, 5018 | { 5019 | "id": 2023418, 5020 | "nr": 10, 5021 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-10.jpeg" 5022 | }, 5023 | { 5024 | "id": 2023419, 5025 | "nr": 11, 5026 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-11.jpeg" 5027 | }, 5028 | { 5029 | "id": 2023420, 5030 | "nr": 12, 5031 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-12.jpeg" 5032 | }, 5033 | { 5034 | "id": 2023421, 5035 | "nr": 13, 5036 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-13.jpeg" 5037 | }, 5038 | { 5039 | "id": 2023422, 5040 | "nr": 14, 5041 | "picture": "https://images.pexels.com/videos/4838262/pictures/preview-14.jpeg" 5042 | } 5043 | ] 5044 | }, 5045 | { 5046 | "id": 5740714, 5047 | "width": 2160, 5048 | "height": 3840, 5049 | "duration": 10, 5050 | "full_res": null, 5051 | "tags": [], 5052 | "url": "https://www.pexels.com/video/dog-looking-under-the-table-5740714/", 5053 | "image": "https://images.pexels.com/videos/5740714/pexels-photo-5740714.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 5054 | "avg_color": null, 5055 | "user": { 5056 | "id": 3651179, 5057 | "name": "Zen Chung", 5058 | "url": "https://www.pexels.com/@zen-chung" 5059 | }, 5060 | "video_files": [ 5061 | { 5062 | "id": 9790384, 5063 | "quality": "sd", 5064 | "file_type": "video/mp4", 5065 | "width": 360, 5066 | "height": 640, 5067 | "fps": 23.97599983215332, 5068 | "link": "https://videos.pexels.com/video-files/5740714/5740714-sd_360_640_24fps.mp4", 5069 | "size": 632332 5070 | }, 5071 | { 5072 | "id": 9790460, 5073 | "quality": "sd", 5074 | "file_type": "video/mp4", 5075 | "width": 540, 5076 | "height": 960, 5077 | "fps": 23.97599983215332, 5078 | "link": "https://videos.pexels.com/video-files/5740714/5740714-sd_540_960_24fps.mp4", 5079 | "size": 1264665 5080 | }, 5081 | { 5082 | "id": 9790537, 5083 | "quality": "hd", 5084 | "file_type": "video/mp4", 5085 | "width": 720, 5086 | "height": 1280, 5087 | "fps": 23.97599983215332, 5088 | "link": "https://videos.pexels.com/video-files/5740714/5740714-hd_720_1280_24fps.mp4", 5089 | "size": 1972445 5090 | }, 5091 | { 5092 | "id": 9790642, 5093 | "quality": "hd", 5094 | "file_type": "video/mp4", 5095 | "width": 1080, 5096 | "height": 1920, 5097 | "fps": 23.97599983215332, 5098 | "link": "https://videos.pexels.com/video-files/5740714/5740714-hd_1080_1920_24fps.mp4", 5099 | "size": 3981407 5100 | }, 5101 | { 5102 | "id": 9790747, 5103 | "quality": "sd", 5104 | "file_type": "video/mp4", 5105 | "width": 240, 5106 | "height": 426, 5107 | "fps": 23.97599983215332, 5108 | "link": "https://videos.pexels.com/video-files/5740714/5740714-sd_240_426_24fps.mp4", 5109 | "size": 347269 5110 | }, 5111 | { 5112 | "id": 9790880, 5113 | "quality": "uhd", 5114 | "file_type": "video/mp4", 5115 | "width": 1440, 5116 | "height": 2560, 5117 | "fps": 23.97599983215332, 5118 | "link": "https://videos.pexels.com/video-files/5740714/5740714-uhd_1440_2560_24fps.mp4", 5119 | "size": 6553306 5120 | }, 5121 | { 5122 | "id": 9790900, 5123 | "quality": "uhd", 5124 | "file_type": "video/mp4", 5125 | "width": 2160, 5126 | "height": 3840, 5127 | "fps": 23.97599983215332, 5128 | "link": "https://videos.pexels.com/video-files/5740714/5740714-uhd_2160_3840_24fps.mp4", 5129 | "size": 15154392 5130 | } 5131 | ], 5132 | "video_pictures": [ 5133 | { 5134 | "id": 3294886, 5135 | "nr": 0, 5136 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-0.jpeg" 5137 | }, 5138 | { 5139 | "id": 3294891, 5140 | "nr": 1, 5141 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-1.jpeg" 5142 | }, 5143 | { 5144 | "id": 3294897, 5145 | "nr": 2, 5146 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-2.jpeg" 5147 | }, 5148 | { 5149 | "id": 3294903, 5150 | "nr": 3, 5151 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-3.jpeg" 5152 | }, 5153 | { 5154 | "id": 3294911, 5155 | "nr": 4, 5156 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-4.jpeg" 5157 | }, 5158 | { 5159 | "id": 3294917, 5160 | "nr": 5, 5161 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-5.jpeg" 5162 | }, 5163 | { 5164 | "id": 3294922, 5165 | "nr": 6, 5166 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-6.jpeg" 5167 | }, 5168 | { 5169 | "id": 3294926, 5170 | "nr": 7, 5171 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-7.jpeg" 5172 | }, 5173 | { 5174 | "id": 3294930, 5175 | "nr": 8, 5176 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-8.jpeg" 5177 | }, 5178 | { 5179 | "id": 3294937, 5180 | "nr": 9, 5181 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-9.jpeg" 5182 | }, 5183 | { 5184 | "id": 3294942, 5185 | "nr": 10, 5186 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-10.jpeg" 5187 | }, 5188 | { 5189 | "id": 3294954, 5190 | "nr": 11, 5191 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-11.jpeg" 5192 | }, 5193 | { 5194 | "id": 3294958, 5195 | "nr": 12, 5196 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-12.jpeg" 5197 | }, 5198 | { 5199 | "id": 3294963, 5200 | "nr": 13, 5201 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-13.jpeg" 5202 | }, 5203 | { 5204 | "id": 3294969, 5205 | "nr": 14, 5206 | "picture": "https://images.pexels.com/videos/5740714/pictures/preview-14.jpeg" 5207 | } 5208 | ] 5209 | }, 5210 | { 5211 | "id": 5534284, 5212 | "width": 1080, 5213 | "height": 1920, 5214 | "duration": 9, 5215 | "full_res": null, 5216 | "tags": [], 5217 | "url": "https://www.pexels.com/video/puppy-laying-on-the-floor-5534284/", 5218 | "image": "https://images.pexels.com/videos/5534284/pexels-photo-5534284.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 5219 | "avg_color": null, 5220 | "user": { 5221 | "id": 3684321, 5222 | "name": "Anna Bondarenko", 5223 | "url": "https://www.pexels.com/@aaa333" 5224 | }, 5225 | "video_files": [ 5226 | { 5227 | "id": 9727910, 5228 | "quality": "sd", 5229 | "file_type": "video/mp4", 5230 | "width": 540, 5231 | "height": 960, 5232 | "fps": 29.969999313354492, 5233 | "link": "https://videos.pexels.com/video-files/5534284/5534284-sd_540_960_30fps.mp4", 5234 | "size": 1961149 5235 | }, 5236 | { 5237 | "id": 9727929, 5238 | "quality": "sd", 5239 | "file_type": "video/mp4", 5240 | "width": 240, 5241 | "height": 426, 5242 | "fps": 29.969999313354492, 5243 | "link": "https://videos.pexels.com/video-files/5534284/5534284-sd_240_426_30fps.mp4", 5244 | "size": 421215 5245 | }, 5246 | { 5247 | "id": 9727943, 5248 | "quality": "hd", 5249 | "file_type": "video/mp4", 5250 | "width": 1080, 5251 | "height": 1920, 5252 | "fps": 29.969999313354492, 5253 | "link": "https://videos.pexels.com/video-files/5534284/5534284-hd_1080_1920_30fps.mp4", 5254 | "size": 5852921 5255 | }, 5256 | { 5257 | "id": 9727969, 5258 | "quality": "hd", 5259 | "file_type": "video/mp4", 5260 | "width": 720, 5261 | "height": 1280, 5262 | "fps": 29.969999313354492, 5263 | "link": "https://videos.pexels.com/video-files/5534284/5534284-hd_720_1280_30fps.mp4", 5264 | "size": 3124882 5265 | }, 5266 | { 5267 | "id": 9727989, 5268 | "quality": "sd", 5269 | "file_type": "video/mp4", 5270 | "width": 360, 5271 | "height": 640, 5272 | "fps": 29.969999313354492, 5273 | "link": "https://videos.pexels.com/video-files/5534284/5534284-sd_360_640_30fps.mp4", 5274 | "size": 715604 5275 | } 5276 | ], 5277 | "video_pictures": [ 5278 | { 5279 | "id": 2962738, 5280 | "nr": 0, 5281 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-0.jpeg" 5282 | }, 5283 | { 5284 | "id": 2962741, 5285 | "nr": 1, 5286 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-1.jpeg" 5287 | }, 5288 | { 5289 | "id": 2962743, 5290 | "nr": 2, 5291 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-2.jpeg" 5292 | }, 5293 | { 5294 | "id": 2962745, 5295 | "nr": 3, 5296 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-3.jpeg" 5297 | }, 5298 | { 5299 | "id": 2962748, 5300 | "nr": 4, 5301 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-4.jpeg" 5302 | }, 5303 | { 5304 | "id": 2962750, 5305 | "nr": 5, 5306 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-5.jpeg" 5307 | }, 5308 | { 5309 | "id": 2962753, 5310 | "nr": 6, 5311 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-6.jpeg" 5312 | }, 5313 | { 5314 | "id": 2962755, 5315 | "nr": 7, 5316 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-7.jpeg" 5317 | }, 5318 | { 5319 | "id": 2962757, 5320 | "nr": 8, 5321 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-8.jpeg" 5322 | }, 5323 | { 5324 | "id": 2962760, 5325 | "nr": 9, 5326 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-9.jpeg" 5327 | }, 5328 | { 5329 | "id": 2962762, 5330 | "nr": 10, 5331 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-10.jpeg" 5332 | }, 5333 | { 5334 | "id": 2962768, 5335 | "nr": 11, 5336 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-11.jpeg" 5337 | }, 5338 | { 5339 | "id": 2962772, 5340 | "nr": 12, 5341 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-12.jpeg" 5342 | }, 5343 | { 5344 | "id": 2962775, 5345 | "nr": 13, 5346 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-13.jpeg" 5347 | }, 5348 | { 5349 | "id": 2962779, 5350 | "nr": 14, 5351 | "picture": "https://images.pexels.com/videos/5534284/pictures/preview-14.jpeg" 5352 | } 5353 | ] 5354 | }, 5355 | { 5356 | "id": 7515875, 5357 | "width": 1080, 5358 | "height": 1920, 5359 | "duration": 21, 5360 | "full_res": null, 5361 | "tags": [], 5362 | "url": "https://www.pexels.com/video/retriever-dog-is-sitting-on-the-grass-in-the-park-7515875/", 5363 | "image": "https://images.pexels.com/videos/7515875/pexels-photo-7515875.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 5364 | "avg_color": null, 5365 | "user": { 5366 | "id": 3149039, 5367 | "name": "RDNE Stock project", 5368 | "url": "https://www.pexels.com/@rdne" 5369 | }, 5370 | "video_files": [ 5371 | { 5372 | "id": 10456641, 5373 | "quality": "hd", 5374 | "file_type": "video/mp4", 5375 | "width": 720, 5376 | "height": 1280, 5377 | "fps": 30, 5378 | "link": "https://videos.pexels.com/video-files/7515875/7515875-hd_720_1280_30fps.mp4", 5379 | "size": 6851595 5380 | }, 5381 | { 5382 | "id": 10456688, 5383 | "quality": "hd", 5384 | "file_type": "video/mp4", 5385 | "width": 1080, 5386 | "height": 1920, 5387 | "fps": 30, 5388 | "link": "https://videos.pexels.com/video-files/7515875/7515875-hd_1080_1920_30fps.mp4", 5389 | "size": 13843916 5390 | }, 5391 | { 5392 | "id": 10456730, 5393 | "quality": "sd", 5394 | "file_type": "video/mp4", 5395 | "width": 360, 5396 | "height": 640, 5397 | "fps": 30, 5398 | "link": "https://videos.pexels.com/video-files/7515875/7515875-sd_360_640_30fps.mp4", 5399 | "size": 1246442 5400 | }, 5401 | { 5402 | "id": 10456767, 5403 | "quality": "sd", 5404 | "file_type": "video/mp4", 5405 | "width": 540, 5406 | "height": 960, 5407 | "fps": 30, 5408 | "link": "https://videos.pexels.com/video-files/7515875/7515875-sd_540_960_30fps.mp4", 5409 | "size": 3383415 5410 | }, 5411 | { 5412 | "id": 10456800, 5413 | "quality": "sd", 5414 | "file_type": "video/mp4", 5415 | "width": 240, 5416 | "height": 426, 5417 | "fps": 30, 5418 | "link": "https://videos.pexels.com/video-files/7515875/7515875-sd_240_426_30fps.mp4", 5419 | "size": 880096 5420 | } 5421 | ], 5422 | "video_pictures": [ 5423 | { 5424 | "id": 6528222, 5425 | "nr": 0, 5426 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-0.jpeg" 5427 | }, 5428 | { 5429 | "id": 6528227, 5430 | "nr": 1, 5431 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-1.jpeg" 5432 | }, 5433 | { 5434 | "id": 6528232, 5435 | "nr": 2, 5436 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-2.jpeg" 5437 | }, 5438 | { 5439 | "id": 6528234, 5440 | "nr": 3, 5441 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-3.jpeg" 5442 | }, 5443 | { 5444 | "id": 6528239, 5445 | "nr": 4, 5446 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-4.jpeg" 5447 | }, 5448 | { 5449 | "id": 6528246, 5450 | "nr": 5, 5451 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-5.jpeg" 5452 | }, 5453 | { 5454 | "id": 6528254, 5455 | "nr": 6, 5456 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-6.jpeg" 5457 | }, 5458 | { 5459 | "id": 6528256, 5460 | "nr": 7, 5461 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-7.jpeg" 5462 | }, 5463 | { 5464 | "id": 6528260, 5465 | "nr": 8, 5466 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-8.jpeg" 5467 | }, 5468 | { 5469 | "id": 6528263, 5470 | "nr": 9, 5471 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-9.jpeg" 5472 | }, 5473 | { 5474 | "id": 6528267, 5475 | "nr": 10, 5476 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-10.jpeg" 5477 | }, 5478 | { 5479 | "id": 6528271, 5480 | "nr": 11, 5481 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-11.jpeg" 5482 | }, 5483 | { 5484 | "id": 6528273, 5485 | "nr": 12, 5486 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-12.jpeg" 5487 | }, 5488 | { 5489 | "id": 6528274, 5490 | "nr": 13, 5491 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-13.jpeg" 5492 | }, 5493 | { 5494 | "id": 6528276, 5495 | "nr": 14, 5496 | "picture": "https://images.pexels.com/videos/7515875/pictures/preview-14.jpeg" 5497 | } 5498 | ] 5499 | }, 5500 | { 5501 | "id": 5501730, 5502 | "width": 2160, 5503 | "height": 3840, 5504 | "duration": 5, 5505 | "full_res": null, 5506 | "tags": [], 5507 | "url": "https://www.pexels.com/video/a-happy-family-dancing-with-their-white-dog-5501730/", 5508 | "image": "https://images.pexels.com/videos/5501730/autumn-be-happy-boxes-brewing-coffee-5501730.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 5509 | "avg_color": null, 5510 | "user": { 5511 | "id": 2441340, 5512 | "name": "Anastasia Shuraeva", 5513 | "url": "https://www.pexels.com/@anastasia-shuraeva" 5514 | }, 5515 | "video_files": [ 5516 | { 5517 | "id": 9715481, 5518 | "quality": "sd", 5519 | "file_type": "video/mp4", 5520 | "width": 240, 5521 | "height": 426, 5522 | "fps": 24, 5523 | "link": "https://videos.pexels.com/video-files/5501730/5501730-sd_240_426_24fps.mp4", 5524 | "size": 193340 5525 | }, 5526 | { 5527 | "id": 9715626, 5528 | "quality": "sd", 5529 | "file_type": "video/mp4", 5530 | "width": 360, 5531 | "height": 640, 5532 | "fps": 24, 5533 | "link": "https://videos.pexels.com/video-files/5501730/5501730-sd_360_640_24fps.mp4", 5534 | "size": 316216 5535 | }, 5536 | { 5537 | "id": 9715702, 5538 | "quality": "hd", 5539 | "file_type": "video/mp4", 5540 | "width": 1080, 5541 | "height": 1920, 5542 | "fps": 24, 5543 | "link": "https://videos.pexels.com/video-files/5501730/5501730-hd_1080_1920_24fps.mp4", 5544 | "size": 3082982 5545 | }, 5546 | { 5547 | "id": 9716015, 5548 | "quality": "uhd", 5549 | "file_type": "video/mp4", 5550 | "width": 1440, 5551 | "height": 2560, 5552 | "fps": 24, 5553 | "link": "https://videos.pexels.com/video-files/5501730/5501730-uhd_1440_2560_24fps.mp4", 5554 | "size": 8104196 5555 | }, 5556 | { 5557 | "id": 9716208, 5558 | "quality": "uhd", 5559 | "file_type": "video/mp4", 5560 | "width": 2160, 5561 | "height": 3840, 5562 | "fps": 24, 5563 | "link": "https://videos.pexels.com/video-files/5501730/5501730-uhd_2160_3840_24fps.mp4", 5564 | "size": 14355559 5565 | }, 5566 | { 5567 | "id": 9716326, 5568 | "quality": "hd", 5569 | "file_type": "video/mp4", 5570 | "width": 720, 5571 | "height": 1280, 5572 | "fps": 24, 5573 | "link": "https://videos.pexels.com/video-files/5501730/5501730-hd_720_1280_24fps.mp4", 5574 | "size": 1632683 5575 | }, 5576 | { 5577 | "id": 9716453, 5578 | "quality": "sd", 5579 | "file_type": "video/mp4", 5580 | "width": 540, 5581 | "height": 960, 5582 | "fps": 24, 5583 | "link": "https://videos.pexels.com/video-files/5501730/5501730-sd_540_960_24fps.mp4", 5584 | "size": 927187 5585 | } 5586 | ], 5587 | "video_pictures": [ 5588 | { 5589 | "id": 2918708, 5590 | "nr": 0, 5591 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-0.jpeg" 5592 | }, 5593 | { 5594 | "id": 2918711, 5595 | "nr": 1, 5596 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-1.jpeg" 5597 | }, 5598 | { 5599 | "id": 2918716, 5600 | "nr": 2, 5601 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-2.jpeg" 5602 | }, 5603 | { 5604 | "id": 2918717, 5605 | "nr": 3, 5606 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-3.jpeg" 5607 | }, 5608 | { 5609 | "id": 2918723, 5610 | "nr": 4, 5611 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-4.jpeg" 5612 | }, 5613 | { 5614 | "id": 2918729, 5615 | "nr": 5, 5616 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-5.jpeg" 5617 | }, 5618 | { 5619 | "id": 2918736, 5620 | "nr": 6, 5621 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-6.jpeg" 5622 | }, 5623 | { 5624 | "id": 2918743, 5625 | "nr": 7, 5626 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-7.jpeg" 5627 | }, 5628 | { 5629 | "id": 2918748, 5630 | "nr": 8, 5631 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-8.jpeg" 5632 | }, 5633 | { 5634 | "id": 2918763, 5635 | "nr": 9, 5636 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-9.jpeg" 5637 | }, 5638 | { 5639 | "id": 2918773, 5640 | "nr": 10, 5641 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-10.jpeg" 5642 | }, 5643 | { 5644 | "id": 2918783, 5645 | "nr": 11, 5646 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-11.jpeg" 5647 | }, 5648 | { 5649 | "id": 2918797, 5650 | "nr": 12, 5651 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-12.jpeg" 5652 | }, 5653 | { 5654 | "id": 2918805, 5655 | "nr": 13, 5656 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-13.jpeg" 5657 | }, 5658 | { 5659 | "id": 2918810, 5660 | "nr": 14, 5661 | "picture": "https://images.pexels.com/videos/5501730/pictures/preview-14.jpeg" 5662 | } 5663 | ] 5664 | }, 5665 | { 5666 | "id": 5751499, 5667 | "width": 2160, 5668 | "height": 4096, 5669 | "duration": 24, 5670 | "full_res": null, 5671 | "tags": [], 5672 | "url": "https://www.pexels.com/video/training-a-dog-5751499/", 5673 | "image": "https://images.pexels.com/videos/5751499/animal-pet-dog-5751499.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 5674 | "avg_color": null, 5675 | "user": { 5676 | "id": 2332540, 5677 | "name": "Photo By: Kaboompics.com", 5678 | "url": "https://www.pexels.com/@karolina-grabowska" 5679 | }, 5680 | "video_files": [ 5681 | { 5682 | "id": 9794311, 5683 | "quality": "hd", 5684 | "file_type": "video/mp4", 5685 | "width": 720, 5686 | "height": 1366, 5687 | "fps": 25, 5688 | "link": "https://videos.pexels.com/video-files/5751499/5751499-hd_720_1366_25fps.mp4", 5689 | "size": 3583798 5690 | }, 5691 | { 5692 | "id": 9794343, 5693 | "quality": "uhd", 5694 | "file_type": "video/mp4", 5695 | "width": 2160, 5696 | "height": 4096, 5697 | "fps": 25, 5698 | "link": "https://videos.pexels.com/video-files/5751499/5751499-uhd_2160_4096_25fps.mp4", 5699 | "size": 32758643 5700 | }, 5701 | { 5702 | "id": 9794429, 5703 | "quality": "hd", 5704 | "file_type": "video/mp4", 5705 | "width": 1080, 5706 | "height": 2048, 5707 | "fps": 25, 5708 | "link": "https://videos.pexels.com/video-files/5751499/5751499-hd_1080_2048_25fps.mp4", 5709 | "size": 9389848 5710 | }, 5711 | { 5712 | "id": 9794530, 5713 | "quality": "uhd", 5714 | "file_type": "video/mp4", 5715 | "width": 1440, 5716 | "height": 2732, 5717 | "fps": 25, 5718 | "link": "https://videos.pexels.com/video-files/5751499/5751499-uhd_1440_2732_25fps.mp4", 5719 | "size": 15528546 5720 | }, 5721 | { 5722 | "id": 9794580, 5723 | "quality": "sd", 5724 | "file_type": "video/mp4", 5725 | "width": 506, 5726 | "height": 960, 5727 | "fps": 25, 5728 | "link": "https://videos.pexels.com/video-files/5751499/5751499-sd_506_960_25fps.mp4", 5729 | "size": 1806216 5730 | }, 5731 | { 5732 | "id": 9794741, 5733 | "quality": "sd", 5734 | "file_type": "video/mp4", 5735 | "width": 226, 5736 | "height": 426, 5737 | "fps": 25, 5738 | "link": "https://videos.pexels.com/video-files/5751499/5751499-sd_226_426_25fps.mp4", 5739 | "size": 473076 5740 | }, 5741 | { 5742 | "id": 9794844, 5743 | "quality": "sd", 5744 | "file_type": "video/mp4", 5745 | "width": 338, 5746 | "height": 640, 5747 | "fps": 25, 5748 | "link": "https://videos.pexels.com/video-files/5751499/5751499-sd_338_640_25fps.mp4", 5749 | "size": 902006 5750 | } 5751 | ], 5752 | "video_pictures": [ 5753 | { 5754 | "id": 3315934, 5755 | "nr": 0, 5756 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-0.jpeg" 5757 | }, 5758 | { 5759 | "id": 3315939, 5760 | "nr": 1, 5761 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-1.jpeg" 5762 | }, 5763 | { 5764 | "id": 3315944, 5765 | "nr": 2, 5766 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-2.jpeg" 5767 | }, 5768 | { 5769 | "id": 3315947, 5770 | "nr": 3, 5771 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-3.jpeg" 5772 | }, 5773 | { 5774 | "id": 3315954, 5775 | "nr": 4, 5776 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-4.jpeg" 5777 | }, 5778 | { 5779 | "id": 3315958, 5780 | "nr": 5, 5781 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-5.jpeg" 5782 | }, 5783 | { 5784 | "id": 3315963, 5785 | "nr": 6, 5786 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-6.jpeg" 5787 | }, 5788 | { 5789 | "id": 3315968, 5790 | "nr": 7, 5791 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-7.jpeg" 5792 | }, 5793 | { 5794 | "id": 3315969, 5795 | "nr": 8, 5796 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-8.jpeg" 5797 | }, 5798 | { 5799 | "id": 3315975, 5800 | "nr": 9, 5801 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-9.jpeg" 5802 | }, 5803 | { 5804 | "id": 3315980, 5805 | "nr": 10, 5806 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-10.jpeg" 5807 | }, 5808 | { 5809 | "id": 3315982, 5810 | "nr": 11, 5811 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-11.jpeg" 5812 | }, 5813 | { 5814 | "id": 3315987, 5815 | "nr": 12, 5816 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-12.jpeg" 5817 | }, 5818 | { 5819 | "id": 3315991, 5820 | "nr": 13, 5821 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-13.jpeg" 5822 | }, 5823 | { 5824 | "id": 3315993, 5825 | "nr": 14, 5826 | "picture": "https://images.pexels.com/videos/5751499/pictures/preview-14.jpeg" 5827 | } 5828 | ] 5829 | }, 5830 | { 5831 | "id": 4057402, 5832 | "width": 2160, 5833 | "height": 4096, 5834 | "duration": 23, 5835 | "full_res": null, 5836 | "tags": [], 5837 | "url": "https://www.pexels.com/video/woman-feet-legs-apple-4057402/", 5838 | "image": "https://images.pexels.com/videos/4057402/pexels-photo-4057402.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 5839 | "avg_color": null, 5840 | "user": { 5841 | "id": 1437723, 5842 | "name": "cottonbro studio", 5843 | "url": "https://www.pexels.com/@cottonbro" 5844 | }, 5845 | "video_files": [ 5846 | { 5847 | "id": 9343655, 5848 | "quality": "uhd", 5849 | "file_type": "video/mp4", 5850 | "width": 2160, 5851 | "height": 4096, 5852 | "fps": 25, 5853 | "link": "https://videos.pexels.com/video-files/4057402/4057402-uhd_2160_4096_25fps.mp4", 5854 | "size": 61052564 5855 | }, 5856 | { 5857 | "id": 9343778, 5858 | "quality": "sd", 5859 | "file_type": "video/mp4", 5860 | "width": 226, 5861 | "height": 426, 5862 | "fps": 25, 5863 | "link": "https://videos.pexels.com/video-files/4057402/4057402-sd_226_426_25fps.mp4", 5864 | "size": 907678 5865 | }, 5866 | { 5867 | "id": 9343846, 5868 | "quality": "hd", 5869 | "file_type": "video/mp4", 5870 | "width": 1080, 5871 | "height": 2048, 5872 | "fps": 25, 5873 | "link": "https://videos.pexels.com/video-files/4057402/4057402-hd_1080_2048_25fps.mp4", 5874 | "size": 12612607 5875 | }, 5876 | { 5877 | "id": 9343964, 5878 | "quality": "sd", 5879 | "file_type": "video/mp4", 5880 | "width": 338, 5881 | "height": 640, 5882 | "fps": 25, 5883 | "link": "https://videos.pexels.com/video-files/4057402/4057402-sd_338_640_25fps.mp4", 5884 | "size": 1466368 5885 | }, 5886 | { 5887 | "id": 9344127, 5888 | "quality": "hd", 5889 | "file_type": "video/mp4", 5890 | "width": 720, 5891 | "height": 1366, 5892 | "fps": 50, 5893 | "link": "https://videos.pexels.com/video-files/4057402/4057402-hd_720_1366_50fps.mp4", 5894 | "size": 6901660 5895 | }, 5896 | { 5897 | "id": 9344153, 5898 | "quality": "uhd", 5899 | "file_type": "video/mp4", 5900 | "width": 1440, 5901 | "height": 2732, 5902 | "fps": 25, 5903 | "link": "https://videos.pexels.com/video-files/4057402/4057402-uhd_1440_2732_25fps.mp4", 5904 | "size": 24283737 5905 | }, 5906 | { 5907 | "id": 9344208, 5908 | "quality": "sd", 5909 | "file_type": "video/mp4", 5910 | "width": 506, 5911 | "height": 960, 5912 | "fps": 25, 5913 | "link": "https://videos.pexels.com/video-files/4057402/4057402-sd_506_960_25fps.mp4", 5914 | "size": 3097567 5915 | } 5916 | ], 5917 | "video_pictures": [ 5918 | { 5919 | "id": 1106250, 5920 | "nr": 0, 5921 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-0.jpeg" 5922 | }, 5923 | { 5924 | "id": 1106255, 5925 | "nr": 1, 5926 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-1.jpeg" 5927 | }, 5928 | { 5929 | "id": 1106265, 5930 | "nr": 2, 5931 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-2.jpeg" 5932 | }, 5933 | { 5934 | "id": 1106273, 5935 | "nr": 3, 5936 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-3.jpeg" 5937 | }, 5938 | { 5939 | "id": 1106278, 5940 | "nr": 4, 5941 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-4.jpeg" 5942 | }, 5943 | { 5944 | "id": 1106281, 5945 | "nr": 5, 5946 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-5.jpeg" 5947 | }, 5948 | { 5949 | "id": 1106287, 5950 | "nr": 6, 5951 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-6.jpeg" 5952 | }, 5953 | { 5954 | "id": 1106292, 5955 | "nr": 7, 5956 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-7.jpeg" 5957 | }, 5958 | { 5959 | "id": 1106301, 5960 | "nr": 8, 5961 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-8.jpeg" 5962 | }, 5963 | { 5964 | "id": 1106308, 5965 | "nr": 9, 5966 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-9.jpeg" 5967 | }, 5968 | { 5969 | "id": 1106317, 5970 | "nr": 10, 5971 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-10.jpeg" 5972 | }, 5973 | { 5974 | "id": 1106324, 5975 | "nr": 11, 5976 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-11.jpeg" 5977 | }, 5978 | { 5979 | "id": 1106328, 5980 | "nr": 12, 5981 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-12.jpeg" 5982 | }, 5983 | { 5984 | "id": 1106337, 5985 | "nr": 13, 5986 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-13.jpeg" 5987 | }, 5988 | { 5989 | "id": 1106343, 5990 | "nr": 14, 5991 | "picture": "https://images.pexels.com/videos/4057402/pictures/preview-14.jpeg" 5992 | } 5993 | ] 5994 | }, 5995 | { 5996 | "id": 7515919, 5997 | "width": 1080, 5998 | "height": 1920, 5999 | "duration": 16, 6000 | "full_res": null, 6001 | "tags": [], 6002 | "url": "https://www.pexels.com/video/a-dog-lying-on-the-ground-7515919/", 6003 | "image": "https://images.pexels.com/videos/7515919/animal-baby-dog-big-cat-black-dog-7515919.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6004 | "avg_color": null, 6005 | "user": { 6006 | "id": 3149039, 6007 | "name": "RDNE Stock project", 6008 | "url": "https://www.pexels.com/@rdne" 6009 | }, 6010 | "video_files": [ 6011 | { 6012 | "id": 10456746, 6013 | "quality": "sd", 6014 | "file_type": "video/mp4", 6015 | "width": 540, 6016 | "height": 960, 6017 | "fps": 30, 6018 | "link": "https://videos.pexels.com/video-files/7515919/7515919-sd_540_960_30fps.mp4", 6019 | "size": 1323305 6020 | }, 6021 | { 6022 | "id": 10456871, 6023 | "quality": "hd", 6024 | "file_type": "video/mp4", 6025 | "width": 1080, 6026 | "height": 1920, 6027 | "fps": 30, 6028 | "link": "https://videos.pexels.com/video-files/7515919/7515919-hd_1080_1920_30fps.mp4", 6029 | "size": 6512714 6030 | }, 6031 | { 6032 | "id": 10457007, 6033 | "quality": "hd", 6034 | "file_type": "video/mp4", 6035 | "width": 720, 6036 | "height": 1280, 6037 | "fps": 30, 6038 | "link": "https://videos.pexels.com/video-files/7515919/7515919-hd_720_1280_30fps.mp4", 6039 | "size": 2222346 6040 | }, 6041 | { 6042 | "id": 10457091, 6043 | "quality": "sd", 6044 | "file_type": "video/mp4", 6045 | "width": 240, 6046 | "height": 426, 6047 | "fps": 30, 6048 | "link": "https://videos.pexels.com/video-files/7515919/7515919-sd_240_426_30fps.mp4", 6049 | "size": 341725 6050 | }, 6051 | { 6052 | "id": 10457168, 6053 | "quality": "sd", 6054 | "file_type": "video/mp4", 6055 | "width": 360, 6056 | "height": 640, 6057 | "fps": 30, 6058 | "link": "https://videos.pexels.com/video-files/7515919/7515919-sd_360_640_30fps.mp4", 6059 | "size": 635313 6060 | } 6061 | ], 6062 | "video_pictures": [ 6063 | { 6064 | "id": 6528470, 6065 | "nr": 0, 6066 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-0.jpeg" 6067 | }, 6068 | { 6069 | "id": 6528476, 6070 | "nr": 1, 6071 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-1.jpeg" 6072 | }, 6073 | { 6074 | "id": 6528483, 6075 | "nr": 2, 6076 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-2.jpeg" 6077 | }, 6078 | { 6079 | "id": 6528487, 6080 | "nr": 3, 6081 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-3.jpeg" 6082 | }, 6083 | { 6084 | "id": 6528491, 6085 | "nr": 4, 6086 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-4.jpeg" 6087 | }, 6088 | { 6089 | "id": 6528497, 6090 | "nr": 5, 6091 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-5.jpeg" 6092 | }, 6093 | { 6094 | "id": 6528503, 6095 | "nr": 6, 6096 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-6.jpeg" 6097 | }, 6098 | { 6099 | "id": 6528508, 6100 | "nr": 7, 6101 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-7.jpeg" 6102 | }, 6103 | { 6104 | "id": 6528511, 6105 | "nr": 8, 6106 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-8.jpeg" 6107 | }, 6108 | { 6109 | "id": 6528515, 6110 | "nr": 9, 6111 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-9.jpeg" 6112 | }, 6113 | { 6114 | "id": 6528518, 6115 | "nr": 10, 6116 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-10.jpeg" 6117 | }, 6118 | { 6119 | "id": 6528523, 6120 | "nr": 11, 6121 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-11.jpeg" 6122 | }, 6123 | { 6124 | "id": 6528528, 6125 | "nr": 12, 6126 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-12.jpeg" 6127 | }, 6128 | { 6129 | "id": 6528532, 6130 | "nr": 13, 6131 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-13.jpeg" 6132 | }, 6133 | { 6134 | "id": 6528535, 6135 | "nr": 14, 6136 | "picture": "https://images.pexels.com/videos/7515919/pictures/preview-14.jpeg" 6137 | } 6138 | ] 6139 | }, 6140 | { 6141 | "id": 4057320, 6142 | "width": 2160, 6143 | "height": 4096, 6144 | "duration": 11, 6145 | "full_res": null, 6146 | "tags": [], 6147 | "url": "https://www.pexels.com/video/woman-feet-legs-apple-4057320/", 6148 | "image": "https://images.pexels.com/videos/4057320/pexels-photo-4057320.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6149 | "avg_color": null, 6150 | "user": { 6151 | "id": 1437723, 6152 | "name": "cottonbro studio", 6153 | "url": "https://www.pexels.com/@cottonbro" 6154 | }, 6155 | "video_files": [ 6156 | { 6157 | "id": 9342783, 6158 | "quality": "uhd", 6159 | "file_type": "video/mp4", 6160 | "width": 1440, 6161 | "height": 2732, 6162 | "fps": 25, 6163 | "link": "https://videos.pexels.com/video-files/4057320/4057320-uhd_1440_2732_25fps.mp4", 6164 | "size": 9514318 6165 | }, 6166 | { 6167 | "id": 9342847, 6168 | "quality": "hd", 6169 | "file_type": "video/mp4", 6170 | "width": 720, 6171 | "height": 1366, 6172 | "fps": 50, 6173 | "link": "https://videos.pexels.com/video-files/4057320/4057320-hd_720_1366_50fps.mp4", 6174 | "size": 2572128 6175 | }, 6176 | { 6177 | "id": 9342923, 6178 | "quality": "uhd", 6179 | "file_type": "video/mp4", 6180 | "width": 2160, 6181 | "height": 4096, 6182 | "fps": 25, 6183 | "link": "https://videos.pexels.com/video-files/4057320/4057320-uhd_2160_4096_25fps.mp4", 6184 | "size": 24013159 6185 | }, 6186 | { 6187 | "id": 9342990, 6188 | "quality": "sd", 6189 | "file_type": "video/mp4", 6190 | "width": 506, 6191 | "height": 960, 6192 | "fps": 25, 6193 | "link": "https://videos.pexels.com/video-files/4057320/4057320-sd_506_960_25fps.mp4", 6194 | "size": 1222537 6195 | }, 6196 | { 6197 | "id": 9343047, 6198 | "quality": "sd", 6199 | "file_type": "video/mp4", 6200 | "width": 226, 6201 | "height": 426, 6202 | "fps": 25, 6203 | "link": "https://videos.pexels.com/video-files/4057320/4057320-sd_226_426_25fps.mp4", 6204 | "size": 347774 6205 | }, 6206 | { 6207 | "id": 9343106, 6208 | "quality": "sd", 6209 | "file_type": "video/mp4", 6210 | "width": 338, 6211 | "height": 640, 6212 | "fps": 25, 6213 | "link": "https://videos.pexels.com/video-files/4057320/4057320-sd_338_640_25fps.mp4", 6214 | "size": 569984 6215 | }, 6216 | { 6217 | "id": 9343151, 6218 | "quality": "hd", 6219 | "file_type": "video/mp4", 6220 | "width": 1080, 6221 | "height": 2048, 6222 | "fps": 25, 6223 | "link": "https://videos.pexels.com/video-files/4057320/4057320-hd_1080_2048_25fps.mp4", 6224 | "size": 4802528 6225 | } 6226 | ], 6227 | "video_pictures": [ 6228 | { 6229 | "id": 1106146, 6230 | "nr": 0, 6231 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-0.jpeg" 6232 | }, 6233 | { 6234 | "id": 1106151, 6235 | "nr": 1, 6236 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-1.jpeg" 6237 | }, 6238 | { 6239 | "id": 1106162, 6240 | "nr": 2, 6241 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-2.jpeg" 6242 | }, 6243 | { 6244 | "id": 1106169, 6245 | "nr": 3, 6246 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-3.jpeg" 6247 | }, 6248 | { 6249 | "id": 1106176, 6250 | "nr": 4, 6251 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-4.jpeg" 6252 | }, 6253 | { 6254 | "id": 1106180, 6255 | "nr": 5, 6256 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-5.jpeg" 6257 | }, 6258 | { 6259 | "id": 1106186, 6260 | "nr": 6, 6261 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-6.jpeg" 6262 | }, 6263 | { 6264 | "id": 1106196, 6265 | "nr": 7, 6266 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-7.jpeg" 6267 | }, 6268 | { 6269 | "id": 1106202, 6270 | "nr": 8, 6271 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-8.jpeg" 6272 | }, 6273 | { 6274 | "id": 1106212, 6275 | "nr": 9, 6276 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-9.jpeg" 6277 | }, 6278 | { 6279 | "id": 1106223, 6280 | "nr": 10, 6281 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-10.jpeg" 6282 | }, 6283 | { 6284 | "id": 1106225, 6285 | "nr": 11, 6286 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-11.jpeg" 6287 | }, 6288 | { 6289 | "id": 1106231, 6290 | "nr": 12, 6291 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-12.jpeg" 6292 | }, 6293 | { 6294 | "id": 1106236, 6295 | "nr": 13, 6296 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-13.jpeg" 6297 | }, 6298 | { 6299 | "id": 1106241, 6300 | "nr": 14, 6301 | "picture": "https://images.pexels.com/videos/4057320/pictures/preview-14.jpeg" 6302 | } 6303 | ] 6304 | }, 6305 | { 6306 | "id": 4884034, 6307 | "width": 2160, 6308 | "height": 3840, 6309 | "duration": 6, 6310 | "full_res": null, 6311 | "tags": [], 6312 | "url": "https://www.pexels.com/video/dog-lying-on-bed-while-getting-a-massage-4884034/", 6313 | "image": "https://images.pexels.com/videos/4884034/animal-animals-and-pets-bed-cute-4884034.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6314 | "avg_color": null, 6315 | "user": { 6316 | "id": 2063260, 6317 | "name": "RingTheBell.com Task Manager", 6318 | "url": "https://www.pexels.com/@ringthebell-com-task-manager-2063260" 6319 | }, 6320 | "video_files": [ 6321 | { 6322 | "id": 9433747, 6323 | "quality": "sd", 6324 | "file_type": "video/mp4", 6325 | "width": 540, 6326 | "height": 960, 6327 | "fps": 29.969999313354492, 6328 | "link": "https://videos.pexels.com/video-files/4884034/4884034-sd_540_960_30fps.mp4", 6329 | "size": 1029694 6330 | }, 6331 | { 6332 | "id": 9433759, 6333 | "quality": "uhd", 6334 | "file_type": "video/mp4", 6335 | "width": 1440, 6336 | "height": 2560, 6337 | "fps": 29.969999313354492, 6338 | "link": "https://videos.pexels.com/video-files/4884034/4884034-uhd_1440_2560_30fps.mp4", 6339 | "size": 9016375 6340 | }, 6341 | { 6342 | "id": 9433780, 6343 | "quality": "uhd", 6344 | "file_type": "video/mp4", 6345 | "width": 2160, 6346 | "height": 3840, 6347 | "fps": 29.969999313354492, 6348 | "link": "https://videos.pexels.com/video-files/4884034/4884034-uhd_2160_3840_30fps.mp4", 6349 | "size": 16179652 6350 | }, 6351 | { 6352 | "id": 9433826, 6353 | "quality": "hd", 6354 | "file_type": "video/mp4", 6355 | "width": 1080, 6356 | "height": 1920, 6357 | "fps": 29.969999313354492, 6358 | "link": "https://videos.pexels.com/video-files/4884034/4884034-hd_1080_1920_30fps.mp4", 6359 | "size": 3577260 6360 | }, 6361 | { 6362 | "id": 9433857, 6363 | "quality": "sd", 6364 | "file_type": "video/mp4", 6365 | "width": 240, 6366 | "height": 426, 6367 | "fps": 29.969999313354492, 6368 | "link": "https://videos.pexels.com/video-files/4884034/4884034-sd_240_426_30fps.mp4", 6369 | "size": 212892 6370 | }, 6371 | { 6372 | "id": 9433883, 6373 | "quality": "sd", 6374 | "file_type": "video/mp4", 6375 | "width": 360, 6376 | "height": 640, 6377 | "fps": 29.969999313354492, 6378 | "link": "https://videos.pexels.com/video-files/4884034/4884034-sd_360_640_30fps.mp4", 6379 | "size": 349447 6380 | }, 6381 | { 6382 | "id": 9433902, 6383 | "quality": "hd", 6384 | "file_type": "video/mp4", 6385 | "width": 720, 6386 | "height": 1280, 6387 | "fps": 29.969999313354492, 6388 | "link": "https://videos.pexels.com/video-files/4884034/4884034-hd_720_1280_30fps.mp4", 6389 | "size": 1805781 6390 | } 6391 | ], 6392 | "video_pictures": [ 6393 | { 6394 | "id": 2075008, 6395 | "nr": 0, 6396 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-0.jpeg" 6397 | }, 6398 | { 6399 | "id": 2075013, 6400 | "nr": 1, 6401 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-1.jpeg" 6402 | }, 6403 | { 6404 | "id": 2075017, 6405 | "nr": 2, 6406 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-2.jpeg" 6407 | }, 6408 | { 6409 | "id": 2075023, 6410 | "nr": 3, 6411 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-3.jpeg" 6412 | }, 6413 | { 6414 | "id": 2075028, 6415 | "nr": 4, 6416 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-4.jpeg" 6417 | }, 6418 | { 6419 | "id": 2075033, 6420 | "nr": 5, 6421 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-5.jpeg" 6422 | }, 6423 | { 6424 | "id": 2075036, 6425 | "nr": 6, 6426 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-6.jpeg" 6427 | }, 6428 | { 6429 | "id": 2075039, 6430 | "nr": 7, 6431 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-7.jpeg" 6432 | }, 6433 | { 6434 | "id": 2075045, 6435 | "nr": 8, 6436 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-8.jpeg" 6437 | }, 6438 | { 6439 | "id": 2075050, 6440 | "nr": 9, 6441 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-9.jpeg" 6442 | }, 6443 | { 6444 | "id": 2075054, 6445 | "nr": 10, 6446 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-10.jpeg" 6447 | }, 6448 | { 6449 | "id": 2075057, 6450 | "nr": 11, 6451 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-11.jpeg" 6452 | }, 6453 | { 6454 | "id": 2075062, 6455 | "nr": 12, 6456 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-12.jpeg" 6457 | }, 6458 | { 6459 | "id": 2075066, 6460 | "nr": 13, 6461 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-13.jpeg" 6462 | }, 6463 | { 6464 | "id": 2075069, 6465 | "nr": 14, 6466 | "picture": "https://images.pexels.com/videos/4884034/pictures/preview-14.jpeg" 6467 | } 6468 | ] 6469 | }, 6470 | { 6471 | "id": 7516712, 6472 | "width": 1080, 6473 | "height": 1920, 6474 | "duration": 10, 6475 | "full_res": null, 6476 | "tags": [], 6477 | "url": "https://www.pexels.com/video/a-cute-puppy-looking-up-7516712/", 6478 | "image": "https://images.pexels.com/videos/7516712/adorable-animal-baby-dog-big-cat-7516712.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6479 | "avg_color": null, 6480 | "user": { 6481 | "id": 3149039, 6482 | "name": "RDNE Stock project", 6483 | "url": "https://www.pexels.com/@rdne" 6484 | }, 6485 | "video_files": [ 6486 | { 6487 | "id": 10456666, 6488 | "quality": "sd", 6489 | "file_type": "video/mp4", 6490 | "width": 360, 6491 | "height": 640, 6492 | "fps": 30, 6493 | "link": "https://videos.pexels.com/video-files/7516712/7516712-sd_360_640_30fps.mp4", 6494 | "size": 432286 6495 | }, 6496 | { 6497 | "id": 10456710, 6498 | "quality": "sd", 6499 | "file_type": "video/mp4", 6500 | "width": 540, 6501 | "height": 960, 6502 | "fps": 30, 6503 | "link": "https://videos.pexels.com/video-files/7516712/7516712-sd_540_960_30fps.mp4", 6504 | "size": 852881 6505 | }, 6506 | { 6507 | "id": 10456802, 6508 | "quality": "sd", 6509 | "file_type": "video/mp4", 6510 | "width": 240, 6511 | "height": 426, 6512 | "fps": 30, 6513 | "link": "https://videos.pexels.com/video-files/7516712/7516712-sd_240_426_30fps.mp4", 6514 | "size": 253045 6515 | }, 6516 | { 6517 | "id": 10456828, 6518 | "quality": "hd", 6519 | "file_type": "video/mp4", 6520 | "width": 720, 6521 | "height": 1280, 6522 | "fps": 30, 6523 | "link": "https://videos.pexels.com/video-files/7516712/7516712-hd_720_1280_30fps.mp4", 6524 | "size": 1426042 6525 | }, 6526 | { 6527 | "id": 10456881, 6528 | "quality": "hd", 6529 | "file_type": "video/mp4", 6530 | "width": 1080, 6531 | "height": 1920, 6532 | "fps": 30, 6533 | "link": "https://videos.pexels.com/video-files/7516712/7516712-hd_1080_1920_30fps.mp4", 6534 | "size": 3593128 6535 | } 6536 | ], 6537 | "video_pictures": [ 6538 | { 6539 | "id": 6529649, 6540 | "nr": 0, 6541 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-0.jpeg" 6542 | }, 6543 | { 6544 | "id": 6529653, 6545 | "nr": 1, 6546 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-1.jpeg" 6547 | }, 6548 | { 6549 | "id": 6529656, 6550 | "nr": 2, 6551 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-2.jpeg" 6552 | }, 6553 | { 6554 | "id": 6529660, 6555 | "nr": 3, 6556 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-3.jpeg" 6557 | }, 6558 | { 6559 | "id": 6529666, 6560 | "nr": 4, 6561 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-4.jpeg" 6562 | }, 6563 | { 6564 | "id": 6529671, 6565 | "nr": 5, 6566 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-5.jpeg" 6567 | }, 6568 | { 6569 | "id": 6529676, 6570 | "nr": 6, 6571 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-6.jpeg" 6572 | }, 6573 | { 6574 | "id": 6529678, 6575 | "nr": 7, 6576 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-7.jpeg" 6577 | }, 6578 | { 6579 | "id": 6529681, 6580 | "nr": 8, 6581 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-8.jpeg" 6582 | }, 6583 | { 6584 | "id": 6529685, 6585 | "nr": 9, 6586 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-9.jpeg" 6587 | }, 6588 | { 6589 | "id": 6529688, 6590 | "nr": 10, 6591 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-10.jpeg" 6592 | }, 6593 | { 6594 | "id": 6529689, 6595 | "nr": 11, 6596 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-11.jpeg" 6597 | }, 6598 | { 6599 | "id": 6529692, 6600 | "nr": 12, 6601 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-12.jpeg" 6602 | }, 6603 | { 6604 | "id": 6529694, 6605 | "nr": 13, 6606 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-13.jpeg" 6607 | }, 6608 | { 6609 | "id": 6529697, 6610 | "nr": 14, 6611 | "picture": "https://images.pexels.com/videos/7516712/pictures/preview-14.jpeg" 6612 | } 6613 | ] 6614 | }, 6615 | { 6616 | "id": 4057410, 6617 | "width": 2160, 6618 | "height": 4096, 6619 | "duration": 47, 6620 | "full_res": null, 6621 | "tags": [], 6622 | "url": "https://www.pexels.com/video/woman-girl-animal-dog-4057410/", 6623 | "image": "https://images.pexels.com/videos/4057410/pexels-photo-4057410.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6624 | "avg_color": null, 6625 | "user": { 6626 | "id": 1437723, 6627 | "name": "cottonbro studio", 6628 | "url": "https://www.pexels.com/@cottonbro" 6629 | }, 6630 | "video_files": [ 6631 | { 6632 | "id": 9342658, 6633 | "quality": "sd", 6634 | "file_type": "video/mp4", 6635 | "width": 226, 6636 | "height": 426, 6637 | "fps": 25, 6638 | "link": "https://videos.pexels.com/video-files/4057410/4057410-sd_226_426_25fps.mp4", 6639 | "size": 1811156 6640 | }, 6641 | { 6642 | "id": 9342788, 6643 | "quality": "hd", 6644 | "file_type": "video/mp4", 6645 | "width": 1080, 6646 | "height": 2048, 6647 | "fps": 25, 6648 | "link": "https://videos.pexels.com/video-files/4057410/4057410-hd_1080_2048_25fps.mp4", 6649 | "size": 25527393 6650 | }, 6651 | { 6652 | "id": 9342891, 6653 | "quality": "sd", 6654 | "file_type": "video/mp4", 6655 | "width": 506, 6656 | "height": 960, 6657 | "fps": 25, 6658 | "link": "https://videos.pexels.com/video-files/4057410/4057410-sd_506_960_25fps.mp4", 6659 | "size": 6334945 6660 | }, 6661 | { 6662 | "id": 9343035, 6663 | "quality": "uhd", 6664 | "file_type": "video/mp4", 6665 | "width": 1440, 6666 | "height": 2732, 6667 | "fps": 25, 6668 | "link": "https://videos.pexels.com/video-files/4057410/4057410-uhd_1440_2732_25fps.mp4", 6669 | "size": 49309938 6670 | }, 6671 | { 6672 | "id": 9343165, 6673 | "quality": "uhd", 6674 | "file_type": "video/mp4", 6675 | "width": 2160, 6676 | "height": 4096, 6677 | "fps": 25, 6678 | "link": "https://videos.pexels.com/video-files/4057410/4057410-uhd_2160_4096_25fps.mp4", 6679 | "size": 129682373 6680 | }, 6681 | { 6682 | "id": 9343280, 6683 | "quality": "sd", 6684 | "file_type": "video/mp4", 6685 | "width": 338, 6686 | "height": 640, 6687 | "fps": 25, 6688 | "link": "https://videos.pexels.com/video-files/4057410/4057410-sd_338_640_25fps.mp4", 6689 | "size": 2940191 6690 | }, 6691 | { 6692 | "id": 9343433, 6693 | "quality": "hd", 6694 | "file_type": "video/mp4", 6695 | "width": 720, 6696 | "height": 1366, 6697 | "fps": 50, 6698 | "link": "https://videos.pexels.com/video-files/4057410/4057410-hd_720_1366_50fps.mp4", 6699 | "size": 12817532 6700 | } 6701 | ], 6702 | "video_pictures": [ 6703 | { 6704 | "id": 1106339, 6705 | "nr": 0, 6706 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-0.jpeg" 6707 | }, 6708 | { 6709 | "id": 1106348, 6710 | "nr": 1, 6711 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-1.jpeg" 6712 | }, 6713 | { 6714 | "id": 1106355, 6715 | "nr": 2, 6716 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-2.jpeg" 6717 | }, 6718 | { 6719 | "id": 1106362, 6720 | "nr": 3, 6721 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-3.jpeg" 6722 | }, 6723 | { 6724 | "id": 1106365, 6725 | "nr": 4, 6726 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-4.jpeg" 6727 | }, 6728 | { 6729 | "id": 1106370, 6730 | "nr": 5, 6731 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-5.jpeg" 6732 | }, 6733 | { 6734 | "id": 1106372, 6735 | "nr": 6, 6736 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-6.jpeg" 6737 | }, 6738 | { 6739 | "id": 1106374, 6740 | "nr": 7, 6741 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-7.jpeg" 6742 | }, 6743 | { 6744 | "id": 1106381, 6745 | "nr": 8, 6746 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-8.jpeg" 6747 | }, 6748 | { 6749 | "id": 1106383, 6750 | "nr": 9, 6751 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-9.jpeg" 6752 | }, 6753 | { 6754 | "id": 1106387, 6755 | "nr": 10, 6756 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-10.jpeg" 6757 | }, 6758 | { 6759 | "id": 1106402, 6760 | "nr": 11, 6761 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-11.jpeg" 6762 | }, 6763 | { 6764 | "id": 1106408, 6765 | "nr": 12, 6766 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-12.jpeg" 6767 | }, 6768 | { 6769 | "id": 1106410, 6770 | "nr": 13, 6771 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-13.jpeg" 6772 | }, 6773 | { 6774 | "id": 1106411, 6775 | "nr": 14, 6776 | "picture": "https://images.pexels.com/videos/4057410/pictures/preview-14.jpeg" 6777 | } 6778 | ] 6779 | }, 6780 | { 6781 | "id": 6825849, 6782 | "width": 2160, 6783 | "height": 3840, 6784 | "duration": 7, 6785 | "full_res": null, 6786 | "tags": [], 6787 | "url": "https://www.pexels.com/video/woman-petting-a-dog-in-a-bedroom-6825849/", 6788 | "image": "https://images.pexels.com/videos/6825849/at-home-book-reading-cozy-home-dog-6825849.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6789 | "avg_color": null, 6790 | "user": { 6791 | "id": 2278756, 6792 | "name": "Vlada Karpovich", 6793 | "url": "https://www.pexels.com/@vlada-karpovich" 6794 | }, 6795 | "video_files": [ 6796 | { 6797 | "id": 10193946, 6798 | "quality": "hd", 6799 | "file_type": "video/mp4", 6800 | "width": 720, 6801 | "height": 1280, 6802 | "fps": 50, 6803 | "link": "https://videos.pexels.com/video-files/6825849/6825849-hd_720_1280_50fps.mp4", 6804 | "size": 2178463 6805 | }, 6806 | { 6807 | "id": 10194044, 6808 | "quality": "uhd", 6809 | "file_type": "video/mp4", 6810 | "width": 1440, 6811 | "height": 2560, 6812 | "fps": 25, 6813 | "link": "https://videos.pexels.com/video-files/6825849/6825849-uhd_1440_2560_25fps.mp4", 6814 | "size": 10479593 6815 | }, 6816 | { 6817 | "id": 10194086, 6818 | "quality": "uhd", 6819 | "file_type": "video/mp4", 6820 | "width": 2160, 6821 | "height": 3840, 6822 | "fps": 25, 6823 | "link": "https://videos.pexels.com/video-files/6825849/6825849-uhd_2160_3840_25fps.mp4", 6824 | "size": 19564098 6825 | }, 6826 | { 6827 | "id": 10194144, 6828 | "quality": "sd", 6829 | "file_type": "video/mp4", 6830 | "width": 360, 6831 | "height": 640, 6832 | "fps": 25, 6833 | "link": "https://videos.pexels.com/video-files/6825849/6825849-sd_360_640_25fps.mp4", 6834 | "size": 430853 6835 | }, 6836 | { 6837 | "id": 10194227, 6838 | "quality": "hd", 6839 | "file_type": "video/mp4", 6840 | "width": 1080, 6841 | "height": 1920, 6842 | "fps": 25, 6843 | "link": "https://videos.pexels.com/video-files/6825849/6825849-hd_1080_1920_25fps.mp4", 6844 | "size": 4255026 6845 | }, 6846 | { 6847 | "id": 10194344, 6848 | "quality": "sd", 6849 | "file_type": "video/mp4", 6850 | "width": 540, 6851 | "height": 960, 6852 | "fps": 25, 6853 | "link": "https://videos.pexels.com/video-files/6825849/6825849-sd_540_960_25fps.mp4", 6854 | "size": 1274870 6855 | }, 6856 | { 6857 | "id": 10194419, 6858 | "quality": "sd", 6859 | "file_type": "video/mp4", 6860 | "width": 240, 6861 | "height": 426, 6862 | "fps": 25, 6863 | "link": "https://videos.pexels.com/video-files/6825849/6825849-sd_240_426_25fps.mp4", 6864 | "size": 263087 6865 | } 6866 | ], 6867 | "video_pictures": [ 6868 | { 6869 | "id": 5190297, 6870 | "nr": 0, 6871 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-0.jpeg" 6872 | }, 6873 | { 6874 | "id": 5190313, 6875 | "nr": 1, 6876 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-1.jpeg" 6877 | }, 6878 | { 6879 | "id": 5190334, 6880 | "nr": 2, 6881 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-2.jpeg" 6882 | }, 6883 | { 6884 | "id": 5190353, 6885 | "nr": 3, 6886 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-3.jpeg" 6887 | }, 6888 | { 6889 | "id": 5190377, 6890 | "nr": 4, 6891 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-4.jpeg" 6892 | }, 6893 | { 6894 | "id": 5190419, 6895 | "nr": 5, 6896 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-5.jpeg" 6897 | }, 6898 | { 6899 | "id": 5190446, 6900 | "nr": 6, 6901 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-6.jpeg" 6902 | }, 6903 | { 6904 | "id": 5190467, 6905 | "nr": 7, 6906 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-7.jpeg" 6907 | }, 6908 | { 6909 | "id": 5190488, 6910 | "nr": 8, 6911 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-8.jpeg" 6912 | }, 6913 | { 6914 | "id": 5190498, 6915 | "nr": 9, 6916 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-9.jpeg" 6917 | }, 6918 | { 6919 | "id": 5190508, 6920 | "nr": 10, 6921 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-10.jpeg" 6922 | }, 6923 | { 6924 | "id": 5190519, 6925 | "nr": 11, 6926 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-11.jpeg" 6927 | }, 6928 | { 6929 | "id": 5190531, 6930 | "nr": 12, 6931 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-12.jpeg" 6932 | }, 6933 | { 6934 | "id": 5190542, 6935 | "nr": 13, 6936 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-13.jpeg" 6937 | }, 6938 | { 6939 | "id": 5190560, 6940 | "nr": 14, 6941 | "picture": "https://images.pexels.com/videos/6825849/pictures/preview-14.jpeg" 6942 | } 6943 | ] 6944 | }, 6945 | { 6946 | "id": 5534286, 6947 | "width": 1080, 6948 | "height": 1920, 6949 | "duration": 5, 6950 | "full_res": null, 6951 | "tags": [], 6952 | "url": "https://www.pexels.com/video/a-dog-running-towards-the-camera-5534286/", 6953 | "image": "https://images.pexels.com/videos/5534286/pexels-photo-5534286.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 6954 | "avg_color": null, 6955 | "user": { 6956 | "id": 3684321, 6957 | "name": "Anna Bondarenko", 6958 | "url": "https://www.pexels.com/@aaa333" 6959 | }, 6960 | "video_files": [ 6961 | { 6962 | "id": 9727800, 6963 | "quality": "hd", 6964 | "file_type": "video/mp4", 6965 | "width": 1080, 6966 | "height": 1920, 6967 | "fps": 29.969999313354492, 6968 | "link": "https://videos.pexels.com/video-files/5534286/5534286-hd_1080_1920_30fps.mp4", 6969 | "size": 3212706 6970 | }, 6971 | { 6972 | "id": 9727853, 6973 | "quality": "hd", 6974 | "file_type": "video/mp4", 6975 | "width": 720, 6976 | "height": 1280, 6977 | "fps": 59.940101623535156, 6978 | "link": "https://videos.pexels.com/video-files/5534286/5534286-hd_720_1280_60fps.mp4", 6979 | "size": 1723665 6980 | }, 6981 | { 6982 | "id": 9727894, 6983 | "quality": "sd", 6984 | "file_type": "video/mp4", 6985 | "width": 240, 6986 | "height": 426, 6987 | "fps": 29.969999313354492, 6988 | "link": "https://videos.pexels.com/video-files/5534286/5534286-sd_240_426_30fps.mp4", 6989 | "size": 231325 6990 | }, 6991 | { 6992 | "id": 9727934, 6993 | "quality": "sd", 6994 | "file_type": "video/mp4", 6995 | "width": 540, 6996 | "height": 960, 6997 | "fps": 29.969999313354492, 6998 | "link": "https://videos.pexels.com/video-files/5534286/5534286-sd_540_960_30fps.mp4", 6999 | "size": 1083639 7000 | }, 7001 | { 7002 | "id": 9728021, 7003 | "quality": "sd", 7004 | "file_type": "video/mp4", 7005 | "width": 360, 7006 | "height": 640, 7007 | "fps": 29.969999313354492, 7008 | "link": "https://videos.pexels.com/video-files/5534286/5534286-sd_360_640_30fps.mp4", 7009 | "size": 393054 7010 | } 7011 | ], 7012 | "video_pictures": [ 7013 | { 7014 | "id": 2962764, 7015 | "nr": 0, 7016 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-0.jpeg" 7017 | }, 7018 | { 7019 | "id": 2962769, 7020 | "nr": 1, 7021 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-1.jpeg" 7022 | }, 7023 | { 7024 | "id": 2962771, 7025 | "nr": 2, 7026 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-2.jpeg" 7027 | }, 7028 | { 7029 | "id": 2962776, 7030 | "nr": 3, 7031 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-3.jpeg" 7032 | }, 7033 | { 7034 | "id": 2962780, 7035 | "nr": 4, 7036 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-4.jpeg" 7037 | }, 7038 | { 7039 | "id": 2962783, 7040 | "nr": 5, 7041 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-5.jpeg" 7042 | }, 7043 | { 7044 | "id": 2962787, 7045 | "nr": 6, 7046 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-6.jpeg" 7047 | }, 7048 | { 7049 | "id": 2962792, 7050 | "nr": 7, 7051 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-7.jpeg" 7052 | }, 7053 | { 7054 | "id": 2962795, 7055 | "nr": 8, 7056 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-8.jpeg" 7057 | }, 7058 | { 7059 | "id": 2962799, 7060 | "nr": 9, 7061 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-9.jpeg" 7062 | }, 7063 | { 7064 | "id": 2962804, 7065 | "nr": 10, 7066 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-10.jpeg" 7067 | }, 7068 | { 7069 | "id": 2962810, 7070 | "nr": 11, 7071 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-11.jpeg" 7072 | }, 7073 | { 7074 | "id": 2962813, 7075 | "nr": 12, 7076 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-12.jpeg" 7077 | }, 7078 | { 7079 | "id": 2962817, 7080 | "nr": 13, 7081 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-13.jpeg" 7082 | }, 7083 | { 7084 | "id": 2962821, 7085 | "nr": 14, 7086 | "picture": "https://images.pexels.com/videos/5534286/pictures/preview-14.jpeg" 7087 | } 7088 | ] 7089 | }, 7090 | { 7091 | "id": 5729477, 7092 | "width": 2160, 7093 | "height": 3840, 7094 | "duration": 14, 7095 | "full_res": null, 7096 | "tags": [], 7097 | "url": "https://www.pexels.com/video/dog-wearing-a-doctor-costume-5729477/", 7098 | "image": "https://images.pexels.com/videos/5729477/pexels-photo-5729477.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 7099 | "avg_color": null, 7100 | "user": { 7101 | "id": 3657919, 7102 | "name": "Sam Lion", 7103 | "url": "https://www.pexels.com/@sam-lion" 7104 | }, 7105 | "video_files": [ 7106 | { 7107 | "id": 9785612, 7108 | "quality": "sd", 7109 | "file_type": "video/mp4", 7110 | "width": 360, 7111 | "height": 640, 7112 | "fps": 23.97599983215332, 7113 | "link": "https://videos.pexels.com/video-files/5729477/5729477-sd_360_640_24fps.mp4", 7114 | "size": 1067495 7115 | }, 7116 | { 7117 | "id": 9785658, 7118 | "quality": "uhd", 7119 | "file_type": "video/mp4", 7120 | "width": 2160, 7121 | "height": 3840, 7122 | "fps": 23.97599983215332, 7123 | "link": "https://videos.pexels.com/video-files/5729477/5729477-uhd_2160_3840_24fps.mp4", 7124 | "size": 41029994 7125 | }, 7126 | { 7127 | "id": 9785804, 7128 | "quality": "hd", 7129 | "file_type": "video/mp4", 7130 | "width": 720, 7131 | "height": 1280, 7132 | "fps": 23.97599983215332, 7133 | "link": "https://videos.pexels.com/video-files/5729477/5729477-hd_720_1280_24fps.mp4", 7134 | "size": 4460165 7135 | }, 7136 | { 7137 | "id": 9785859, 7138 | "quality": "sd", 7139 | "file_type": "video/mp4", 7140 | "width": 240, 7141 | "height": 426, 7142 | "fps": 23.97599983215332, 7143 | "link": "https://videos.pexels.com/video-files/5729477/5729477-sd_240_426_24fps.mp4", 7144 | "size": 620136 7145 | }, 7146 | { 7147 | "id": 9786000, 7148 | "quality": "hd", 7149 | "file_type": "video/mp4", 7150 | "width": 1080, 7151 | "height": 1920, 7152 | "fps": 23.97599983215332, 7153 | "link": "https://videos.pexels.com/video-files/5729477/5729477-hd_1080_1920_24fps.mp4", 7154 | "size": 9041112 7155 | }, 7156 | { 7157 | "id": 9786095, 7158 | "quality": "uhd", 7159 | "file_type": "video/mp4", 7160 | "width": 1440, 7161 | "height": 2560, 7162 | "fps": 23.97599983215332, 7163 | "link": "https://videos.pexels.com/video-files/5729477/5729477-uhd_1440_2560_24fps.mp4", 7164 | "size": 18176387 7165 | }, 7166 | { 7167 | "id": 9786147, 7168 | "quality": "sd", 7169 | "file_type": "video/mp4", 7170 | "width": 540, 7171 | "height": 960, 7172 | "fps": 23.97599983215332, 7173 | "link": "https://videos.pexels.com/video-files/5729477/5729477-sd_540_960_24fps.mp4", 7174 | "size": 2617957 7175 | } 7176 | ], 7177 | "video_pictures": [ 7178 | { 7179 | "id": 3274060, 7180 | "nr": 0, 7181 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-0.jpeg" 7182 | }, 7183 | { 7184 | "id": 3274075, 7185 | "nr": 1, 7186 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-1.jpeg" 7187 | }, 7188 | { 7189 | "id": 3274094, 7190 | "nr": 2, 7191 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-2.jpeg" 7192 | }, 7193 | { 7194 | "id": 3274111, 7195 | "nr": 3, 7196 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-3.jpeg" 7197 | }, 7198 | { 7199 | "id": 3274128, 7200 | "nr": 4, 7201 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-4.jpeg" 7202 | }, 7203 | { 7204 | "id": 3274143, 7205 | "nr": 5, 7206 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-5.jpeg" 7207 | }, 7208 | { 7209 | "id": 3274161, 7210 | "nr": 6, 7211 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-6.jpeg" 7212 | }, 7213 | { 7214 | "id": 3274181, 7215 | "nr": 7, 7216 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-7.jpeg" 7217 | }, 7218 | { 7219 | "id": 3274194, 7220 | "nr": 8, 7221 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-8.jpeg" 7222 | }, 7223 | { 7224 | "id": 3274212, 7225 | "nr": 9, 7226 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-9.jpeg" 7227 | }, 7228 | { 7229 | "id": 3274226, 7230 | "nr": 10, 7231 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-10.jpeg" 7232 | }, 7233 | { 7234 | "id": 3274239, 7235 | "nr": 11, 7236 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-11.jpeg" 7237 | }, 7238 | { 7239 | "id": 3274254, 7240 | "nr": 12, 7241 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-12.jpeg" 7242 | }, 7243 | { 7244 | "id": 3274269, 7245 | "nr": 13, 7246 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-13.jpeg" 7247 | }, 7248 | { 7249 | "id": 3274282, 7250 | "nr": 14, 7251 | "picture": "https://images.pexels.com/videos/5729477/pictures/preview-14.jpeg" 7252 | } 7253 | ] 7254 | }, 7255 | { 7256 | "id": 5640917, 7257 | "width": 1080, 7258 | "height": 1920, 7259 | "duration": 37, 7260 | "full_res": null, 7261 | "tags": [], 7262 | "url": "https://www.pexels.com/video/an-adorable-white-dog-near-white-flowers-5640917/", 7263 | "image": "https://images.pexels.com/videos/5640917/pexels-photo-5640917.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 7264 | "avg_color": null, 7265 | "user": { 7266 | "id": 3684321, 7267 | "name": "Anna Bondarenko", 7268 | "url": "https://www.pexels.com/@aaa333" 7269 | }, 7270 | "video_files": [ 7271 | { 7272 | "id": 9757178, 7273 | "quality": "sd", 7274 | "file_type": "video/mp4", 7275 | "width": 240, 7276 | "height": 426, 7277 | "fps": 29.969999313354492, 7278 | "link": "https://videos.pexels.com/video-files/5640917/5640917-sd_240_426_30fps.mp4", 7279 | "size": 1776989 7280 | }, 7281 | { 7282 | "id": 9757240, 7283 | "quality": "sd", 7284 | "file_type": "video/mp4", 7285 | "width": 360, 7286 | "height": 640, 7287 | "fps": 29.969999313354492, 7288 | "link": "https://videos.pexels.com/video-files/5640917/5640917-sd_360_640_30fps.mp4", 7289 | "size": 2965689 7290 | }, 7291 | { 7292 | "id": 9757354, 7293 | "quality": "hd", 7294 | "file_type": "video/mp4", 7295 | "width": 720, 7296 | "height": 1280, 7297 | "fps": 29.969999313354492, 7298 | "link": "https://videos.pexels.com/video-files/5640917/5640917-hd_720_1280_30fps.mp4", 7299 | "size": 14211590 7300 | }, 7301 | { 7302 | "id": 9757410, 7303 | "quality": "hd", 7304 | "file_type": "video/mp4", 7305 | "width": 1080, 7306 | "height": 1920, 7307 | "fps": 29.969999313354492, 7308 | "link": "https://videos.pexels.com/video-files/5640917/5640917-hd_1080_1920_30fps.mp4", 7309 | "size": 27324769 7310 | }, 7311 | { 7312 | "id": 9757487, 7313 | "quality": "sd", 7314 | "file_type": "video/mp4", 7315 | "width": 540, 7316 | "height": 960, 7317 | "fps": 29.969999313354492, 7318 | "link": "https://videos.pexels.com/video-files/5640917/5640917-sd_540_960_30fps.mp4", 7319 | "size": 7781520 7320 | } 7321 | ], 7322 | "video_pictures": [ 7323 | { 7324 | "id": 3127908, 7325 | "nr": 0, 7326 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-0.jpeg" 7327 | }, 7328 | { 7329 | "id": 3127920, 7330 | "nr": 1, 7331 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-1.jpeg" 7332 | }, 7333 | { 7334 | "id": 3127942, 7335 | "nr": 2, 7336 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-2.jpeg" 7337 | }, 7338 | { 7339 | "id": 3127957, 7340 | "nr": 3, 7341 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-3.jpeg" 7342 | }, 7343 | { 7344 | "id": 3127972, 7345 | "nr": 4, 7346 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-4.jpeg" 7347 | }, 7348 | { 7349 | "id": 3127984, 7350 | "nr": 5, 7351 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-5.jpeg" 7352 | }, 7353 | { 7354 | "id": 3127996, 7355 | "nr": 6, 7356 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-6.jpeg" 7357 | }, 7358 | { 7359 | "id": 3128009, 7360 | "nr": 7, 7361 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-7.jpeg" 7362 | }, 7363 | { 7364 | "id": 3128023, 7365 | "nr": 8, 7366 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-8.jpeg" 7367 | }, 7368 | { 7369 | "id": 3128036, 7370 | "nr": 9, 7371 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-9.jpeg" 7372 | }, 7373 | { 7374 | "id": 3128045, 7375 | "nr": 10, 7376 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-10.jpeg" 7377 | }, 7378 | { 7379 | "id": 3128063, 7380 | "nr": 11, 7381 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-11.jpeg" 7382 | }, 7383 | { 7384 | "id": 3128077, 7385 | "nr": 12, 7386 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-12.jpeg" 7387 | }, 7388 | { 7389 | "id": 3128090, 7390 | "nr": 13, 7391 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-13.jpeg" 7392 | }, 7393 | { 7394 | "id": 3128101, 7395 | "nr": 14, 7396 | "picture": "https://images.pexels.com/videos/5640917/pictures/preview-14.jpeg" 7397 | } 7398 | ] 7399 | }, 7400 | { 7401 | "id": 4057400, 7402 | "width": 2160, 7403 | "height": 4096, 7404 | "duration": 16, 7405 | "full_res": null, 7406 | "tags": [], 7407 | "url": "https://www.pexels.com/video/woman-girl-animal-dog-4057400/", 7408 | "image": "https://images.pexels.com/videos/4057400/pexels-photo-4057400.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 7409 | "avg_color": null, 7410 | "user": { 7411 | "id": 1437723, 7412 | "name": "cottonbro studio", 7413 | "url": "https://www.pexels.com/@cottonbro" 7414 | }, 7415 | "video_files": [ 7416 | { 7417 | "id": 9343015, 7418 | "quality": "hd", 7419 | "file_type": "video/mp4", 7420 | "width": 720, 7421 | "height": 1366, 7422 | "fps": 50, 7423 | "link": "https://videos.pexels.com/video-files/4057400/4057400-hd_720_1366_50fps.mp4", 7424 | "size": 3105429 7425 | }, 7426 | { 7427 | "id": 9343087, 7428 | "quality": "sd", 7429 | "file_type": "video/mp4", 7430 | "width": 338, 7431 | "height": 640, 7432 | "fps": 25, 7433 | "link": "https://videos.pexels.com/video-files/4057400/4057400-sd_338_640_25fps.mp4", 7434 | "size": 821700 7435 | }, 7436 | { 7437 | "id": 9343197, 7438 | "quality": "uhd", 7439 | "file_type": "video/mp4", 7440 | "width": 2160, 7441 | "height": 4096, 7442 | "fps": 25, 7443 | "link": "https://videos.pexels.com/video-files/4057400/4057400-uhd_2160_4096_25fps.mp4", 7444 | "size": 23064292 7445 | }, 7446 | { 7447 | "id": 9343260, 7448 | "quality": "hd", 7449 | "file_type": "video/mp4", 7450 | "width": 1080, 7451 | "height": 2048, 7452 | "fps": 25, 7453 | "link": "https://videos.pexels.com/video-files/4057400/4057400-hd_1080_2048_25fps.mp4", 7454 | "size": 5739230 7455 | }, 7456 | { 7457 | "id": 9343360, 7458 | "quality": "sd", 7459 | "file_type": "video/mp4", 7460 | "width": 226, 7461 | "height": 426, 7462 | "fps": 25, 7463 | "link": "https://videos.pexels.com/video-files/4057400/4057400-sd_226_426_25fps.mp4", 7464 | "size": 469590 7465 | }, 7466 | { 7467 | "id": 9343528, 7468 | "quality": "sd", 7469 | "file_type": "video/mp4", 7470 | "width": 506, 7471 | "height": 960, 7472 | "fps": 25, 7473 | "link": "https://videos.pexels.com/video-files/4057400/4057400-sd_506_960_25fps.mp4", 7474 | "size": 1570770 7475 | }, 7476 | { 7477 | "id": 9343688, 7478 | "quality": "uhd", 7479 | "file_type": "video/mp4", 7480 | "width": 1440, 7481 | "height": 2732, 7482 | "fps": 25, 7483 | "link": "https://videos.pexels.com/video-files/4057400/4057400-uhd_1440_2732_25fps.mp4", 7484 | "size": 9442289 7485 | } 7486 | ], 7487 | "video_pictures": [ 7488 | { 7489 | "id": 1106302, 7490 | "nr": 0, 7491 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-0.jpeg" 7492 | }, 7493 | { 7494 | "id": 1106309, 7495 | "nr": 1, 7496 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-1.jpeg" 7497 | }, 7498 | { 7499 | "id": 1106314, 7500 | "nr": 2, 7501 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-2.jpeg" 7502 | }, 7503 | { 7504 | "id": 1106322, 7505 | "nr": 3, 7506 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-3.jpeg" 7507 | }, 7508 | { 7509 | "id": 1106325, 7510 | "nr": 4, 7511 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-4.jpeg" 7512 | }, 7513 | { 7514 | "id": 1106331, 7515 | "nr": 5, 7516 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-5.jpeg" 7517 | }, 7518 | { 7519 | "id": 1106336, 7520 | "nr": 6, 7521 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-6.jpeg" 7522 | }, 7523 | { 7524 | "id": 1106345, 7525 | "nr": 7, 7526 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-7.jpeg" 7527 | }, 7528 | { 7529 | "id": 1106352, 7530 | "nr": 8, 7531 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-8.jpeg" 7532 | }, 7533 | { 7534 | "id": 1106359, 7535 | "nr": 9, 7536 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-9.jpeg" 7537 | }, 7538 | { 7539 | "id": 1106366, 7540 | "nr": 10, 7541 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-10.jpeg" 7542 | }, 7543 | { 7544 | "id": 1106368, 7545 | "nr": 11, 7546 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-11.jpeg" 7547 | }, 7548 | { 7549 | "id": 1106371, 7550 | "nr": 12, 7551 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-12.jpeg" 7552 | }, 7553 | { 7554 | "id": 1106376, 7555 | "nr": 13, 7556 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-13.jpeg" 7557 | }, 7558 | { 7559 | "id": 1106380, 7560 | "nr": 14, 7561 | "picture": "https://images.pexels.com/videos/4057400/pictures/preview-14.jpeg" 7562 | } 7563 | ] 7564 | }, 7565 | { 7566 | "id": 2004175, 7567 | "width": 1536, 7568 | "height": 2208, 7569 | "duration": 7, 7570 | "full_res": null, 7571 | "tags": [], 7572 | "url": "https://www.pexels.com/video/iphone-smart-phone-2004175/", 7573 | "image": "https://images.pexels.com/videos/2004175/free-video-2004175.jpg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 7574 | "avg_color": null, 7575 | "user": { 7576 | "id": 26735, 7577 | "name": "Lisa from Pexels", 7578 | "url": "https://www.pexels.com/@fotios-photos" 7579 | }, 7580 | "video_files": [ 7581 | { 7582 | "id": 9353075, 7583 | "quality": "hd", 7584 | "file_type": "video/mp4", 7585 | "width": 1080, 7586 | "height": 1554, 7587 | "fps": 30, 7588 | "link": "https://videos.pexels.com/video-files/2004175/2004175-hd_1080_1554_30fps.mp4", 7589 | "size": 4070591 7590 | }, 7591 | { 7592 | "id": 9353156, 7593 | "quality": "uhd", 7594 | "file_type": "video/mp4", 7595 | "width": 1440, 7596 | "height": 2070, 7597 | "fps": 30, 7598 | "link": "https://videos.pexels.com/video-files/2004175/2004175-uhd_1440_2070_30fps.mp4", 7599 | "size": 9151407 7600 | }, 7601 | { 7602 | "id": 9353306, 7603 | "quality": "sd", 7604 | "file_type": "video/mp4", 7605 | "width": 540, 7606 | "height": 776, 7607 | "fps": 30, 7608 | "link": "https://videos.pexels.com/video-files/2004175/2004175-sd_540_776_30fps.mp4", 7609 | "size": 1148046 7610 | }, 7611 | { 7612 | "id": 9353454, 7613 | "quality": "sd", 7614 | "file_type": "video/mp4", 7615 | "width": 360, 7616 | "height": 518, 7617 | "fps": 30, 7618 | "link": "https://videos.pexels.com/video-files/2004175/2004175-sd_360_518_30fps.mp4", 7619 | "size": 495560 7620 | }, 7621 | { 7622 | "id": 9353556, 7623 | "quality": "hd", 7624 | "file_type": "video/mp4", 7625 | "width": 720, 7626 | "height": 1036, 7627 | "fps": 30, 7628 | "link": "https://videos.pexels.com/video-files/2004175/2004175-hd_720_1036_30fps.mp4", 7629 | "size": 1958500 7630 | } 7631 | ], 7632 | "video_pictures": [ 7633 | { 7634 | "id": 203551, 7635 | "nr": 0, 7636 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-0.jpeg" 7637 | }, 7638 | { 7639 | "id": 203552, 7640 | "nr": 1, 7641 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-1.jpeg" 7642 | }, 7643 | { 7644 | "id": 203553, 7645 | "nr": 2, 7646 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-2.jpeg" 7647 | }, 7648 | { 7649 | "id": 203554, 7650 | "nr": 3, 7651 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-3.jpeg" 7652 | }, 7653 | { 7654 | "id": 203555, 7655 | "nr": 4, 7656 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-4.jpeg" 7657 | }, 7658 | { 7659 | "id": 203556, 7660 | "nr": 5, 7661 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-5.jpeg" 7662 | }, 7663 | { 7664 | "id": 203557, 7665 | "nr": 6, 7666 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-6.jpeg" 7667 | }, 7668 | { 7669 | "id": 203558, 7670 | "nr": 7, 7671 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-7.jpeg" 7672 | }, 7673 | { 7674 | "id": 203559, 7675 | "nr": 8, 7676 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-8.jpeg" 7677 | }, 7678 | { 7679 | "id": 203560, 7680 | "nr": 9, 7681 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-9.jpeg" 7682 | }, 7683 | { 7684 | "id": 203561, 7685 | "nr": 10, 7686 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-10.jpeg" 7687 | }, 7688 | { 7689 | "id": 203562, 7690 | "nr": 11, 7691 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-11.jpeg" 7692 | }, 7693 | { 7694 | "id": 203563, 7695 | "nr": 12, 7696 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-12.jpeg" 7697 | }, 7698 | { 7699 | "id": 203564, 7700 | "nr": 13, 7701 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-13.jpeg" 7702 | }, 7703 | { 7704 | "id": 203565, 7705 | "nr": 14, 7706 | "picture": "https://images.pexels.com/videos/2004175/pictures/preview-14.jpeg" 7707 | } 7708 | ] 7709 | }, 7710 | { 7711 | "id": 5534298, 7712 | "width": 1080, 7713 | "height": 1920, 7714 | "duration": 8, 7715 | "full_res": null, 7716 | "tags": [], 7717 | "url": "https://www.pexels.com/video/person-carrying-a-puppy-5534298/", 7718 | "image": "https://images.pexels.com/videos/5534298/pexels-photo-5534298.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 7719 | "avg_color": null, 7720 | "user": { 7721 | "id": 3684321, 7722 | "name": "Anna Bondarenko", 7723 | "url": "https://www.pexels.com/@aaa333" 7724 | }, 7725 | "video_files": [ 7726 | { 7727 | "id": 9727871, 7728 | "quality": "sd", 7729 | "file_type": "video/mp4", 7730 | "width": 360, 7731 | "height": 640, 7732 | "fps": 30, 7733 | "link": "https://videos.pexels.com/video-files/5534298/5534298-sd_360_640_30fps.mp4", 7734 | "size": 576837 7735 | }, 7736 | { 7737 | "id": 9727903, 7738 | "quality": "sd", 7739 | "file_type": "video/mp4", 7740 | "width": 540, 7741 | "height": 960, 7742 | "fps": 30, 7743 | "link": "https://videos.pexels.com/video-files/5534298/5534298-sd_540_960_30fps.mp4", 7744 | "size": 1624881 7745 | }, 7746 | { 7747 | "id": 9727968, 7748 | "quality": "hd", 7749 | "file_type": "video/mp4", 7750 | "width": 720, 7751 | "height": 1280, 7752 | "fps": 30, 7753 | "link": "https://videos.pexels.com/video-files/5534298/5534298-hd_720_1280_30fps.mp4", 7754 | "size": 2647121 7755 | }, 7756 | { 7757 | "id": 9728117, 7758 | "quality": "hd", 7759 | "file_type": "video/mp4", 7760 | "width": 1080, 7761 | "height": 1920, 7762 | "fps": 30, 7763 | "link": "https://videos.pexels.com/video-files/5534298/5534298-hd_1080_1920_30fps.mp4", 7764 | "size": 5001325 7765 | }, 7766 | { 7767 | "id": 9728342, 7768 | "quality": "sd", 7769 | "file_type": "video/mp4", 7770 | "width": 240, 7771 | "height": 426, 7772 | "fps": 30, 7773 | "link": "https://videos.pexels.com/video-files/5534298/5534298-sd_240_426_30fps.mp4", 7774 | "size": 343216 7775 | } 7776 | ], 7777 | "video_pictures": [ 7778 | { 7779 | "id": 2963804, 7780 | "nr": 0, 7781 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-0.jpeg" 7782 | }, 7783 | { 7784 | "id": 2963806, 7785 | "nr": 1, 7786 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-1.jpeg" 7787 | }, 7788 | { 7789 | "id": 2963807, 7790 | "nr": 2, 7791 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-2.jpeg" 7792 | }, 7793 | { 7794 | "id": 2963808, 7795 | "nr": 3, 7796 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-3.jpeg" 7797 | }, 7798 | { 7799 | "id": 2963810, 7800 | "nr": 4, 7801 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-4.jpeg" 7802 | }, 7803 | { 7804 | "id": 2963811, 7805 | "nr": 5, 7806 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-5.jpeg" 7807 | }, 7808 | { 7809 | "id": 2963812, 7810 | "nr": 6, 7811 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-6.jpeg" 7812 | }, 7813 | { 7814 | "id": 2963814, 7815 | "nr": 7, 7816 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-7.jpeg" 7817 | }, 7818 | { 7819 | "id": 2963815, 7820 | "nr": 8, 7821 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-8.jpeg" 7822 | }, 7823 | { 7824 | "id": 2963816, 7825 | "nr": 9, 7826 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-9.jpeg" 7827 | }, 7828 | { 7829 | "id": 2963817, 7830 | "nr": 10, 7831 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-10.jpeg" 7832 | }, 7833 | { 7834 | "id": 2963818, 7835 | "nr": 11, 7836 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-11.jpeg" 7837 | }, 7838 | { 7839 | "id": 2963819, 7840 | "nr": 12, 7841 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-12.jpeg" 7842 | }, 7843 | { 7844 | "id": 2963823, 7845 | "nr": 13, 7846 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-13.jpeg" 7847 | }, 7848 | { 7849 | "id": 2963826, 7850 | "nr": 14, 7851 | "picture": "https://images.pexels.com/videos/5534298/pictures/preview-14.jpeg" 7852 | } 7853 | ] 7854 | }, 7855 | { 7856 | "id": 8473397, 7857 | "width": 1080, 7858 | "height": 1920, 7859 | "duration": 11, 7860 | "full_res": null, 7861 | "tags": [], 7862 | "url": "https://www.pexels.com/video/a-dog-standing-on-the-couch-8473397/", 7863 | "image": "https://images.pexels.com/videos/8473397/animal-canine-cute-dog-8473397.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 7864 | "avg_color": null, 7865 | "user": { 7866 | "id": 3716105, 7867 | "name": "Cup of Couple", 7868 | "url": "https://www.pexels.com/@cup-of-couple" 7869 | }, 7870 | "video_files": [ 7871 | { 7872 | "id": 10846802, 7873 | "quality": "hd", 7874 | "file_type": "video/mp4", 7875 | "width": 720, 7876 | "height": 1280, 7877 | "fps": 50, 7878 | "link": "https://videos.pexels.com/video-files/8473397/8473397-hd_720_1280_50fps.mp4", 7879 | "size": 2789548 7880 | }, 7881 | { 7882 | "id": 10846816, 7883 | "quality": "sd", 7884 | "file_type": "video/mp4", 7885 | "width": 540, 7886 | "height": 960, 7887 | "fps": 25, 7888 | "link": "https://videos.pexels.com/video-files/8473397/8473397-sd_540_960_25fps.mp4", 7889 | "size": 1363904 7890 | }, 7891 | { 7892 | "id": 10846832, 7893 | "quality": "sd", 7894 | "file_type": "video/mp4", 7895 | "width": 240, 7896 | "height": 426, 7897 | "fps": 25, 7898 | "link": "https://videos.pexels.com/video-files/8473397/8473397-sd_240_426_25fps.mp4", 7899 | "size": 449633 7900 | }, 7901 | { 7902 | "id": 10846844, 7903 | "quality": "hd", 7904 | "file_type": "video/mp4", 7905 | "width": 1080, 7906 | "height": 1920, 7907 | "fps": 25, 7908 | "link": "https://videos.pexels.com/video-files/8473397/8473397-hd_1080_1920_25fps.mp4", 7909 | "size": 4209681 7910 | }, 7911 | { 7912 | "id": 10846855, 7913 | "quality": "sd", 7914 | "file_type": "video/mp4", 7915 | "width": 360, 7916 | "height": 640, 7917 | "fps": 25, 7918 | "link": "https://videos.pexels.com/video-files/8473397/8473397-sd_360_640_25fps.mp4", 7919 | "size": 660590 7920 | } 7921 | ], 7922 | "video_pictures": [ 7923 | { 7924 | "id": 8308805, 7925 | "nr": 0, 7926 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-0.jpeg" 7927 | }, 7928 | { 7929 | "id": 8308817, 7930 | "nr": 1, 7931 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-1.jpeg" 7932 | }, 7933 | { 7934 | "id": 8308832, 7935 | "nr": 2, 7936 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-2.jpeg" 7937 | }, 7938 | { 7939 | "id": 8308850, 7940 | "nr": 3, 7941 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-3.jpeg" 7942 | }, 7943 | { 7944 | "id": 8308870, 7945 | "nr": 4, 7946 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-4.jpeg" 7947 | }, 7948 | { 7949 | "id": 8308889, 7950 | "nr": 5, 7951 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-5.jpeg" 7952 | }, 7953 | { 7954 | "id": 8308904, 7955 | "nr": 6, 7956 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-6.jpeg" 7957 | }, 7958 | { 7959 | "id": 8308925, 7960 | "nr": 7, 7961 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-7.jpeg" 7962 | }, 7963 | { 7964 | "id": 8308942, 7965 | "nr": 8, 7966 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-8.jpeg" 7967 | }, 7968 | { 7969 | "id": 8308964, 7970 | "nr": 9, 7971 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-9.jpeg" 7972 | }, 7973 | { 7974 | "id": 8308982, 7975 | "nr": 10, 7976 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-10.jpeg" 7977 | }, 7978 | { 7979 | "id": 8308994, 7980 | "nr": 11, 7981 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-11.jpeg" 7982 | }, 7983 | { 7984 | "id": 8309011, 7985 | "nr": 12, 7986 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-12.jpeg" 7987 | }, 7988 | { 7989 | "id": 8309025, 7990 | "nr": 13, 7991 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-13.jpeg" 7992 | }, 7993 | { 7994 | "id": 8309042, 7995 | "nr": 14, 7996 | "picture": "https://images.pexels.com/videos/8473397/pictures/preview-14.jpeg" 7997 | } 7998 | ] 7999 | }, 8000 | { 8001 | "id": 5640916, 8002 | "width": 1080, 8003 | "height": 1920, 8004 | "duration": 11, 8005 | "full_res": null, 8006 | "tags": [], 8007 | "url": "https://www.pexels.com/video/an-adorable-white-dog-barking-5640916/", 8008 | "image": "https://images.pexels.com/videos/5640916/pexels-photo-5640916.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8009 | "avg_color": null, 8010 | "user": { 8011 | "id": 3684321, 8012 | "name": "Anna Bondarenko", 8013 | "url": "https://www.pexels.com/@aaa333" 8014 | }, 8015 | "video_files": [ 8016 | { 8017 | "id": 9759049, 8018 | "quality": "sd", 8019 | "file_type": "video/mp4", 8020 | "width": 360, 8021 | "height": 640, 8022 | "fps": 29.969999313354492, 8023 | "link": "https://videos.pexels.com/video-files/5640916/5640916-sd_360_640_30fps.mp4", 8024 | "size": 816938 8025 | }, 8026 | { 8027 | "id": 9759239, 8028 | "quality": "hd", 8029 | "file_type": "video/mp4", 8030 | "width": 1080, 8031 | "height": 1920, 8032 | "fps": 29.969999313354492, 8033 | "link": "https://videos.pexels.com/video-files/5640916/5640916-hd_1080_1920_30fps.mp4", 8034 | "size": 6950077 8035 | }, 8036 | { 8037 | "id": 9759323, 8038 | "quality": "sd", 8039 | "file_type": "video/mp4", 8040 | "width": 240, 8041 | "height": 426, 8042 | "fps": 29.969999313354492, 8043 | "link": "https://videos.pexels.com/video-files/5640916/5640916-sd_240_426_30fps.mp4", 8044 | "size": 484933 8045 | }, 8046 | { 8047 | "id": 9759371, 8048 | "quality": "hd", 8049 | "file_type": "video/mp4", 8050 | "width": 720, 8051 | "height": 1280, 8052 | "fps": 29.969999313354492, 8053 | "link": "https://videos.pexels.com/video-files/5640916/5640916-hd_720_1280_30fps.mp4", 8054 | "size": 3773137 8055 | }, 8056 | { 8057 | "id": 9759492, 8058 | "quality": "sd", 8059 | "file_type": "video/mp4", 8060 | "width": 540, 8061 | "height": 960, 8062 | "fps": 29.969999313354492, 8063 | "link": "https://videos.pexels.com/video-files/5640916/5640916-sd_540_960_30fps.mp4", 8064 | "size": 2044314 8065 | } 8066 | ], 8067 | "video_pictures": [ 8068 | { 8069 | "id": 3127904, 8070 | "nr": 0, 8071 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-0.jpeg" 8072 | }, 8073 | { 8074 | "id": 3127923, 8075 | "nr": 1, 8076 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-1.jpeg" 8077 | }, 8078 | { 8079 | "id": 3127938, 8080 | "nr": 2, 8081 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-2.jpeg" 8082 | }, 8083 | { 8084 | "id": 3127951, 8085 | "nr": 3, 8086 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-3.jpeg" 8087 | }, 8088 | { 8089 | "id": 3127966, 8090 | "nr": 4, 8091 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-4.jpeg" 8092 | }, 8093 | { 8094 | "id": 3127981, 8095 | "nr": 5, 8096 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-5.jpeg" 8097 | }, 8098 | { 8099 | "id": 3127993, 8100 | "nr": 6, 8101 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-6.jpeg" 8102 | }, 8103 | { 8104 | "id": 3128005, 8105 | "nr": 7, 8106 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-7.jpeg" 8107 | }, 8108 | { 8109 | "id": 3128022, 8110 | "nr": 8, 8111 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-8.jpeg" 8112 | }, 8113 | { 8114 | "id": 3128038, 8115 | "nr": 9, 8116 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-9.jpeg" 8117 | }, 8118 | { 8119 | "id": 3128053, 8120 | "nr": 10, 8121 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-10.jpeg" 8122 | }, 8123 | { 8124 | "id": 3128067, 8125 | "nr": 11, 8126 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-11.jpeg" 8127 | }, 8128 | { 8129 | "id": 3128079, 8130 | "nr": 12, 8131 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-12.jpeg" 8132 | }, 8133 | { 8134 | "id": 3128089, 8135 | "nr": 13, 8136 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-13.jpeg" 8137 | }, 8138 | { 8139 | "id": 3128102, 8140 | "nr": 14, 8141 | "picture": "https://images.pexels.com/videos/5640916/pictures/preview-14.jpeg" 8142 | } 8143 | ] 8144 | }, 8145 | { 8146 | "id": 5994137, 8147 | "width": 2160, 8148 | "height": 4096, 8149 | "duration": 23, 8150 | "full_res": null, 8151 | "tags": [], 8152 | "url": "https://www.pexels.com/video/a-cute-dog-sleeping-5994137/", 8153 | "image": "https://images.pexels.com/videos/5994137/dog-sleeping-5994137.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8154 | "avg_color": null, 8155 | "user": { 8156 | "id": 2332540, 8157 | "name": "Photo By: Kaboompics.com", 8158 | "url": "https://www.pexels.com/@karolina-grabowska" 8159 | }, 8160 | "video_files": [ 8161 | { 8162 | "id": 9886211, 8163 | "quality": "sd", 8164 | "file_type": "video/mp4", 8165 | "width": 506, 8166 | "height": 960, 8167 | "fps": 25, 8168 | "link": "https://videos.pexels.com/video-files/5994137/5994137-sd_506_960_25fps.mp4", 8169 | "size": 1785506 8170 | }, 8171 | { 8172 | "id": 9886305, 8173 | "quality": "hd", 8174 | "file_type": "video/mp4", 8175 | "width": 720, 8176 | "height": 1366, 8177 | "fps": 25, 8178 | "link": "https://videos.pexels.com/video-files/5994137/5994137-hd_720_1366_25fps.mp4", 8179 | "size": 3419261 8180 | }, 8181 | { 8182 | "id": 9886444, 8183 | "quality": "hd", 8184 | "file_type": "video/mp4", 8185 | "width": 1080, 8186 | "height": 2048, 8187 | "fps": 25, 8188 | "link": "https://videos.pexels.com/video-files/5994137/5994137-hd_1080_2048_25fps.mp4", 8189 | "size": 7528313 8190 | }, 8191 | { 8192 | "id": 9886627, 8193 | "quality": "uhd", 8194 | "file_type": "video/mp4", 8195 | "width": 2160, 8196 | "height": 4096, 8197 | "fps": 25, 8198 | "link": "https://videos.pexels.com/video-files/5994137/5994137-uhd_2160_4096_25fps.mp4", 8199 | "size": 29658588 8200 | }, 8201 | { 8202 | "id": 9886711, 8203 | "quality": "sd", 8204 | "file_type": "video/mp4", 8205 | "width": 226, 8206 | "height": 426, 8207 | "fps": 25, 8208 | "link": "https://videos.pexels.com/video-files/5994137/5994137-sd_226_426_25fps.mp4", 8209 | "size": 533394 8210 | }, 8211 | { 8212 | "id": 9886849, 8213 | "quality": "uhd", 8214 | "file_type": "video/mp4", 8215 | "width": 1440, 8216 | "height": 2732, 8217 | "fps": 25, 8218 | "link": "https://videos.pexels.com/video-files/5994137/5994137-uhd_1440_2732_25fps.mp4", 8219 | "size": 12971786 8220 | }, 8221 | { 8222 | "id": 9887062, 8223 | "quality": "sd", 8224 | "file_type": "video/mp4", 8225 | "width": 338, 8226 | "height": 640, 8227 | "fps": 25, 8228 | "link": "https://videos.pexels.com/video-files/5994137/5994137-sd_338_640_25fps.mp4", 8229 | "size": 884906 8230 | } 8231 | ], 8232 | "video_pictures": [ 8233 | { 8234 | "id": 3738541, 8235 | "nr": 0, 8236 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-0.jpeg" 8237 | }, 8238 | { 8239 | "id": 3738544, 8240 | "nr": 1, 8241 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-1.jpeg" 8242 | }, 8243 | { 8244 | "id": 3738546, 8245 | "nr": 2, 8246 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-2.jpeg" 8247 | }, 8248 | { 8249 | "id": 3738548, 8250 | "nr": 3, 8251 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-3.jpeg" 8252 | }, 8253 | { 8254 | "id": 3738551, 8255 | "nr": 4, 8256 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-4.jpeg" 8257 | }, 8258 | { 8259 | "id": 3738552, 8260 | "nr": 5, 8261 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-5.jpeg" 8262 | }, 8263 | { 8264 | "id": 3738555, 8265 | "nr": 6, 8266 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-6.jpeg" 8267 | }, 8268 | { 8269 | "id": 3738558, 8270 | "nr": 7, 8271 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-7.jpeg" 8272 | }, 8273 | { 8274 | "id": 3738563, 8275 | "nr": 8, 8276 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-8.jpeg" 8277 | }, 8278 | { 8279 | "id": 3738567, 8280 | "nr": 9, 8281 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-9.jpeg" 8282 | }, 8283 | { 8284 | "id": 3738569, 8285 | "nr": 10, 8286 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-10.jpeg" 8287 | }, 8288 | { 8289 | "id": 3738574, 8290 | "nr": 11, 8291 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-11.jpeg" 8292 | }, 8293 | { 8294 | "id": 3738578, 8295 | "nr": 12, 8296 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-12.jpeg" 8297 | }, 8298 | { 8299 | "id": 3738582, 8300 | "nr": 13, 8301 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-13.jpeg" 8302 | }, 8303 | { 8304 | "id": 3738586, 8305 | "nr": 14, 8306 | "picture": "https://images.pexels.com/videos/5994137/pictures/preview-14.jpeg" 8307 | } 8308 | ] 8309 | }, 8310 | { 8311 | "id": 4057409, 8312 | "width": 2160, 8313 | "height": 4096, 8314 | "duration": 48, 8315 | "full_res": null, 8316 | "tags": [], 8317 | "url": "https://www.pexels.com/video/woman-girl-animal-dog-4057409/", 8318 | "image": "https://images.pexels.com/videos/4057409/pexels-photo-4057409.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8319 | "avg_color": null, 8320 | "user": { 8321 | "id": 1437723, 8322 | "name": "cottonbro studio", 8323 | "url": "https://www.pexels.com/@cottonbro" 8324 | }, 8325 | "video_files": [ 8326 | { 8327 | "id": 9343220, 8328 | "quality": "uhd", 8329 | "file_type": "video/mp4", 8330 | "width": 1440, 8331 | "height": 2732, 8332 | "fps": 25, 8333 | "link": "https://videos.pexels.com/video-files/4057409/4057409-uhd_1440_2732_25fps.mp4", 8334 | "size": 23545172 8335 | }, 8336 | { 8337 | "id": 9343263, 8338 | "quality": "uhd", 8339 | "file_type": "video/mp4", 8340 | "width": 2160, 8341 | "height": 4096, 8342 | "fps": 25, 8343 | "link": "https://videos.pexels.com/video-files/4057409/4057409-uhd_2160_4096_25fps.mp4", 8344 | "size": 63603379 8345 | }, 8346 | { 8347 | "id": 9343282, 8348 | "quality": "sd", 8349 | "file_type": "video/mp4", 8350 | "width": 506, 8351 | "height": 960, 8352 | "fps": 25, 8353 | "link": "https://videos.pexels.com/video-files/4057409/4057409-sd_506_960_25fps.mp4", 8354 | "size": 4111164 8355 | }, 8356 | { 8357 | "id": 9343341, 8358 | "quality": "sd", 8359 | "file_type": "video/mp4", 8360 | "width": 338, 8361 | "height": 640, 8362 | "fps": 25, 8363 | "link": "https://videos.pexels.com/video-files/4057409/4057409-sd_338_640_25fps.mp4", 8364 | "size": 2245826 8365 | }, 8366 | { 8367 | "id": 9343474, 8368 | "quality": "sd", 8369 | "file_type": "video/mp4", 8370 | "width": 226, 8371 | "height": 426, 8372 | "fps": 25, 8373 | "link": "https://videos.pexels.com/video-files/4057409/4057409-sd_226_426_25fps.mp4", 8374 | "size": 1279526 8375 | }, 8376 | { 8377 | "id": 9343583, 8378 | "quality": "hd", 8379 | "file_type": "video/mp4", 8380 | "width": 1080, 8381 | "height": 2048, 8382 | "fps": 25, 8383 | "link": "https://videos.pexels.com/video-files/4057409/4057409-hd_1080_2048_25fps.mp4", 8384 | "size": 14342487 8385 | }, 8386 | { 8387 | "id": 9343685, 8388 | "quality": "hd", 8389 | "file_type": "video/mp4", 8390 | "width": 720, 8391 | "height": 1366, 8392 | "fps": 50, 8393 | "link": "https://videos.pexels.com/video-files/4057409/4057409-hd_720_1366_50fps.mp4", 8394 | "size": 8112852 8395 | } 8396 | ], 8397 | "video_pictures": [ 8398 | { 8399 | "id": 1106391, 8400 | "nr": 0, 8401 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-0.jpeg" 8402 | }, 8403 | { 8404 | "id": 1106396, 8405 | "nr": 1, 8406 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-1.jpeg" 8407 | }, 8408 | { 8409 | "id": 1106398, 8410 | "nr": 2, 8411 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-2.jpeg" 8412 | }, 8413 | { 8414 | "id": 1106403, 8415 | "nr": 3, 8416 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-3.jpeg" 8417 | }, 8418 | { 8419 | "id": 1106415, 8420 | "nr": 4, 8421 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-4.jpeg" 8422 | }, 8423 | { 8424 | "id": 1106418, 8425 | "nr": 5, 8426 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-5.jpeg" 8427 | }, 8428 | { 8429 | "id": 1106422, 8430 | "nr": 6, 8431 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-6.jpeg" 8432 | }, 8433 | { 8434 | "id": 1106425, 8435 | "nr": 7, 8436 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-7.jpeg" 8437 | }, 8438 | { 8439 | "id": 1106428, 8440 | "nr": 8, 8441 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-8.jpeg" 8442 | }, 8443 | { 8444 | "id": 1106431, 8445 | "nr": 9, 8446 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-9.jpeg" 8447 | }, 8448 | { 8449 | "id": 1106435, 8450 | "nr": 10, 8451 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-10.jpeg" 8452 | }, 8453 | { 8454 | "id": 1106438, 8455 | "nr": 11, 8456 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-11.jpeg" 8457 | }, 8458 | { 8459 | "id": 1106440, 8460 | "nr": 12, 8461 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-12.jpeg" 8462 | }, 8463 | { 8464 | "id": 1106443, 8465 | "nr": 13, 8466 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-13.jpeg" 8467 | }, 8468 | { 8469 | "id": 1106445, 8470 | "nr": 14, 8471 | "picture": "https://images.pexels.com/videos/4057409/pictures/preview-14.jpeg" 8472 | } 8473 | ] 8474 | }, 8475 | { 8476 | "id": 4056266, 8477 | "width": 1080, 8478 | "height": 1920, 8479 | "duration": 55, 8480 | "full_res": null, 8481 | "tags": [], 8482 | "url": "https://www.pexels.com/video/mini-pinscher-4056266/", 8483 | "image": "https://images.pexels.com/videos/4056266/mini-pinscher-4056266.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8484 | "avg_color": null, 8485 | "user": { 8486 | "id": 442288, 8487 | "name": "David A Landry", 8488 | "url": "https://www.pexels.com/@david-a-landry-442288" 8489 | }, 8490 | "video_files": [ 8491 | { 8492 | "id": 9364426, 8493 | "quality": "hd", 8494 | "file_type": "video/mp4", 8495 | "width": 1080, 8496 | "height": 1920, 8497 | "fps": 30, 8498 | "link": "https://videos.pexels.com/video-files/4056266/4056266-hd_1080_1920_30fps.mp4", 8499 | "size": 37236851 8500 | }, 8501 | { 8502 | "id": 9364460, 8503 | "quality": "sd", 8504 | "file_type": "video/mp4", 8505 | "width": 360, 8506 | "height": 640, 8507 | "fps": 30, 8508 | "link": "https://videos.pexels.com/video-files/4056266/4056266-sd_360_640_30fps.mp4", 8509 | "size": 4207038 8510 | }, 8511 | { 8512 | "id": 9364500, 8513 | "quality": "sd", 8514 | "file_type": "video/mp4", 8515 | "width": 240, 8516 | "height": 426, 8517 | "fps": 30, 8518 | "link": "https://videos.pexels.com/video-files/4056266/4056266-sd_240_426_30fps.mp4", 8519 | "size": 2504586 8520 | }, 8521 | { 8522 | "id": 9364527, 8523 | "quality": "hd", 8524 | "file_type": "video/mp4", 8525 | "width": 720, 8526 | "height": 1280, 8527 | "fps": 30, 8528 | "link": "https://videos.pexels.com/video-files/4056266/4056266-hd_720_1280_30fps.mp4", 8529 | "size": 20103536 8530 | }, 8531 | { 8532 | "id": 9364557, 8533 | "quality": "sd", 8534 | "file_type": "video/mp4", 8535 | "width": 540, 8536 | "height": 960, 8537 | "fps": 30, 8538 | "link": "https://videos.pexels.com/video-files/4056266/4056266-sd_540_960_30fps.mp4", 8539 | "size": 11235472 8540 | } 8541 | ], 8542 | "video_pictures": [ 8543 | { 8544 | "id": 1104980, 8545 | "nr": 0, 8546 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-0.jpeg" 8547 | }, 8548 | { 8549 | "id": 1104981, 8550 | "nr": 1, 8551 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-1.jpeg" 8552 | }, 8553 | { 8554 | "id": 1104982, 8555 | "nr": 2, 8556 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-2.jpeg" 8557 | }, 8558 | { 8559 | "id": 1104983, 8560 | "nr": 3, 8561 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-3.jpeg" 8562 | }, 8563 | { 8564 | "id": 1104984, 8565 | "nr": 4, 8566 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-4.jpeg" 8567 | }, 8568 | { 8569 | "id": 1104985, 8570 | "nr": 5, 8571 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-5.jpeg" 8572 | }, 8573 | { 8574 | "id": 1104986, 8575 | "nr": 6, 8576 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-6.jpeg" 8577 | }, 8578 | { 8579 | "id": 1104987, 8580 | "nr": 7, 8581 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-7.jpeg" 8582 | }, 8583 | { 8584 | "id": 1104988, 8585 | "nr": 8, 8586 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-8.jpeg" 8587 | }, 8588 | { 8589 | "id": 1104989, 8590 | "nr": 9, 8591 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-9.jpeg" 8592 | }, 8593 | { 8594 | "id": 1104990, 8595 | "nr": 10, 8596 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-10.jpeg" 8597 | }, 8598 | { 8599 | "id": 1104991, 8600 | "nr": 11, 8601 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-11.jpeg" 8602 | }, 8603 | { 8604 | "id": 1104992, 8605 | "nr": 12, 8606 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-12.jpeg" 8607 | }, 8608 | { 8609 | "id": 1104993, 8610 | "nr": 13, 8611 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-13.jpeg" 8612 | }, 8613 | { 8614 | "id": 1104994, 8615 | "nr": 14, 8616 | "picture": "https://images.pexels.com/videos/4056266/pictures/preview-14.jpeg" 8617 | } 8618 | ] 8619 | }, 8620 | { 8621 | "id": 5279819, 8622 | "width": 1080, 8623 | "height": 1920, 8624 | "duration": 16, 8625 | "full_res": null, 8626 | "tags": [], 8627 | "url": "https://www.pexels.com/video/a-brown-dog-resting-while-leaning-on-a-wooden-post-5279819/", 8628 | "image": "https://images.pexels.com/videos/5279819/a-dogs-life-animals-beach-dog-big-dog-5279819.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8629 | "avg_color": null, 8630 | "user": { 8631 | "id": 2071672, 8632 | "name": "Peggy Anke", 8633 | "url": "https://www.pexels.com/@reisefreiheit" 8634 | }, 8635 | "video_files": [ 8636 | { 8637 | "id": 9658245, 8638 | "quality": "sd", 8639 | "file_type": "video/mp4", 8640 | "width": 540, 8641 | "height": 960, 8642 | "fps": 29.969999313354492, 8643 | "link": "https://videos.pexels.com/video-files/5279819/5279819-sd_540_960_30fps.mp4", 8644 | "size": 3194304 8645 | }, 8646 | { 8647 | "id": 9658255, 8648 | "quality": "hd", 8649 | "file_type": "video/mp4", 8650 | "width": 1080, 8651 | "height": 1920, 8652 | "fps": 29.969999313354492, 8653 | "link": "https://videos.pexels.com/video-files/5279819/5279819-hd_1080_1920_30fps.mp4", 8654 | "size": 10245151 8655 | }, 8656 | { 8657 | "id": 9658283, 8658 | "quality": "sd", 8659 | "file_type": "video/mp4", 8660 | "width": 240, 8661 | "height": 426, 8662 | "fps": 29.969999313354492, 8663 | "link": "https://videos.pexels.com/video-files/5279819/5279819-sd_240_426_30fps.mp4", 8664 | "size": 747105 8665 | }, 8666 | { 8667 | "id": 9658309, 8668 | "quality": "sd", 8669 | "file_type": "video/mp4", 8670 | "width": 360, 8671 | "height": 640, 8672 | "fps": 29.969999313354492, 8673 | "link": "https://videos.pexels.com/video-files/5279819/5279819-sd_360_640_30fps.mp4", 8674 | "size": 1221480 8675 | }, 8676 | { 8677 | "id": 9658334, 8678 | "quality": "hd", 8679 | "file_type": "video/mp4", 8680 | "width": 720, 8681 | "height": 1280, 8682 | "fps": 29.969999313354492, 8683 | "link": "https://videos.pexels.com/video-files/5279819/5279819-hd_720_1280_30fps.mp4", 8684 | "size": 5726669 8685 | } 8686 | ], 8687 | "video_pictures": [ 8688 | { 8689 | "id": 2590391, 8690 | "nr": 0, 8691 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-0.jpeg" 8692 | }, 8693 | { 8694 | "id": 2590394, 8695 | "nr": 1, 8696 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-1.jpeg" 8697 | }, 8698 | { 8699 | "id": 2590399, 8700 | "nr": 2, 8701 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-2.jpeg" 8702 | }, 8703 | { 8704 | "id": 2590401, 8705 | "nr": 3, 8706 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-3.jpeg" 8707 | }, 8708 | { 8709 | "id": 2590405, 8710 | "nr": 4, 8711 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-4.jpeg" 8712 | }, 8713 | { 8714 | "id": 2590406, 8715 | "nr": 5, 8716 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-5.jpeg" 8717 | }, 8718 | { 8719 | "id": 2590408, 8720 | "nr": 6, 8721 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-6.jpeg" 8722 | }, 8723 | { 8724 | "id": 2590410, 8725 | "nr": 7, 8726 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-7.jpeg" 8727 | }, 8728 | { 8729 | "id": 2590412, 8730 | "nr": 8, 8731 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-8.jpeg" 8732 | }, 8733 | { 8734 | "id": 2590416, 8735 | "nr": 9, 8736 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-9.jpeg" 8737 | }, 8738 | { 8739 | "id": 2590421, 8740 | "nr": 10, 8741 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-10.jpeg" 8742 | }, 8743 | { 8744 | "id": 2590430, 8745 | "nr": 11, 8746 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-11.jpeg" 8747 | }, 8748 | { 8749 | "id": 2590436, 8750 | "nr": 12, 8751 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-12.jpeg" 8752 | }, 8753 | { 8754 | "id": 2590437, 8755 | "nr": 13, 8756 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-13.jpeg" 8757 | }, 8758 | { 8759 | "id": 2590438, 8760 | "nr": 14, 8761 | "picture": "https://images.pexels.com/videos/5279819/pictures/preview-14.jpeg" 8762 | } 8763 | ] 8764 | }, 8765 | { 8766 | "id": 5877810, 8767 | "width": 1080, 8768 | "height": 1920, 8769 | "duration": 7, 8770 | "full_res": null, 8771 | "tags": [], 8772 | "url": "https://www.pexels.com/video/puppy-on-a-bench-5877810/", 8773 | "image": "https://images.pexels.com/videos/5877810/pexels-photo-5877810.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8774 | "avg_color": null, 8775 | "user": { 8776 | "id": 3684321, 8777 | "name": "Anna Bondarenko", 8778 | "url": "https://www.pexels.com/@aaa333" 8779 | }, 8780 | "video_files": [ 8781 | { 8782 | "id": 9840058, 8783 | "quality": "hd", 8784 | "file_type": "video/mp4", 8785 | "width": 1080, 8786 | "height": 1920, 8787 | "fps": 29.969999313354492, 8788 | "link": "https://videos.pexels.com/video-files/5877810/5877810-hd_1080_1920_30fps.mp4", 8789 | "size": 4036428 8790 | }, 8791 | { 8792 | "id": 9840100, 8793 | "quality": "sd", 8794 | "file_type": "video/mp4", 8795 | "width": 240, 8796 | "height": 426, 8797 | "fps": 29.969999313354492, 8798 | "link": "https://videos.pexels.com/video-files/5877810/5877810-sd_240_426_30fps.mp4", 8799 | "size": 288131 8800 | }, 8801 | { 8802 | "id": 9840156, 8803 | "quality": "sd", 8804 | "file_type": "video/mp4", 8805 | "width": 360, 8806 | "height": 640, 8807 | "fps": 29.969999313354492, 8808 | "link": "https://videos.pexels.com/video-files/5877810/5877810-sd_360_640_30fps.mp4", 8809 | "size": 491009 8810 | }, 8811 | { 8812 | "id": 9840186, 8813 | "quality": "hd", 8814 | "file_type": "video/mp4", 8815 | "width": 720, 8816 | "height": 1280, 8817 | "fps": 29.969999313354492, 8818 | "link": "https://videos.pexels.com/video-files/5877810/5877810-hd_720_1280_30fps.mp4", 8819 | "size": 2123168 8820 | }, 8821 | { 8822 | "id": 9840270, 8823 | "quality": "sd", 8824 | "file_type": "video/mp4", 8825 | "width": 540, 8826 | "height": 960, 8827 | "fps": 29.969999313354492, 8828 | "link": "https://videos.pexels.com/video-files/5877810/5877810-sd_540_960_30fps.mp4", 8829 | "size": 1341193 8830 | } 8831 | ], 8832 | "video_pictures": [ 8833 | { 8834 | "id": 3509788, 8835 | "nr": 0, 8836 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-0.jpeg" 8837 | }, 8838 | { 8839 | "id": 3509791, 8840 | "nr": 1, 8841 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-1.jpeg" 8842 | }, 8843 | { 8844 | "id": 3509794, 8845 | "nr": 2, 8846 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-2.jpeg" 8847 | }, 8848 | { 8849 | "id": 3509797, 8850 | "nr": 3, 8851 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-3.jpeg" 8852 | }, 8853 | { 8854 | "id": 3509802, 8855 | "nr": 4, 8856 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-4.jpeg" 8857 | }, 8858 | { 8859 | "id": 3509808, 8860 | "nr": 5, 8861 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-5.jpeg" 8862 | }, 8863 | { 8864 | "id": 3509815, 8865 | "nr": 6, 8866 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-6.jpeg" 8867 | }, 8868 | { 8869 | "id": 3509821, 8870 | "nr": 7, 8871 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-7.jpeg" 8872 | }, 8873 | { 8874 | "id": 3509828, 8875 | "nr": 8, 8876 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-8.jpeg" 8877 | }, 8878 | { 8879 | "id": 3509832, 8880 | "nr": 9, 8881 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-9.jpeg" 8882 | }, 8883 | { 8884 | "id": 3509837, 8885 | "nr": 10, 8886 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-10.jpeg" 8887 | }, 8888 | { 8889 | "id": 3509852, 8890 | "nr": 11, 8891 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-11.jpeg" 8892 | }, 8893 | { 8894 | "id": 3509857, 8895 | "nr": 12, 8896 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-12.jpeg" 8897 | }, 8898 | { 8899 | "id": 3509861, 8900 | "nr": 13, 8901 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-13.jpeg" 8902 | }, 8903 | { 8904 | "id": 3509864, 8905 | "nr": 14, 8906 | "picture": "https://images.pexels.com/videos/5877810/pictures/preview-14.jpeg" 8907 | } 8908 | ] 8909 | }, 8910 | { 8911 | "id": 7515921, 8912 | "width": 1080, 8913 | "height": 1920, 8914 | "duration": 17, 8915 | "full_res": null, 8916 | "tags": [], 8917 | "url": "https://www.pexels.com/video/a-cute-puppy-jumping-7515921/", 8918 | "image": "https://images.pexels.com/videos/7515921/adult-animal-baby-dog-beach-7515921.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 8919 | "avg_color": null, 8920 | "user": { 8921 | "id": 3149039, 8922 | "name": "RDNE Stock project", 8923 | "url": "https://www.pexels.com/@rdne" 8924 | }, 8925 | "video_files": [ 8926 | { 8927 | "id": 10456275, 8928 | "quality": "sd", 8929 | "file_type": "video/mp4", 8930 | "width": 240, 8931 | "height": 426, 8932 | "fps": 30, 8933 | "link": "https://videos.pexels.com/video-files/7515921/7515921-sd_240_426_30fps.mp4", 8934 | "size": 722178 8935 | }, 8936 | { 8937 | "id": 10456370, 8938 | "quality": "hd", 8939 | "file_type": "video/mp4", 8940 | "width": 1080, 8941 | "height": 1920, 8942 | "fps": 30, 8943 | "link": "https://videos.pexels.com/video-files/7515921/7515921-hd_1080_1920_30fps.mp4", 8944 | "size": 9321886 8945 | }, 8946 | { 8947 | "id": 10456445, 8948 | "quality": "sd", 8949 | "file_type": "video/mp4", 8950 | "width": 360, 8951 | "height": 640, 8952 | "fps": 30, 8953 | "link": "https://videos.pexels.com/video-files/7515921/7515921-sd_360_640_30fps.mp4", 8954 | "size": 1083096 8955 | }, 8956 | { 8957 | "id": 10456516, 8958 | "quality": "sd", 8959 | "file_type": "video/mp4", 8960 | "width": 540, 8961 | "height": 960, 8962 | "fps": 30, 8963 | "link": "https://videos.pexels.com/video-files/7515921/7515921-sd_540_960_30fps.mp4", 8964 | "size": 2490424 8965 | }, 8966 | { 8967 | "id": 10456551, 8968 | "quality": "hd", 8969 | "file_type": "video/mp4", 8970 | "width": 720, 8971 | "height": 1280, 8972 | "fps": 30, 8973 | "link": "https://videos.pexels.com/video-files/7515921/7515921-hd_720_1280_30fps.mp4", 8974 | "size": 4371054 8975 | } 8976 | ], 8977 | "video_pictures": [ 8978 | { 8979 | "id": 6528551, 8980 | "nr": 0, 8981 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-0.jpeg" 8982 | }, 8983 | { 8984 | "id": 6528555, 8985 | "nr": 1, 8986 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-1.jpeg" 8987 | }, 8988 | { 8989 | "id": 6528557, 8990 | "nr": 2, 8991 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-2.jpeg" 8992 | }, 8993 | { 8994 | "id": 6528563, 8995 | "nr": 3, 8996 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-3.jpeg" 8997 | }, 8998 | { 8999 | "id": 6528566, 9000 | "nr": 4, 9001 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-4.jpeg" 9002 | }, 9003 | { 9004 | "id": 6528571, 9005 | "nr": 5, 9006 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-5.jpeg" 9007 | }, 9008 | { 9009 | "id": 6528577, 9010 | "nr": 6, 9011 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-6.jpeg" 9012 | }, 9013 | { 9014 | "id": 6528584, 9015 | "nr": 7, 9016 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-7.jpeg" 9017 | }, 9018 | { 9019 | "id": 6528592, 9020 | "nr": 8, 9021 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-8.jpeg" 9022 | }, 9023 | { 9024 | "id": 6528604, 9025 | "nr": 9, 9026 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-9.jpeg" 9027 | }, 9028 | { 9029 | "id": 6528611, 9030 | "nr": 10, 9031 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-10.jpeg" 9032 | }, 9033 | { 9034 | "id": 6528618, 9035 | "nr": 11, 9036 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-11.jpeg" 9037 | }, 9038 | { 9039 | "id": 6528624, 9040 | "nr": 12, 9041 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-12.jpeg" 9042 | }, 9043 | { 9044 | "id": 6528630, 9045 | "nr": 13, 9046 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-13.jpeg" 9047 | }, 9048 | { 9049 | "id": 6528635, 9050 | "nr": 14, 9051 | "picture": "https://images.pexels.com/videos/7515921/pictures/preview-14.jpeg" 9052 | } 9053 | ] 9054 | }, 9055 | { 9056 | "id": 7516719, 9057 | "width": 1080, 9058 | "height": 1920, 9059 | "duration": 21, 9060 | "full_res": null, 9061 | "tags": [], 9062 | "url": "https://www.pexels.com/video/woman-playing-with-a-dog-7516719/", 9063 | "image": "https://images.pexels.com/videos/7516719/baby-dog-big-cat-black-dog-brown-dog-7516719.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9064 | "avg_color": null, 9065 | "user": { 9066 | "id": 3149039, 9067 | "name": "RDNE Stock project", 9068 | "url": "https://www.pexels.com/@rdne" 9069 | }, 9070 | "video_files": [ 9071 | { 9072 | "id": 10457195, 9073 | "quality": "sd", 9074 | "file_type": "video/mp4", 9075 | "width": 540, 9076 | "height": 960, 9077 | "fps": 30, 9078 | "link": "https://videos.pexels.com/video-files/7516719/7516719-sd_540_960_30fps.mp4", 9079 | "size": 4070478 9080 | }, 9081 | { 9082 | "id": 10457283, 9083 | "quality": "sd", 9084 | "file_type": "video/mp4", 9085 | "width": 360, 9086 | "height": 640, 9087 | "fps": 30, 9088 | "link": "https://videos.pexels.com/video-files/7516719/7516719-sd_360_640_30fps.mp4", 9089 | "size": 1433524 9090 | }, 9091 | { 9092 | "id": 10457390, 9093 | "quality": "sd", 9094 | "file_type": "video/mp4", 9095 | "width": 240, 9096 | "height": 426, 9097 | "fps": 30, 9098 | "link": "https://videos.pexels.com/video-files/7516719/7516719-sd_240_426_30fps.mp4", 9099 | "size": 909922 9100 | }, 9101 | { 9102 | "id": 10457483, 9103 | "quality": "hd", 9104 | "file_type": "video/mp4", 9105 | "width": 1080, 9106 | "height": 1920, 9107 | "fps": 30, 9108 | "link": "https://videos.pexels.com/video-files/7516719/7516719-hd_1080_1920_30fps.mp4", 9109 | "size": 15007949 9110 | }, 9111 | { 9112 | "id": 10457572, 9113 | "quality": "hd", 9114 | "file_type": "video/mp4", 9115 | "width": 720, 9116 | "height": 1280, 9117 | "fps": 30, 9118 | "link": "https://videos.pexels.com/video-files/7516719/7516719-hd_720_1280_30fps.mp4", 9119 | "size": 7498413 9120 | } 9121 | ], 9122 | "video_pictures": [ 9123 | { 9124 | "id": 6529715, 9125 | "nr": 0, 9126 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-0.jpeg" 9127 | }, 9128 | { 9129 | "id": 6529718, 9130 | "nr": 1, 9131 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-1.jpeg" 9132 | }, 9133 | { 9134 | "id": 6529730, 9135 | "nr": 2, 9136 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-2.jpeg" 9137 | }, 9138 | { 9139 | "id": 6529734, 9140 | "nr": 3, 9141 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-3.jpeg" 9142 | }, 9143 | { 9144 | "id": 6529738, 9145 | "nr": 4, 9146 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-4.jpeg" 9147 | }, 9148 | { 9149 | "id": 6529742, 9150 | "nr": 5, 9151 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-5.jpeg" 9152 | }, 9153 | { 9154 | "id": 6529746, 9155 | "nr": 6, 9156 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-6.jpeg" 9157 | }, 9158 | { 9159 | "id": 6529749, 9160 | "nr": 7, 9161 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-7.jpeg" 9162 | }, 9163 | { 9164 | "id": 6529758, 9165 | "nr": 8, 9166 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-8.jpeg" 9167 | }, 9168 | { 9169 | "id": 6529759, 9170 | "nr": 9, 9171 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-9.jpeg" 9172 | }, 9173 | { 9174 | "id": 6529760, 9175 | "nr": 10, 9176 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-10.jpeg" 9177 | }, 9178 | { 9179 | "id": 6529761, 9180 | "nr": 11, 9181 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-11.jpeg" 9182 | }, 9183 | { 9184 | "id": 6529762, 9185 | "nr": 12, 9186 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-12.jpeg" 9187 | }, 9188 | { 9189 | "id": 6529763, 9190 | "nr": 13, 9191 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-13.jpeg" 9192 | }, 9193 | { 9194 | "id": 6529764, 9195 | "nr": 14, 9196 | "picture": "https://images.pexels.com/videos/7516719/pictures/preview-14.jpeg" 9197 | } 9198 | ] 9199 | }, 9200 | { 9201 | "id": 5877839, 9202 | "width": 1080, 9203 | "height": 1920, 9204 | "duration": 3, 9205 | "full_res": null, 9206 | "tags": [], 9207 | "url": "https://www.pexels.com/video/puppy-in-the-garden-5877839/", 9208 | "image": "https://images.pexels.com/videos/5877839/cute-dog-fashionable-dog-5877839.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9209 | "avg_color": null, 9210 | "user": { 9211 | "id": 3684321, 9212 | "name": "Anna Bondarenko", 9213 | "url": "https://www.pexels.com/@aaa333" 9214 | }, 9215 | "video_files": [ 9216 | { 9217 | "id": 9840625, 9218 | "quality": "sd", 9219 | "file_type": "video/mp4", 9220 | "width": 540, 9221 | "height": 960, 9222 | "fps": 29.969999313354492, 9223 | "link": "https://videos.pexels.com/video-files/5877839/5877839-sd_540_960_30fps.mp4", 9224 | "size": 552274 9225 | }, 9226 | { 9227 | "id": 9840824, 9228 | "quality": "hd", 9229 | "file_type": "video/mp4", 9230 | "width": 1080, 9231 | "height": 1920, 9232 | "fps": 29.969999313354492, 9233 | "link": "https://videos.pexels.com/video-files/5877839/5877839-hd_1080_1920_30fps.mp4", 9234 | "size": 1630978 9235 | }, 9236 | { 9237 | "id": 9841063, 9238 | "quality": "sd", 9239 | "file_type": "video/mp4", 9240 | "width": 240, 9241 | "height": 426, 9242 | "fps": 29.969999313354492, 9243 | "link": "https://videos.pexels.com/video-files/5877839/5877839-sd_240_426_30fps.mp4", 9244 | "size": 121628 9245 | }, 9246 | { 9247 | "id": 9841423, 9248 | "quality": "sd", 9249 | "file_type": "video/mp4", 9250 | "width": 360, 9251 | "height": 640, 9252 | "fps": 29.969999313354492, 9253 | "link": "https://videos.pexels.com/video-files/5877839/5877839-sd_360_640_30fps.mp4", 9254 | "size": 196255 9255 | }, 9256 | { 9257 | "id": 9841761, 9258 | "quality": "hd", 9259 | "file_type": "video/mp4", 9260 | "width": 720, 9261 | "height": 1280, 9262 | "fps": 29.969999313354492, 9263 | "link": "https://videos.pexels.com/video-files/5877839/5877839-hd_720_1280_30fps.mp4", 9264 | "size": 870930 9265 | } 9266 | ], 9267 | "video_pictures": [ 9268 | { 9269 | "id": 3509769, 9270 | "nr": 0, 9271 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-0.jpeg" 9272 | }, 9273 | { 9274 | "id": 3509774, 9275 | "nr": 1, 9276 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-1.jpeg" 9277 | }, 9278 | { 9279 | "id": 3509778, 9280 | "nr": 2, 9281 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-2.jpeg" 9282 | }, 9283 | { 9284 | "id": 3509782, 9285 | "nr": 3, 9286 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-3.jpeg" 9287 | }, 9288 | { 9289 | "id": 3509784, 9290 | "nr": 4, 9291 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-4.jpeg" 9292 | }, 9293 | { 9294 | "id": 3509787, 9295 | "nr": 5, 9296 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-5.jpeg" 9297 | }, 9298 | { 9299 | "id": 3509790, 9300 | "nr": 6, 9301 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-6.jpeg" 9302 | }, 9303 | { 9304 | "id": 3509793, 9305 | "nr": 7, 9306 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-7.jpeg" 9307 | }, 9308 | { 9309 | "id": 3509795, 9310 | "nr": 8, 9311 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-8.jpeg" 9312 | }, 9313 | { 9314 | "id": 3509799, 9315 | "nr": 9, 9316 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-9.jpeg" 9317 | }, 9318 | { 9319 | "id": 3509805, 9320 | "nr": 10, 9321 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-10.jpeg" 9322 | }, 9323 | { 9324 | "id": 3509810, 9325 | "nr": 11, 9326 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-11.jpeg" 9327 | }, 9328 | { 9329 | "id": 3509814, 9330 | "nr": 12, 9331 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-12.jpeg" 9332 | }, 9333 | { 9334 | "id": 3509819, 9335 | "nr": 13, 9336 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-13.jpeg" 9337 | }, 9338 | { 9339 | "id": 3509825, 9340 | "nr": 14, 9341 | "picture": "https://images.pexels.com/videos/5877839/pictures/preview-14.jpeg" 9342 | } 9343 | ] 9344 | }, 9345 | { 9346 | "id": 5877842, 9347 | "width": 1080, 9348 | "height": 1920, 9349 | "duration": 2, 9350 | "full_res": null, 9351 | "tags": [], 9352 | "url": "https://www.pexels.com/video/puppy-in-the-garden-5877842/", 9353 | "image": "https://images.pexels.com/videos/5877842/cute-dog-fashionable-dog-pomeranian-5877842.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9354 | "avg_color": null, 9355 | "user": { 9356 | "id": 3684321, 9357 | "name": "Anna Bondarenko", 9358 | "url": "https://www.pexels.com/@aaa333" 9359 | }, 9360 | "video_files": [ 9361 | { 9362 | "id": 9840691, 9363 | "quality": "sd", 9364 | "file_type": "video/mp4", 9365 | "width": 540, 9366 | "height": 960, 9367 | "fps": 29.969999313354492, 9368 | "link": "https://videos.pexels.com/video-files/5877842/5877842-sd_540_960_30fps.mp4", 9369 | "size": 482959 9370 | }, 9371 | { 9372 | "id": 9841015, 9373 | "quality": "sd", 9374 | "file_type": "video/mp4", 9375 | "width": 240, 9376 | "height": 426, 9377 | "fps": 29.969999313354492, 9378 | "link": "https://videos.pexels.com/video-files/5877842/5877842-sd_240_426_30fps.mp4", 9379 | "size": 108006 9380 | }, 9381 | { 9382 | "id": 9841359, 9383 | "quality": "hd", 9384 | "file_type": "video/mp4", 9385 | "width": 720, 9386 | "height": 1280, 9387 | "fps": 29.969999313354492, 9388 | "link": "https://videos.pexels.com/video-files/5877842/5877842-hd_720_1280_30fps.mp4", 9389 | "size": 744548 9390 | }, 9391 | { 9392 | "id": 9841850, 9393 | "quality": "hd", 9394 | "file_type": "video/mp4", 9395 | "width": 1080, 9396 | "height": 1920, 9397 | "fps": 29.969999313354492, 9398 | "link": "https://videos.pexels.com/video-files/5877842/5877842-hd_1080_1920_30fps.mp4", 9399 | "size": 1433404 9400 | }, 9401 | { 9402 | "id": 9842103, 9403 | "quality": "sd", 9404 | "file_type": "video/mp4", 9405 | "width": 360, 9406 | "height": 640, 9407 | "fps": 29.969999313354492, 9408 | "link": "https://videos.pexels.com/video-files/5877842/5877842-sd_360_640_30fps.mp4", 9409 | "size": 173852 9410 | } 9411 | ], 9412 | "video_pictures": [ 9413 | { 9414 | "id": 3509689, 9415 | "nr": 0, 9416 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-0.jpeg" 9417 | }, 9418 | { 9419 | "id": 3509695, 9420 | "nr": 1, 9421 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-1.jpeg" 9422 | }, 9423 | { 9424 | "id": 3509700, 9425 | "nr": 2, 9426 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-2.jpeg" 9427 | }, 9428 | { 9429 | "id": 3509706, 9430 | "nr": 3, 9431 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-3.jpeg" 9432 | }, 9433 | { 9434 | "id": 3509710, 9435 | "nr": 4, 9436 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-4.jpeg" 9437 | }, 9438 | { 9439 | "id": 3509715, 9440 | "nr": 5, 9441 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-5.jpeg" 9442 | }, 9443 | { 9444 | "id": 3509719, 9445 | "nr": 6, 9446 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-6.jpeg" 9447 | }, 9448 | { 9449 | "id": 3509726, 9450 | "nr": 7, 9451 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-7.jpeg" 9452 | }, 9453 | { 9454 | "id": 3509730, 9455 | "nr": 8, 9456 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-8.jpeg" 9457 | }, 9458 | { 9459 | "id": 3509737, 9460 | "nr": 9, 9461 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-9.jpeg" 9462 | }, 9463 | { 9464 | "id": 3509743, 9465 | "nr": 10, 9466 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-10.jpeg" 9467 | }, 9468 | { 9469 | "id": 3509750, 9470 | "nr": 11, 9471 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-11.jpeg" 9472 | }, 9473 | { 9474 | "id": 3509754, 9475 | "nr": 12, 9476 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-12.jpeg" 9477 | }, 9478 | { 9479 | "id": 3509761, 9480 | "nr": 13, 9481 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-13.jpeg" 9482 | }, 9483 | { 9484 | "id": 3509767, 9485 | "nr": 14, 9486 | "picture": "https://images.pexels.com/videos/5877842/pictures/preview-14.jpeg" 9487 | } 9488 | ] 9489 | }, 9490 | { 9491 | "id": 7197702, 9492 | "width": 2160, 9493 | "height": 3840, 9494 | "duration": 13, 9495 | "full_res": null, 9496 | "tags": [], 9497 | "url": "https://www.pexels.com/video/woman-playing-with-two-pet-dogs-7197702/", 9498 | "image": "https://images.pexels.com/videos/7197702/pexels-photo-7197702.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9499 | "avg_color": null, 9500 | "user": { 9501 | "id": 33201670, 9502 | "name": "Blue Bird", 9503 | "url": "https://www.pexels.com/@blue-bird" 9504 | }, 9505 | "video_files": [ 9506 | { 9507 | "id": 10339693, 9508 | "quality": "hd", 9509 | "file_type": "video/mp4", 9510 | "width": 720, 9511 | "height": 1280, 9512 | "fps": 50, 9513 | "link": "https://videos.pexels.com/video-files/7197702/7197702-hd_720_1280_50fps.mp4", 9514 | "size": 4193578 9515 | }, 9516 | { 9517 | "id": 10339728, 9518 | "quality": "uhd", 9519 | "file_type": "video/mp4", 9520 | "width": 2160, 9521 | "height": 3840, 9522 | "fps": 25, 9523 | "link": "https://videos.pexels.com/video-files/7197702/7197702-uhd_2160_3840_25fps.mp4", 9524 | "size": 33853413 9525 | }, 9526 | { 9527 | "id": 10339762, 9528 | "quality": "sd", 9529 | "file_type": "video/mp4", 9530 | "width": 360, 9531 | "height": 640, 9532 | "fps": 25, 9533 | "link": "https://videos.pexels.com/video-files/7197702/7197702-sd_360_640_25fps.mp4", 9534 | "size": 895212 9535 | }, 9536 | { 9537 | "id": 10339812, 9538 | "quality": "hd", 9539 | "file_type": "video/mp4", 9540 | "width": 1080, 9541 | "height": 1920, 9542 | "fps": 25, 9543 | "link": "https://videos.pexels.com/video-files/7197702/7197702-hd_1080_1920_25fps.mp4", 9544 | "size": 9266572 9545 | }, 9546 | { 9547 | "id": 10339844, 9548 | "quality": "uhd", 9549 | "file_type": "video/mp4", 9550 | "width": 1440, 9551 | "height": 2560, 9552 | "fps": 25, 9553 | "link": "https://videos.pexels.com/video-files/7197702/7197702-uhd_1440_2560_25fps.mp4", 9554 | "size": 16763832 9555 | }, 9556 | { 9557 | "id": 10339879, 9558 | "quality": "sd", 9559 | "file_type": "video/mp4", 9560 | "width": 240, 9561 | "height": 426, 9562 | "fps": 25, 9563 | "link": "https://videos.pexels.com/video-files/7197702/7197702-sd_240_426_25fps.mp4", 9564 | "size": 574079 9565 | }, 9566 | { 9567 | "id": 10339901, 9568 | "quality": "sd", 9569 | "file_type": "video/mp4", 9570 | "width": 540, 9571 | "height": 960, 9572 | "fps": 25, 9573 | "link": "https://videos.pexels.com/video-files/7197702/7197702-sd_540_960_25fps.mp4", 9574 | "size": 2516740 9575 | } 9576 | ], 9577 | "video_pictures": [ 9578 | { 9579 | "id": 5935629, 9580 | "nr": 0, 9581 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-0.jpeg" 9582 | }, 9583 | { 9584 | "id": 5935649, 9585 | "nr": 1, 9586 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-1.jpeg" 9587 | }, 9588 | { 9589 | "id": 5935681, 9590 | "nr": 2, 9591 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-2.jpeg" 9592 | }, 9593 | { 9594 | "id": 5935705, 9595 | "nr": 3, 9596 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-3.jpeg" 9597 | }, 9598 | { 9599 | "id": 5935748, 9600 | "nr": 4, 9601 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-4.jpeg" 9602 | }, 9603 | { 9604 | "id": 5935771, 9605 | "nr": 5, 9606 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-5.jpeg" 9607 | }, 9608 | { 9609 | "id": 5935805, 9610 | "nr": 6, 9611 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-6.jpeg" 9612 | }, 9613 | { 9614 | "id": 5935838, 9615 | "nr": 7, 9616 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-7.jpeg" 9617 | }, 9618 | { 9619 | "id": 5935876, 9620 | "nr": 8, 9621 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-8.jpeg" 9622 | }, 9623 | { 9624 | "id": 5935896, 9625 | "nr": 9, 9626 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-9.jpeg" 9627 | }, 9628 | { 9629 | "id": 5935924, 9630 | "nr": 10, 9631 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-10.jpeg" 9632 | }, 9633 | { 9634 | "id": 5935947, 9635 | "nr": 11, 9636 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-11.jpeg" 9637 | }, 9638 | { 9639 | "id": 5935976, 9640 | "nr": 12, 9641 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-12.jpeg" 9642 | }, 9643 | { 9644 | "id": 5935989, 9645 | "nr": 13, 9646 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-13.jpeg" 9647 | }, 9648 | { 9649 | "id": 5936022, 9650 | "nr": 14, 9651 | "picture": "https://images.pexels.com/videos/7197702/pictures/preview-14.jpeg" 9652 | } 9653 | ] 9654 | }, 9655 | { 9656 | "id": 5501734, 9657 | "width": 2160, 9658 | "height": 3840, 9659 | "duration": 15, 9660 | "full_res": null, 9661 | "tags": [], 9662 | "url": "https://www.pexels.com/video/a-person-petting-her-dog-5501734/", 9663 | "image": "https://images.pexels.com/videos/5501734/autumn-be-happy-boxes-brewing-coffee-5501734.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9664 | "avg_color": null, 9665 | "user": { 9666 | "id": 2441340, 9667 | "name": "Anastasia Shuraeva", 9668 | "url": "https://www.pexels.com/@anastasia-shuraeva" 9669 | }, 9670 | "video_files": [ 9671 | { 9672 | "id": 9716034, 9673 | "quality": "sd", 9674 | "file_type": "video/mp4", 9675 | "width": 240, 9676 | "height": 426, 9677 | "fps": 24, 9678 | "link": "https://videos.pexels.com/video-files/5501734/5501734-sd_240_426_24fps.mp4", 9679 | "size": 437150 9680 | }, 9681 | { 9682 | "id": 9716226, 9683 | "quality": "hd", 9684 | "file_type": "video/mp4", 9685 | "width": 720, 9686 | "height": 1280, 9687 | "fps": 24, 9688 | "link": "https://videos.pexels.com/video-files/5501734/5501734-hd_720_1280_24fps.mp4", 9689 | "size": 2953948 9690 | }, 9691 | { 9692 | "id": 9716499, 9693 | "quality": "uhd", 9694 | "file_type": "video/mp4", 9695 | "width": 2160, 9696 | "height": 3840, 9697 | "fps": 24, 9698 | "link": "https://videos.pexels.com/video-files/5501734/5501734-uhd_2160_3840_24fps.mp4", 9699 | "size": 41301863 9700 | }, 9701 | { 9702 | "id": 9716536, 9703 | "quality": "hd", 9704 | "file_type": "video/mp4", 9705 | "width": 1080, 9706 | "height": 1920, 9707 | "fps": 24, 9708 | "link": "https://videos.pexels.com/video-files/5501734/5501734-hd_1080_1920_24fps.mp4", 9709 | "size": 7106899 9710 | }, 9711 | { 9712 | "id": 9716668, 9713 | "quality": "uhd", 9714 | "file_type": "video/mp4", 9715 | "width": 1440, 9716 | "height": 2560, 9717 | "fps": 24, 9718 | "link": "https://videos.pexels.com/video-files/5501734/5501734-uhd_1440_2560_24fps.mp4", 9719 | "size": 14355156 9720 | }, 9721 | { 9722 | "id": 9716806, 9723 | "quality": "sd", 9724 | "file_type": "video/mp4", 9725 | "width": 360, 9726 | "height": 640, 9727 | "fps": 24, 9728 | "link": "https://videos.pexels.com/video-files/5501734/5501734-sd_360_640_24fps.mp4", 9729 | "size": 847500 9730 | }, 9731 | { 9732 | "id": 9716909, 9733 | "quality": "sd", 9734 | "file_type": "video/mp4", 9735 | "width": 540, 9736 | "height": 960, 9737 | "fps": 24, 9738 | "link": "https://videos.pexels.com/video-files/5501734/5501734-sd_540_960_24fps.mp4", 9739 | "size": 1773083 9740 | } 9741 | ], 9742 | "video_pictures": [ 9743 | { 9744 | "id": 2919045, 9745 | "nr": 0, 9746 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-0.jpeg" 9747 | }, 9748 | { 9749 | "id": 2919048, 9750 | "nr": 1, 9751 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-1.jpeg" 9752 | }, 9753 | { 9754 | "id": 2919055, 9755 | "nr": 2, 9756 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-2.jpeg" 9757 | }, 9758 | { 9759 | "id": 2919062, 9760 | "nr": 3, 9761 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-3.jpeg" 9762 | }, 9763 | { 9764 | "id": 2919070, 9765 | "nr": 4, 9766 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-4.jpeg" 9767 | }, 9768 | { 9769 | "id": 2919076, 9770 | "nr": 5, 9771 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-5.jpeg" 9772 | }, 9773 | { 9774 | "id": 2919085, 9775 | "nr": 6, 9776 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-6.jpeg" 9777 | }, 9778 | { 9779 | "id": 2919103, 9780 | "nr": 7, 9781 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-7.jpeg" 9782 | }, 9783 | { 9784 | "id": 2919117, 9785 | "nr": 8, 9786 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-8.jpeg" 9787 | }, 9788 | { 9789 | "id": 2919133, 9790 | "nr": 9, 9791 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-9.jpeg" 9792 | }, 9793 | { 9794 | "id": 2919148, 9795 | "nr": 10, 9796 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-10.jpeg" 9797 | }, 9798 | { 9799 | "id": 2919160, 9800 | "nr": 11, 9801 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-11.jpeg" 9802 | }, 9803 | { 9804 | "id": 2919172, 9805 | "nr": 12, 9806 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-12.jpeg" 9807 | }, 9808 | { 9809 | "id": 2919181, 9810 | "nr": 13, 9811 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-13.jpeg" 9812 | }, 9813 | { 9814 | "id": 2919193, 9815 | "nr": 14, 9816 | "picture": "https://images.pexels.com/videos/5501734/pictures/preview-14.jpeg" 9817 | } 9818 | ] 9819 | }, 9820 | { 9821 | "id": 7515910, 9822 | "width": 1080, 9823 | "height": 1920, 9824 | "duration": 12, 9825 | "full_res": null, 9826 | "tags": [], 9827 | "url": "https://www.pexels.com/video/a-dog-with-red-sunglasses-7515910/", 9828 | "image": "https://images.pexels.com/videos/7515910/animal-baby-dog-beach-big-cat-7515910.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9829 | "avg_color": null, 9830 | "user": { 9831 | "id": 3149039, 9832 | "name": "RDNE Stock project", 9833 | "url": "https://www.pexels.com/@rdne" 9834 | }, 9835 | "video_files": [ 9836 | { 9837 | "id": 10456131, 9838 | "quality": "hd", 9839 | "file_type": "video/mp4", 9840 | "width": 720, 9841 | "height": 1280, 9842 | "fps": 30, 9843 | "link": "https://videos.pexels.com/video-files/7515910/7515910-hd_720_1280_30fps.mp4", 9844 | "size": 2290870 9845 | }, 9846 | { 9847 | "id": 10456148, 9848 | "quality": "hd", 9849 | "file_type": "video/mp4", 9850 | "width": 1080, 9851 | "height": 1920, 9852 | "fps": 30, 9853 | "link": "https://videos.pexels.com/video-files/7515910/7515910-hd_1080_1920_30fps.mp4", 9854 | "size": 5390722 9855 | }, 9856 | { 9857 | "id": 10456182, 9858 | "quality": "sd", 9859 | "file_type": "video/mp4", 9860 | "width": 540, 9861 | "height": 960, 9862 | "fps": 30, 9863 | "link": "https://videos.pexels.com/video-files/7515910/7515910-sd_540_960_30fps.mp4", 9864 | "size": 1303853 9865 | }, 9866 | { 9867 | "id": 10456223, 9868 | "quality": "sd", 9869 | "file_type": "video/mp4", 9870 | "width": 360, 9871 | "height": 640, 9872 | "fps": 30, 9873 | "link": "https://videos.pexels.com/video-files/7515910/7515910-sd_360_640_30fps.mp4", 9874 | "size": 657046 9875 | }, 9876 | { 9877 | "id": 10456250, 9878 | "quality": "sd", 9879 | "file_type": "video/mp4", 9880 | "width": 240, 9881 | "height": 426, 9882 | "fps": 30, 9883 | "link": "https://videos.pexels.com/video-files/7515910/7515910-sd_240_426_30fps.mp4", 9884 | "size": 448246 9885 | } 9886 | ], 9887 | "video_pictures": [ 9888 | { 9889 | "id": 6528542, 9890 | "nr": 0, 9891 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-0.jpeg" 9892 | }, 9893 | { 9894 | "id": 6528544, 9895 | "nr": 1, 9896 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-1.jpeg" 9897 | }, 9898 | { 9899 | "id": 6528546, 9900 | "nr": 2, 9901 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-2.jpeg" 9902 | }, 9903 | { 9904 | "id": 6528550, 9905 | "nr": 3, 9906 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-3.jpeg" 9907 | }, 9908 | { 9909 | "id": 6528554, 9910 | "nr": 4, 9911 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-4.jpeg" 9912 | }, 9913 | { 9914 | "id": 6528558, 9915 | "nr": 5, 9916 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-5.jpeg" 9917 | }, 9918 | { 9919 | "id": 6528562, 9920 | "nr": 6, 9921 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-6.jpeg" 9922 | }, 9923 | { 9924 | "id": 6528568, 9925 | "nr": 7, 9926 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-7.jpeg" 9927 | }, 9928 | { 9929 | "id": 6528574, 9930 | "nr": 8, 9931 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-8.jpeg" 9932 | }, 9933 | { 9934 | "id": 6528580, 9935 | "nr": 9, 9936 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-9.jpeg" 9937 | }, 9938 | { 9939 | "id": 6528588, 9940 | "nr": 10, 9941 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-10.jpeg" 9942 | }, 9943 | { 9944 | "id": 6528600, 9945 | "nr": 11, 9946 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-11.jpeg" 9947 | }, 9948 | { 9949 | "id": 6528608, 9950 | "nr": 12, 9951 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-12.jpeg" 9952 | }, 9953 | { 9954 | "id": 6528617, 9955 | "nr": 13, 9956 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-13.jpeg" 9957 | }, 9958 | { 9959 | "id": 6528622, 9960 | "nr": 14, 9961 | "picture": "https://images.pexels.com/videos/7515910/pictures/preview-14.jpeg" 9962 | } 9963 | ] 9964 | }, 9965 | { 9966 | "id": 7481862, 9967 | "width": 2160, 9968 | "height": 4096, 9969 | "duration": 24, 9970 | "full_res": null, 9971 | "tags": [], 9972 | "url": "https://www.pexels.com/video/a-dog-playing-in-the-snow-7481862/", 9973 | "image": "https://images.pexels.com/videos/7481862/pexels-photo-7481862.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 9974 | "avg_color": null, 9975 | "user": { 9976 | "id": 1437723, 9977 | "name": "cottonbro studio", 9978 | "url": "https://www.pexels.com/@cottonbro" 9979 | }, 9980 | "video_files": [ 9981 | { 9982 | "id": 10443588, 9983 | "quality": "uhd", 9984 | "file_type": "video/mp4", 9985 | "width": 1440, 9986 | "height": 2732, 9987 | "fps": 25, 9988 | "link": "https://videos.pexels.com/video-files/7481862/7481862-uhd_1440_2732_25fps.mp4", 9989 | "size": 20434699 9990 | }, 9991 | { 9992 | "id": 10443631, 9993 | "quality": "sd", 9994 | "file_type": "video/mp4", 9995 | "width": 338, 9996 | "height": 640, 9997 | "fps": 25, 9998 | "link": "https://videos.pexels.com/video-files/7481862/7481862-sd_338_640_25fps.mp4", 9999 | "size": 1791822 10000 | }, 10001 | { 10002 | "id": 10443684, 10003 | "quality": "uhd", 10004 | "file_type": "video/mp4", 10005 | "width": 2160, 10006 | "height": 4096, 10007 | "fps": 25, 10008 | "link": "https://videos.pexels.com/video-files/7481862/7481862-uhd_2160_4096_25fps.mp4", 10009 | "size": 47275856 10010 | }, 10011 | { 10012 | "id": 10443727, 10013 | "quality": "hd", 10014 | "file_type": "video/mp4", 10015 | "width": 720, 10016 | "height": 1366, 10017 | "fps": 25, 10018 | "link": "https://videos.pexels.com/video-files/7481862/7481862-hd_720_1366_25fps.mp4", 10019 | "size": 6621831 10020 | }, 10021 | { 10022 | "id": 10443768, 10023 | "quality": "hd", 10024 | "file_type": "video/mp4", 10025 | "width": 1080, 10026 | "height": 2048, 10027 | "fps": 25, 10028 | "link": "https://videos.pexels.com/video-files/7481862/7481862-hd_1080_2048_25fps.mp4", 10029 | "size": 12172789 10030 | }, 10031 | { 10032 | "id": 10443807, 10033 | "quality": "sd", 10034 | "file_type": "video/mp4", 10035 | "width": 506, 10036 | "height": 960, 10037 | "fps": 25, 10038 | "link": "https://videos.pexels.com/video-files/7481862/7481862-sd_506_960_25fps.mp4", 10039 | "size": 3700866 10040 | } 10041 | ], 10042 | "video_pictures": [ 10043 | { 10044 | "id": 6465390, 10045 | "nr": 0, 10046 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-0.jpeg" 10047 | }, 10048 | { 10049 | "id": 6465394, 10050 | "nr": 1, 10051 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-1.jpeg" 10052 | }, 10053 | { 10054 | "id": 6465398, 10055 | "nr": 2, 10056 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-2.jpeg" 10057 | }, 10058 | { 10059 | "id": 6465404, 10060 | "nr": 3, 10061 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-3.jpeg" 10062 | }, 10063 | { 10064 | "id": 6465411, 10065 | "nr": 4, 10066 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-4.jpeg" 10067 | }, 10068 | { 10069 | "id": 6465416, 10070 | "nr": 5, 10071 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-5.jpeg" 10072 | }, 10073 | { 10074 | "id": 6465423, 10075 | "nr": 6, 10076 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-6.jpeg" 10077 | }, 10078 | { 10079 | "id": 6465433, 10080 | "nr": 7, 10081 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-7.jpeg" 10082 | }, 10083 | { 10084 | "id": 6465439, 10085 | "nr": 8, 10086 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-8.jpeg" 10087 | }, 10088 | { 10089 | "id": 6465448, 10090 | "nr": 9, 10091 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-9.jpeg" 10092 | }, 10093 | { 10094 | "id": 6465458, 10095 | "nr": 10, 10096 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-10.jpeg" 10097 | }, 10098 | { 10099 | "id": 6465466, 10100 | "nr": 11, 10101 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-11.jpeg" 10102 | }, 10103 | { 10104 | "id": 6465476, 10105 | "nr": 12, 10106 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-12.jpeg" 10107 | }, 10108 | { 10109 | "id": 6465479, 10110 | "nr": 13, 10111 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-13.jpeg" 10112 | }, 10113 | { 10114 | "id": 6465485, 10115 | "nr": 14, 10116 | "picture": "https://images.pexels.com/videos/7481862/pictures/preview-14.jpeg" 10117 | } 10118 | ] 10119 | }, 10120 | { 10121 | "id": 5728455, 10122 | "width": 2160, 10123 | "height": 3840, 10124 | "duration": 10, 10125 | "full_res": null, 10126 | "tags": [], 10127 | "url": "https://www.pexels.com/video/two-dogs-playing-around-5728455/", 10128 | "image": "https://images.pexels.com/videos/5728455/pexels-photo-5728455.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 10129 | "avg_color": null, 10130 | "user": { 10131 | "id": 3657919, 10132 | "name": "Sam Lion", 10133 | "url": "https://www.pexels.com/@sam-lion" 10134 | }, 10135 | "video_files": [ 10136 | { 10137 | "id": 9785626, 10138 | "quality": "hd", 10139 | "file_type": "video/mp4", 10140 | "width": 1080, 10141 | "height": 1920, 10142 | "fps": 23.97599983215332, 10143 | "link": "https://videos.pexels.com/video-files/5728455/5728455-hd_1080_1920_24fps.mp4", 10144 | "size": 6087121 10145 | }, 10146 | { 10147 | "id": 9785636, 10148 | "quality": "sd", 10149 | "file_type": "video/mp4", 10150 | "width": 240, 10151 | "height": 426, 10152 | "fps": 23.97599983215332, 10153 | "link": "https://videos.pexels.com/video-files/5728455/5728455-sd_240_426_24fps.mp4", 10154 | "size": 411785 10155 | }, 10156 | { 10157 | "id": 9785998, 10158 | "quality": "sd", 10159 | "file_type": "video/mp4", 10160 | "width": 360, 10161 | "height": 640, 10162 | "fps": 23.97599983215332, 10163 | "link": "https://videos.pexels.com/video-files/5728455/5728455-sd_360_640_24fps.mp4", 10164 | "size": 752477 10165 | }, 10166 | { 10167 | "id": 9786023, 10168 | "quality": "hd", 10169 | "file_type": "video/mp4", 10170 | "width": 720, 10171 | "height": 1280, 10172 | "fps": 23.97599983215332, 10173 | "link": "https://videos.pexels.com/video-files/5728455/5728455-hd_720_1280_24fps.mp4", 10174 | "size": 2723367 10175 | }, 10176 | { 10177 | "id": 9786536, 10178 | "quality": "uhd", 10179 | "file_type": "video/mp4", 10180 | "width": 2160, 10181 | "height": 3840, 10182 | "fps": 23.97599983215332, 10183 | "link": "https://videos.pexels.com/video-files/5728455/5728455-uhd_2160_3840_24fps.mp4", 10184 | "size": 25997876 10185 | }, 10186 | { 10187 | "id": 9786641, 10188 | "quality": "sd", 10189 | "file_type": "video/mp4", 10190 | "width": 540, 10191 | "height": 960, 10192 | "fps": 23.97599983215332, 10193 | "link": "https://videos.pexels.com/video-files/5728455/5728455-sd_540_960_24fps.mp4", 10194 | "size": 1589584 10195 | }, 10196 | { 10197 | "id": 9786698, 10198 | "quality": "uhd", 10199 | "file_type": "video/mp4", 10200 | "width": 1440, 10201 | "height": 2560, 10202 | "fps": 23.97599983215332, 10203 | "link": "https://videos.pexels.com/video-files/5728455/5728455-uhd_1440_2560_24fps.mp4", 10204 | "size": 10503840 10205 | } 10206 | ], 10207 | "video_pictures": [ 10208 | { 10209 | "id": 3272996, 10210 | "nr": 0, 10211 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-0.jpeg" 10212 | }, 10213 | { 10214 | "id": 3272998, 10215 | "nr": 1, 10216 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-1.jpeg" 10217 | }, 10218 | { 10219 | "id": 3273000, 10220 | "nr": 2, 10221 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-2.jpeg" 10222 | }, 10223 | { 10224 | "id": 3273002, 10225 | "nr": 3, 10226 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-3.jpeg" 10227 | }, 10228 | { 10229 | "id": 3273004, 10230 | "nr": 4, 10231 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-4.jpeg" 10232 | }, 10233 | { 10234 | "id": 3273006, 10235 | "nr": 5, 10236 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-5.jpeg" 10237 | }, 10238 | { 10239 | "id": 3273007, 10240 | "nr": 6, 10241 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-6.jpeg" 10242 | }, 10243 | { 10244 | "id": 3273009, 10245 | "nr": 7, 10246 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-7.jpeg" 10247 | }, 10248 | { 10249 | "id": 3273011, 10250 | "nr": 8, 10251 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-8.jpeg" 10252 | }, 10253 | { 10254 | "id": 3273013, 10255 | "nr": 9, 10256 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-9.jpeg" 10257 | }, 10258 | { 10259 | "id": 3273014, 10260 | "nr": 10, 10261 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-10.jpeg" 10262 | }, 10263 | { 10264 | "id": 3273017, 10265 | "nr": 11, 10266 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-11.jpeg" 10267 | }, 10268 | { 10269 | "id": 3273021, 10270 | "nr": 12, 10271 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-12.jpeg" 10272 | }, 10273 | { 10274 | "id": 3273022, 10275 | "nr": 13, 10276 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-13.jpeg" 10277 | }, 10278 | { 10279 | "id": 3273026, 10280 | "nr": 14, 10281 | "picture": "https://images.pexels.com/videos/5728455/pictures/preview-14.jpeg" 10282 | } 10283 | ] 10284 | }, 10285 | { 10286 | "id": 8473394, 10287 | "width": 1080, 10288 | "height": 1920, 10289 | "duration": 10, 10290 | "full_res": null, 10291 | "tags": [], 10292 | "url": "https://www.pexels.com/video/a-dog-sitting-on-a-chair-8473394/", 10293 | "image": "https://images.pexels.com/videos/8473394/animal-canine-cat-comfort-8473394.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 10294 | "avg_color": null, 10295 | "user": { 10296 | "id": 3716105, 10297 | "name": "Cup of Couple", 10298 | "url": "https://www.pexels.com/@cup-of-couple" 10299 | }, 10300 | "video_files": [ 10301 | { 10302 | "id": 10847022, 10303 | "quality": "hd", 10304 | "file_type": "video/mp4", 10305 | "width": 1080, 10306 | "height": 1920, 10307 | "fps": 25, 10308 | "link": "https://videos.pexels.com/video-files/8473394/8473394-hd_1080_1920_25fps.mp4", 10309 | "size": 6016837 10310 | }, 10311 | { 10312 | "id": 10847104, 10313 | "quality": "hd", 10314 | "file_type": "video/mp4", 10315 | "width": 720, 10316 | "height": 1280, 10317 | "fps": 50, 10318 | "link": "https://videos.pexels.com/video-files/8473394/8473394-hd_720_1280_50fps.mp4", 10319 | "size": 3123819 10320 | }, 10321 | { 10322 | "id": 10847154, 10323 | "quality": "sd", 10324 | "file_type": "video/mp4", 10325 | "width": 240, 10326 | "height": 426, 10327 | "fps": 25, 10328 | "link": "https://videos.pexels.com/video-files/8473394/8473394-sd_240_426_25fps.mp4", 10329 | "size": 259201 10330 | }, 10331 | { 10332 | "id": 10847271, 10333 | "quality": "sd", 10334 | "file_type": "video/mp4", 10335 | "width": 540, 10336 | "height": 960, 10337 | "fps": 25, 10338 | "link": "https://videos.pexels.com/video-files/8473394/8473394-sd_540_960_25fps.mp4", 10339 | "size": 1782284 10340 | }, 10341 | { 10342 | "id": 10847329, 10343 | "quality": "sd", 10344 | "file_type": "video/mp4", 10345 | "width": 360, 10346 | "height": 640, 10347 | "fps": 25, 10348 | "link": "https://videos.pexels.com/video-files/8473394/8473394-sd_360_640_25fps.mp4", 10349 | "size": 596753 10350 | } 10351 | ], 10352 | "video_pictures": [ 10353 | { 10354 | "id": 8309002, 10355 | "nr": 0, 10356 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-0.jpeg" 10357 | }, 10358 | { 10359 | "id": 8309016, 10360 | "nr": 1, 10361 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-1.jpeg" 10362 | }, 10363 | { 10364 | "id": 8309034, 10365 | "nr": 2, 10366 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-2.jpeg" 10367 | }, 10368 | { 10369 | "id": 8309051, 10370 | "nr": 3, 10371 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-3.jpeg" 10372 | }, 10373 | { 10374 | "id": 8309065, 10375 | "nr": 4, 10376 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-4.jpeg" 10377 | }, 10378 | { 10379 | "id": 8309078, 10380 | "nr": 5, 10381 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-5.jpeg" 10382 | }, 10383 | { 10384 | "id": 8309087, 10385 | "nr": 6, 10386 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-6.jpeg" 10387 | }, 10388 | { 10389 | "id": 8309094, 10390 | "nr": 7, 10391 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-7.jpeg" 10392 | }, 10393 | { 10394 | "id": 8309102, 10395 | "nr": 8, 10396 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-8.jpeg" 10397 | }, 10398 | { 10399 | "id": 8309111, 10400 | "nr": 9, 10401 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-9.jpeg" 10402 | }, 10403 | { 10404 | "id": 8309119, 10405 | "nr": 10, 10406 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-10.jpeg" 10407 | }, 10408 | { 10409 | "id": 8309126, 10410 | "nr": 11, 10411 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-11.jpeg" 10412 | }, 10413 | { 10414 | "id": 8309131, 10415 | "nr": 12, 10416 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-12.jpeg" 10417 | }, 10418 | { 10419 | "id": 8309136, 10420 | "nr": 13, 10421 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-13.jpeg" 10422 | }, 10423 | { 10424 | "id": 8309141, 10425 | "nr": 14, 10426 | "picture": "https://images.pexels.com/videos/8473394/pictures/preview-14.jpeg" 10427 | } 10428 | ] 10429 | }, 10430 | { 10431 | "id": 7209829, 10432 | "width": 2160, 10433 | "height": 3840, 10434 | "duration": 11, 10435 | "full_res": null, 10436 | "tags": [], 10437 | "url": "https://www.pexels.com/video/adog-standing-between-the-tree-branch-7209829/", 10438 | "image": "https://images.pexels.com/videos/7209829/pexels-photo-7209829.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 10439 | "avg_color": null, 10440 | "user": { 10441 | "id": 33201670, 10442 | "name": "Blue Bird", 10443 | "url": "https://www.pexels.com/@blue-bird" 10444 | }, 10445 | "video_files": [ 10446 | { 10447 | "id": 10345596, 10448 | "quality": "hd", 10449 | "file_type": "video/mp4", 10450 | "width": 720, 10451 | "height": 1280, 10452 | "fps": 50, 10453 | "link": "https://videos.pexels.com/video-files/7209829/7209829-hd_720_1280_50fps.mp4", 10454 | "size": 3779860 10455 | }, 10456 | { 10457 | "id": 10345654, 10458 | "quality": "uhd", 10459 | "file_type": "video/mp4", 10460 | "width": 1440, 10461 | "height": 2560, 10462 | "fps": 25, 10463 | "link": "https://videos.pexels.com/video-files/7209829/7209829-uhd_1440_2560_25fps.mp4", 10464 | "size": 13503690 10465 | }, 10466 | { 10467 | "id": 10345722, 10468 | "quality": "hd", 10469 | "file_type": "video/mp4", 10470 | "width": 1080, 10471 | "height": 1920, 10472 | "fps": 25, 10473 | "link": "https://videos.pexels.com/video-files/7209829/7209829-hd_1080_1920_25fps.mp4", 10474 | "size": 6355536 10475 | }, 10476 | { 10477 | "id": 10345753, 10478 | "quality": "sd", 10479 | "file_type": "video/mp4", 10480 | "width": 240, 10481 | "height": 426, 10482 | "fps": 25, 10483 | "link": "https://videos.pexels.com/video-files/7209829/7209829-sd_240_426_25fps.mp4", 10484 | "size": 415046 10485 | }, 10486 | { 10487 | "id": 10345865, 10488 | "quality": "uhd", 10489 | "file_type": "video/mp4", 10490 | "width": 2160, 10491 | "height": 3840, 10492 | "fps": 25, 10493 | "link": "https://videos.pexels.com/video-files/7209829/7209829-uhd_2160_3840_25fps.mp4", 10494 | "size": 27091259 10495 | }, 10496 | { 10497 | "id": 10346023, 10498 | "quality": "sd", 10499 | "file_type": "video/mp4", 10500 | "width": 360, 10501 | "height": 640, 10502 | "fps": 25, 10503 | "link": "https://videos.pexels.com/video-files/7209829/7209829-sd_360_640_25fps.mp4", 10504 | "size": 652591 10505 | }, 10506 | { 10507 | "id": 10346096, 10508 | "quality": "sd", 10509 | "file_type": "video/mp4", 10510 | "width": 540, 10511 | "height": 960, 10512 | "fps": 25, 10513 | "link": "https://videos.pexels.com/video-files/7209829/7209829-sd_540_960_25fps.mp4", 10514 | "size": 1771177 10515 | } 10516 | ], 10517 | "video_pictures": [ 10518 | { 10519 | "id": 5966052, 10520 | "nr": 0, 10521 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-0.jpeg" 10522 | }, 10523 | { 10524 | "id": 5966059, 10525 | "nr": 1, 10526 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-1.jpeg" 10527 | }, 10528 | { 10529 | "id": 5966069, 10530 | "nr": 2, 10531 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-2.jpeg" 10532 | }, 10533 | { 10534 | "id": 5966076, 10535 | "nr": 3, 10536 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-3.jpeg" 10537 | }, 10538 | { 10539 | "id": 5966083, 10540 | "nr": 4, 10541 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-4.jpeg" 10542 | }, 10543 | { 10544 | "id": 5966092, 10545 | "nr": 5, 10546 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-5.jpeg" 10547 | }, 10548 | { 10549 | "id": 5966095, 10550 | "nr": 6, 10551 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-6.jpeg" 10552 | }, 10553 | { 10554 | "id": 5966102, 10555 | "nr": 7, 10556 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-7.jpeg" 10557 | }, 10558 | { 10559 | "id": 5966110, 10560 | "nr": 8, 10561 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-8.jpeg" 10562 | }, 10563 | { 10564 | "id": 5966119, 10565 | "nr": 9, 10566 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-9.jpeg" 10567 | }, 10568 | { 10569 | "id": 5966126, 10570 | "nr": 10, 10571 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-10.jpeg" 10572 | }, 10573 | { 10574 | "id": 5966133, 10575 | "nr": 11, 10576 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-11.jpeg" 10577 | }, 10578 | { 10579 | "id": 5966139, 10580 | "nr": 12, 10581 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-12.jpeg" 10582 | }, 10583 | { 10584 | "id": 5966145, 10585 | "nr": 13, 10586 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-13.jpeg" 10587 | }, 10588 | { 10589 | "id": 5966151, 10590 | "nr": 14, 10591 | "picture": "https://images.pexels.com/videos/7209829/pictures/preview-14.jpeg" 10592 | } 10593 | ] 10594 | }, 10595 | { 10596 | "id": 5729487, 10597 | "width": 2160, 10598 | "height": 3840, 10599 | "duration": 8, 10600 | "full_res": null, 10601 | "tags": [], 10602 | "url": "https://www.pexels.com/video/dog-wearing-a-nurse-costume-5729487/", 10603 | "image": "https://images.pexels.com/videos/5729487/pexels-photo-5729487.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 10604 | "avg_color": null, 10605 | "user": { 10606 | "id": 3657919, 10607 | "name": "Sam Lion", 10608 | "url": "https://www.pexels.com/@sam-lion" 10609 | }, 10610 | "video_files": [ 10611 | { 10612 | "id": 9785851, 10613 | "quality": "sd", 10614 | "file_type": "video/mp4", 10615 | "width": 360, 10616 | "height": 640, 10617 | "fps": 23.97599983215332, 10618 | "link": "https://videos.pexels.com/video-files/5729487/5729487-sd_360_640_24fps.mp4", 10619 | "size": 608761 10620 | }, 10621 | { 10622 | "id": 9785939, 10623 | "quality": "uhd", 10624 | "file_type": "video/mp4", 10625 | "width": 1440, 10626 | "height": 2560, 10627 | "fps": 23.97599983215332, 10628 | "link": "https://videos.pexels.com/video-files/5729487/5729487-uhd_1440_2560_24fps.mp4", 10629 | "size": 12697105 10630 | }, 10631 | { 10632 | "id": 9785982, 10633 | "quality": "hd", 10634 | "file_type": "video/mp4", 10635 | "width": 1080, 10636 | "height": 1920, 10637 | "fps": 23.97599983215332, 10638 | "link": "https://videos.pexels.com/video-files/5729487/5729487-hd_1080_1920_24fps.mp4", 10639 | "size": 5286715 10640 | }, 10641 | { 10642 | "id": 9786025, 10643 | "quality": "hd", 10644 | "file_type": "video/mp4", 10645 | "width": 720, 10646 | "height": 1280, 10647 | "fps": 23.97599983215332, 10648 | "link": "https://videos.pexels.com/video-files/5729487/5729487-hd_720_1280_24fps.mp4", 10649 | "size": 2770418 10650 | }, 10651 | { 10652 | "id": 9786093, 10653 | "quality": "sd", 10654 | "file_type": "video/mp4", 10655 | "width": 540, 10656 | "height": 960, 10657 | "fps": 23.97599983215332, 10658 | "link": "https://videos.pexels.com/video-files/5729487/5729487-sd_540_960_24fps.mp4", 10659 | "size": 1664959 10660 | }, 10661 | { 10662 | "id": 9786151, 10663 | "quality": "sd", 10664 | "file_type": "video/mp4", 10665 | "width": 240, 10666 | "height": 426, 10667 | "fps": 23.97599983215332, 10668 | "link": "https://videos.pexels.com/video-files/5729487/5729487-sd_240_426_24fps.mp4", 10669 | "size": 362276 10670 | }, 10671 | { 10672 | "id": 9786211, 10673 | "quality": "uhd", 10674 | "file_type": "video/mp4", 10675 | "width": 2160, 10676 | "height": 3840, 10677 | "fps": 23.97599983215332, 10678 | "link": "https://videos.pexels.com/video-files/5729487/5729487-uhd_2160_3840_24fps.mp4", 10679 | "size": 22034534 10680 | } 10681 | ], 10682 | "video_pictures": [ 10683 | { 10684 | "id": 3274065, 10685 | "nr": 0, 10686 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-0.jpeg" 10687 | }, 10688 | { 10689 | "id": 3274084, 10690 | "nr": 1, 10691 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-1.jpeg" 10692 | }, 10693 | { 10694 | "id": 3274098, 10695 | "nr": 2, 10696 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-2.jpeg" 10697 | }, 10698 | { 10699 | "id": 3274116, 10700 | "nr": 3, 10701 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-3.jpeg" 10702 | }, 10703 | { 10704 | "id": 3274130, 10705 | "nr": 4, 10706 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-4.jpeg" 10707 | }, 10708 | { 10709 | "id": 3274155, 10710 | "nr": 5, 10711 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-5.jpeg" 10712 | }, 10713 | { 10714 | "id": 3274180, 10715 | "nr": 6, 10716 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-6.jpeg" 10717 | }, 10718 | { 10719 | "id": 3274220, 10720 | "nr": 7, 10721 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-7.jpeg" 10722 | }, 10723 | { 10724 | "id": 3274236, 10725 | "nr": 8, 10726 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-8.jpeg" 10727 | }, 10728 | { 10729 | "id": 3274250, 10730 | "nr": 9, 10731 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-9.jpeg" 10732 | }, 10733 | { 10734 | "id": 3274264, 10735 | "nr": 10, 10736 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-10.jpeg" 10737 | }, 10738 | { 10739 | "id": 3274276, 10740 | "nr": 11, 10741 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-11.jpeg" 10742 | }, 10743 | { 10744 | "id": 3274291, 10745 | "nr": 12, 10746 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-12.jpeg" 10747 | }, 10748 | { 10749 | "id": 3274303, 10750 | "nr": 13, 10751 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-13.jpeg" 10752 | }, 10753 | { 10754 | "id": 3274315, 10755 | "nr": 14, 10756 | "picture": "https://images.pexels.com/videos/5729487/pictures/preview-14.jpeg" 10757 | } 10758 | ] 10759 | }, 10760 | { 10761 | "id": 5534294, 10762 | "width": 1080, 10763 | "height": 1920, 10764 | "duration": 4, 10765 | "full_res": null, 10766 | "tags": [], 10767 | "url": "https://www.pexels.com/video/close-up-view-of-a-cute-puppy-5534294/", 10768 | "image": "https://images.pexels.com/videos/5534294/pexels-photo-5534294.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 10769 | "avg_color": null, 10770 | "user": { 10771 | "id": 3684321, 10772 | "name": "Anna Bondarenko", 10773 | "url": "https://www.pexels.com/@aaa333" 10774 | }, 10775 | "video_files": [ 10776 | { 10777 | "id": 9727983, 10778 | "quality": "hd", 10779 | "file_type": "video/mp4", 10780 | "width": 720, 10781 | "height": 1280, 10782 | "fps": 29.969999313354492, 10783 | "link": "https://videos.pexels.com/video-files/5534294/5534294-hd_720_1280_30fps.mp4", 10784 | "size": 1424060 10785 | }, 10786 | { 10787 | "id": 9728001, 10788 | "quality": "sd", 10789 | "file_type": "video/mp4", 10790 | "width": 360, 10791 | "height": 640, 10792 | "fps": 29.969999313354492, 10793 | "link": "https://videos.pexels.com/video-files/5534294/5534294-sd_360_640_30fps.mp4", 10794 | "size": 315369 10795 | }, 10796 | { 10797 | "id": 9728013, 10798 | "quality": "sd", 10799 | "file_type": "video/mp4", 10800 | "width": 540, 10801 | "height": 960, 10802 | "fps": 29.969999313354492, 10803 | "link": "https://videos.pexels.com/video-files/5534294/5534294-sd_540_960_30fps.mp4", 10804 | "size": 882107 10805 | }, 10806 | { 10807 | "id": 9728026, 10808 | "quality": "hd", 10809 | "file_type": "video/mp4", 10810 | "width": 1080, 10811 | "height": 1920, 10812 | "fps": 29.969999313354492, 10813 | "link": "https://videos.pexels.com/video-files/5534294/5534294-hd_1080_1920_30fps.mp4", 10814 | "size": 2714120 10815 | }, 10816 | { 10817 | "id": 9728052, 10818 | "quality": "sd", 10819 | "file_type": "video/mp4", 10820 | "width": 240, 10821 | "height": 426, 10822 | "fps": 29.969999313354492, 10823 | "link": "https://videos.pexels.com/video-files/5534294/5534294-sd_240_426_30fps.mp4", 10824 | "size": 190606 10825 | } 10826 | ], 10827 | "video_pictures": [ 10828 | { 10829 | "id": 2963820, 10830 | "nr": 0, 10831 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-0.jpeg" 10832 | }, 10833 | { 10834 | "id": 2963821, 10835 | "nr": 1, 10836 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-1.jpeg" 10837 | }, 10838 | { 10839 | "id": 2963822, 10840 | "nr": 2, 10841 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-2.jpeg" 10842 | }, 10843 | { 10844 | "id": 2963825, 10845 | "nr": 3, 10846 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-3.jpeg" 10847 | }, 10848 | { 10849 | "id": 2963827, 10850 | "nr": 4, 10851 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-4.jpeg" 10852 | }, 10853 | { 10854 | "id": 2963829, 10855 | "nr": 5, 10856 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-5.jpeg" 10857 | }, 10858 | { 10859 | "id": 2963831, 10860 | "nr": 6, 10861 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-6.jpeg" 10862 | }, 10863 | { 10864 | "id": 2963833, 10865 | "nr": 7, 10866 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-7.jpeg" 10867 | }, 10868 | { 10869 | "id": 2963835, 10870 | "nr": 8, 10871 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-8.jpeg" 10872 | }, 10873 | { 10874 | "id": 2963837, 10875 | "nr": 9, 10876 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-9.jpeg" 10877 | }, 10878 | { 10879 | "id": 2963839, 10880 | "nr": 10, 10881 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-10.jpeg" 10882 | }, 10883 | { 10884 | "id": 2963841, 10885 | "nr": 11, 10886 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-11.jpeg" 10887 | }, 10888 | { 10889 | "id": 2963843, 10890 | "nr": 12, 10891 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-12.jpeg" 10892 | }, 10893 | { 10894 | "id": 2963845, 10895 | "nr": 13, 10896 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-13.jpeg" 10897 | }, 10898 | { 10899 | "id": 2963847, 10900 | "nr": 14, 10901 | "picture": "https://images.pexels.com/videos/5534294/pictures/preview-14.jpeg" 10902 | } 10903 | ] 10904 | }, 10905 | { 10906 | "id": 6825117, 10907 | "width": 2160, 10908 | "height": 3840, 10909 | "duration": 12, 10910 | "full_res": null, 10911 | "tags": [], 10912 | "url": "https://www.pexels.com/video/woman-holding-dog-on-arms-6825117/", 10913 | "image": "https://images.pexels.com/videos/6825117/at-home-stay-home-cozy-dog-home-chilling-6825117.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 10914 | "avg_color": null, 10915 | "user": { 10916 | "id": 2278756, 10917 | "name": "Vlada Karpovich", 10918 | "url": "https://www.pexels.com/@vlada-karpovich" 10919 | }, 10920 | "video_files": [ 10921 | { 10922 | "id": 10193383, 10923 | "quality": "sd", 10924 | "file_type": "video/mp4", 10925 | "width": 360, 10926 | "height": 640, 10927 | "fps": 25, 10928 | "link": "https://videos.pexels.com/video-files/6825117/6825117-sd_360_640_25fps.mp4", 10929 | "size": 707013 10930 | }, 10931 | { 10932 | "id": 10193446, 10933 | "quality": "hd", 10934 | "file_type": "video/mp4", 10935 | "width": 720, 10936 | "height": 1280, 10937 | "fps": 50, 10938 | "link": "https://videos.pexels.com/video-files/6825117/6825117-hd_720_1280_50fps.mp4", 10939 | "size": 3347600 10940 | }, 10941 | { 10942 | "id": 10193505, 10943 | "quality": "hd", 10944 | "file_type": "video/mp4", 10945 | "width": 1080, 10946 | "height": 1920, 10947 | "fps": 25, 10948 | "link": "https://videos.pexels.com/video-files/6825117/6825117-hd_1080_1920_25fps.mp4", 10949 | "size": 5976923 10950 | }, 10951 | { 10952 | "id": 10193543, 10953 | "quality": "uhd", 10954 | "file_type": "video/mp4", 10955 | "width": 1440, 10956 | "height": 2560, 10957 | "fps": 25, 10958 | "link": "https://videos.pexels.com/video-files/6825117/6825117-uhd_1440_2560_25fps.mp4", 10959 | "size": 11643602 10960 | }, 10961 | { 10962 | "id": 10193608, 10963 | "quality": "uhd", 10964 | "file_type": "video/mp4", 10965 | "width": 2160, 10966 | "height": 3840, 10967 | "fps": 25, 10968 | "link": "https://videos.pexels.com/video-files/6825117/6825117-uhd_2160_3840_25fps.mp4", 10969 | "size": 21497069 10970 | }, 10971 | { 10972 | "id": 10193655, 10973 | "quality": "sd", 10974 | "file_type": "video/mp4", 10975 | "width": 240, 10976 | "height": 426, 10977 | "fps": 25, 10978 | "link": "https://videos.pexels.com/video-files/6825117/6825117-sd_240_426_25fps.mp4", 10979 | "size": 426915 10980 | }, 10981 | { 10982 | "id": 10193694, 10983 | "quality": "sd", 10984 | "file_type": "video/mp4", 10985 | "width": 540, 10986 | "height": 960, 10987 | "fps": 25, 10988 | "link": "https://videos.pexels.com/video-files/6825117/6825117-sd_540_960_25fps.mp4", 10989 | "size": 1702807 10990 | } 10991 | ], 10992 | "video_pictures": [ 10993 | { 10994 | "id": 5189168, 10995 | "nr": 0, 10996 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-0.jpeg" 10997 | }, 10998 | { 10999 | "id": 5189180, 11000 | "nr": 1, 11001 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-1.jpeg" 11002 | }, 11003 | { 11004 | "id": 5189192, 11005 | "nr": 2, 11006 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-2.jpeg" 11007 | }, 11008 | { 11009 | "id": 5189207, 11010 | "nr": 3, 11011 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-3.jpeg" 11012 | }, 11013 | { 11014 | "id": 5189220, 11015 | "nr": 4, 11016 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-4.jpeg" 11017 | }, 11018 | { 11019 | "id": 5189233, 11020 | "nr": 5, 11021 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-5.jpeg" 11022 | }, 11023 | { 11024 | "id": 5189249, 11025 | "nr": 6, 11026 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-6.jpeg" 11027 | }, 11028 | { 11029 | "id": 5189271, 11030 | "nr": 7, 11031 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-7.jpeg" 11032 | }, 11033 | { 11034 | "id": 5189293, 11035 | "nr": 8, 11036 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-8.jpeg" 11037 | }, 11038 | { 11039 | "id": 5189316, 11040 | "nr": 9, 11041 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-9.jpeg" 11042 | }, 11043 | { 11044 | "id": 5189332, 11045 | "nr": 10, 11046 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-10.jpeg" 11047 | }, 11048 | { 11049 | "id": 5189349, 11050 | "nr": 11, 11051 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-11.jpeg" 11052 | }, 11053 | { 11054 | "id": 5189355, 11055 | "nr": 12, 11056 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-12.jpeg" 11057 | }, 11058 | { 11059 | "id": 5189375, 11060 | "nr": 13, 11061 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-13.jpeg" 11062 | }, 11063 | { 11064 | "id": 5189384, 11065 | "nr": 14, 11066 | "picture": "https://images.pexels.com/videos/6825117/pictures/preview-14.jpeg" 11067 | } 11068 | ] 11069 | }, 11070 | { 11071 | "id": 5877781, 11072 | "width": 1080, 11073 | "height": 1920, 11074 | "duration": 9, 11075 | "full_res": null, 11076 | "tags": [], 11077 | "url": "https://www.pexels.com/video/low-angle-video-of-a-dog-5877781/", 11078 | "image": "https://images.pexels.com/videos/5877781/pexels-photo-5877781.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11079 | "avg_color": null, 11080 | "user": { 11081 | "id": 3684321, 11082 | "name": "Anna Bondarenko", 11083 | "url": "https://www.pexels.com/@aaa333" 11084 | }, 11085 | "video_files": [ 11086 | { 11087 | "id": 9840583, 11088 | "quality": "sd", 11089 | "file_type": "video/mp4", 11090 | "width": 360, 11091 | "height": 640, 11092 | "fps": 29.969999313354492, 11093 | "link": "https://videos.pexels.com/video-files/5877781/5877781-sd_360_640_30fps.mp4", 11094 | "size": 715022 11095 | }, 11096 | { 11097 | "id": 9840597, 11098 | "quality": "sd", 11099 | "file_type": "video/mp4", 11100 | "width": 540, 11101 | "height": 960, 11102 | "fps": 29.969999313354492, 11103 | "link": "https://videos.pexels.com/video-files/5877781/5877781-sd_540_960_30fps.mp4", 11104 | "size": 1960058 11105 | }, 11106 | { 11107 | "id": 9840693, 11108 | "quality": "hd", 11109 | "file_type": "video/mp4", 11110 | "width": 720, 11111 | "height": 1280, 11112 | "fps": 29.969999313354492, 11113 | "link": "https://videos.pexels.com/video-files/5877781/5877781-hd_720_1280_30fps.mp4", 11114 | "size": 3088625 11115 | }, 11116 | { 11117 | "id": 9840784, 11118 | "quality": "sd", 11119 | "file_type": "video/mp4", 11120 | "width": 240, 11121 | "height": 426, 11122 | "fps": 29.969999313354492, 11123 | "link": "https://videos.pexels.com/video-files/5877781/5877781-sd_240_426_30fps.mp4", 11124 | "size": 422894 11125 | }, 11126 | { 11127 | "id": 9841104, 11128 | "quality": "hd", 11129 | "file_type": "video/mp4", 11130 | "width": 1080, 11131 | "height": 1920, 11132 | "fps": 29.969999313354492, 11133 | "link": "https://videos.pexels.com/video-files/5877781/5877781-hd_1080_1920_30fps.mp4", 11134 | "size": 5837035 11135 | } 11136 | ], 11137 | "video_pictures": [ 11138 | { 11139 | "id": 3509429, 11140 | "nr": 0, 11141 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-0.jpeg" 11142 | }, 11143 | { 11144 | "id": 3509436, 11145 | "nr": 1, 11146 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-1.jpeg" 11147 | }, 11148 | { 11149 | "id": 3509442, 11150 | "nr": 2, 11151 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-2.jpeg" 11152 | }, 11153 | { 11154 | "id": 3509447, 11155 | "nr": 3, 11156 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-3.jpeg" 11157 | }, 11158 | { 11159 | "id": 3509456, 11160 | "nr": 4, 11161 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-4.jpeg" 11162 | }, 11163 | { 11164 | "id": 3509463, 11165 | "nr": 5, 11166 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-5.jpeg" 11167 | }, 11168 | { 11169 | "id": 3509471, 11170 | "nr": 6, 11171 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-6.jpeg" 11172 | }, 11173 | { 11174 | "id": 3509479, 11175 | "nr": 7, 11176 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-7.jpeg" 11177 | }, 11178 | { 11179 | "id": 3509484, 11180 | "nr": 8, 11181 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-8.jpeg" 11182 | }, 11183 | { 11184 | "id": 3509494, 11185 | "nr": 9, 11186 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-9.jpeg" 11187 | }, 11188 | { 11189 | "id": 3509498, 11190 | "nr": 10, 11191 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-10.jpeg" 11192 | }, 11193 | { 11194 | "id": 3509502, 11195 | "nr": 11, 11196 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-11.jpeg" 11197 | }, 11198 | { 11199 | "id": 3509506, 11200 | "nr": 12, 11201 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-12.jpeg" 11202 | }, 11203 | { 11204 | "id": 3509508, 11205 | "nr": 13, 11206 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-13.jpeg" 11207 | }, 11208 | { 11209 | "id": 3509511, 11210 | "nr": 14, 11211 | "picture": "https://images.pexels.com/videos/5877781/pictures/preview-14.jpeg" 11212 | } 11213 | ] 11214 | }, 11215 | { 11216 | "id": 5729485, 11217 | "width": 2160, 11218 | "height": 3840, 11219 | "duration": 10, 11220 | "full_res": null, 11221 | "tags": [], 11222 | "url": "https://www.pexels.com/video/dog-wearing-a-shirt-5729485/", 11223 | "image": "https://images.pexels.com/videos/5729485/pexels-photo-5729485.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11224 | "avg_color": null, 11225 | "user": { 11226 | "id": 3657919, 11227 | "name": "Sam Lion", 11228 | "url": "https://www.pexels.com/@sam-lion" 11229 | }, 11230 | "video_files": [ 11231 | { 11232 | "id": 9785729, 11233 | "quality": "uhd", 11234 | "file_type": "video/mp4", 11235 | "width": 2160, 11236 | "height": 3840, 11237 | "fps": 23.97599983215332, 11238 | "link": "https://videos.pexels.com/video-files/5729485/5729485-uhd_2160_3840_24fps.mp4", 11239 | "size": 29556619 11240 | }, 11241 | { 11242 | "id": 9785798, 11243 | "quality": "hd", 11244 | "file_type": "video/mp4", 11245 | "width": 720, 11246 | "height": 1280, 11247 | "fps": 23.97599983215332, 11248 | "link": "https://videos.pexels.com/video-files/5729485/5729485-hd_720_1280_24fps.mp4", 11249 | "size": 2962722 11250 | }, 11251 | { 11252 | "id": 9785869, 11253 | "quality": "sd", 11254 | "file_type": "video/mp4", 11255 | "width": 240, 11256 | "height": 426, 11257 | "fps": 23.97599983215332, 11258 | "link": "https://videos.pexels.com/video-files/5729485/5729485-sd_240_426_24fps.mp4", 11259 | "size": 423534 11260 | }, 11261 | { 11262 | "id": 9785908, 11263 | "quality": "hd", 11264 | "file_type": "video/mp4", 11265 | "width": 1080, 11266 | "height": 1920, 11267 | "fps": 23.97599983215332, 11268 | "link": "https://videos.pexels.com/video-files/5729485/5729485-hd_1080_1920_24fps.mp4", 11269 | "size": 6421421 11270 | }, 11271 | { 11272 | "id": 9785981, 11273 | "quality": "sd", 11274 | "file_type": "video/mp4", 11275 | "width": 360, 11276 | "height": 640, 11277 | "fps": 23.97599983215332, 11278 | "link": "https://videos.pexels.com/video-files/5729485/5729485-sd_360_640_24fps.mp4", 11279 | "size": 745022 11280 | }, 11281 | { 11282 | "id": 9786014, 11283 | "quality": "uhd", 11284 | "file_type": "video/mp4", 11285 | "width": 1440, 11286 | "height": 2560, 11287 | "fps": 23.97599983215332, 11288 | "link": "https://videos.pexels.com/video-files/5729485/5729485-uhd_1440_2560_24fps.mp4", 11289 | "size": 14285964 11290 | }, 11291 | { 11292 | "id": 9786072, 11293 | "quality": "sd", 11294 | "file_type": "video/mp4", 11295 | "width": 540, 11296 | "height": 960, 11297 | "fps": 23.97599983215332, 11298 | "link": "https://videos.pexels.com/video-files/5729485/5729485-sd_540_960_24fps.mp4", 11299 | "size": 1653970 11300 | } 11301 | ], 11302 | "video_pictures": [ 11303 | { 11304 | "id": 3274064, 11305 | "nr": 0, 11306 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-0.jpeg" 11307 | }, 11308 | { 11309 | "id": 3274082, 11310 | "nr": 1, 11311 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-1.jpeg" 11312 | }, 11313 | { 11314 | "id": 3274101, 11315 | "nr": 2, 11316 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-2.jpeg" 11317 | }, 11318 | { 11319 | "id": 3274141, 11320 | "nr": 3, 11321 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-3.jpeg" 11322 | }, 11323 | { 11324 | "id": 3274159, 11325 | "nr": 4, 11326 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-4.jpeg" 11327 | }, 11328 | { 11329 | "id": 3274182, 11330 | "nr": 5, 11331 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-5.jpeg" 11332 | }, 11333 | { 11334 | "id": 3274196, 11335 | "nr": 6, 11336 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-6.jpeg" 11337 | }, 11338 | { 11339 | "id": 3274217, 11340 | "nr": 7, 11341 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-7.jpeg" 11342 | }, 11343 | { 11344 | "id": 3274233, 11345 | "nr": 8, 11346 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-8.jpeg" 11347 | }, 11348 | { 11349 | "id": 3274251, 11350 | "nr": 9, 11351 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-9.jpeg" 11352 | }, 11353 | { 11354 | "id": 3274270, 11355 | "nr": 10, 11356 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-10.jpeg" 11357 | }, 11358 | { 11359 | "id": 3274288, 11360 | "nr": 11, 11361 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-11.jpeg" 11362 | }, 11363 | { 11364 | "id": 3274296, 11365 | "nr": 12, 11366 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-12.jpeg" 11367 | }, 11368 | { 11369 | "id": 3274305, 11370 | "nr": 13, 11371 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-13.jpeg" 11372 | }, 11373 | { 11374 | "id": 3274313, 11375 | "nr": 14, 11376 | "picture": "https://images.pexels.com/videos/5729485/pictures/preview-14.jpeg" 11377 | } 11378 | ] 11379 | }, 11380 | { 11381 | "id": 6299656, 11382 | "width": 1080, 11383 | "height": 1920, 11384 | "duration": 9, 11385 | "full_res": null, 11386 | "tags": [], 11387 | "url": "https://www.pexels.com/video/a-cute-dog-wearing-a-costume-for-christmas-6299656/", 11388 | "image": "https://images.pexels.com/videos/6299656/pexels-photo-6299656.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11389 | "avg_color": null, 11390 | "user": { 11391 | "id": 3684321, 11392 | "name": "Anna Bondarenko", 11393 | "url": "https://www.pexels.com/@aaa333" 11394 | }, 11395 | "video_files": [ 11396 | { 11397 | "id": 10033426, 11398 | "quality": "hd", 11399 | "file_type": "video/mp4", 11400 | "width": 1080, 11401 | "height": 1920, 11402 | "fps": 29.969999313354492, 11403 | "link": "https://videos.pexels.com/video-files/6299656/6299656-hd_1080_1920_30fps.mp4", 11404 | "size": 5694338 11405 | }, 11406 | { 11407 | "id": 10033475, 11408 | "quality": "hd", 11409 | "file_type": "video/mp4", 11410 | "width": 720, 11411 | "height": 1280, 11412 | "fps": 29.969999313354492, 11413 | "link": "https://videos.pexels.com/video-files/6299656/6299656-hd_720_1280_30fps.mp4", 11414 | "size": 2973463 11415 | }, 11416 | { 11417 | "id": 10033506, 11418 | "quality": "sd", 11419 | "file_type": "video/mp4", 11420 | "width": 360, 11421 | "height": 640, 11422 | "fps": 29.969999313354492, 11423 | "link": "https://videos.pexels.com/video-files/6299656/6299656-sd_360_640_30fps.mp4", 11424 | "size": 674933 11425 | }, 11426 | { 11427 | "id": 10033538, 11428 | "quality": "sd", 11429 | "file_type": "video/mp4", 11430 | "width": 240, 11431 | "height": 426, 11432 | "fps": 29.969999313354492, 11433 | "link": "https://videos.pexels.com/video-files/6299656/6299656-sd_240_426_30fps.mp4", 11434 | "size": 397348 11435 | }, 11436 | { 11437 | "id": 10033555, 11438 | "quality": "sd", 11439 | "file_type": "video/mp4", 11440 | "width": 540, 11441 | "height": 960, 11442 | "fps": 29.969999313354492, 11443 | "link": "https://videos.pexels.com/video-files/6299656/6299656-sd_540_960_30fps.mp4", 11444 | "size": 1872516 11445 | } 11446 | ], 11447 | "video_pictures": [ 11448 | { 11449 | "id": 4257446, 11450 | "nr": 0, 11451 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-0.jpeg" 11452 | }, 11453 | { 11454 | "id": 4257450, 11455 | "nr": 1, 11456 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-1.jpeg" 11457 | }, 11458 | { 11459 | "id": 4257452, 11460 | "nr": 2, 11461 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-2.jpeg" 11462 | }, 11463 | { 11464 | "id": 4257455, 11465 | "nr": 3, 11466 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-3.jpeg" 11467 | }, 11468 | { 11469 | "id": 4257457, 11470 | "nr": 4, 11471 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-4.jpeg" 11472 | }, 11473 | { 11474 | "id": 4257462, 11475 | "nr": 5, 11476 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-5.jpeg" 11477 | }, 11478 | { 11479 | "id": 4257467, 11480 | "nr": 6, 11481 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-6.jpeg" 11482 | }, 11483 | { 11484 | "id": 4257470, 11485 | "nr": 7, 11486 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-7.jpeg" 11487 | }, 11488 | { 11489 | "id": 4257476, 11490 | "nr": 8, 11491 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-8.jpeg" 11492 | }, 11493 | { 11494 | "id": 4257482, 11495 | "nr": 9, 11496 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-9.jpeg" 11497 | }, 11498 | { 11499 | "id": 4257487, 11500 | "nr": 10, 11501 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-10.jpeg" 11502 | }, 11503 | { 11504 | "id": 4257494, 11505 | "nr": 11, 11506 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-11.jpeg" 11507 | }, 11508 | { 11509 | "id": 4257498, 11510 | "nr": 12, 11511 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-12.jpeg" 11512 | }, 11513 | { 11514 | "id": 4257503, 11515 | "nr": 13, 11516 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-13.jpeg" 11517 | }, 11518 | { 11519 | "id": 4257507, 11520 | "nr": 14, 11521 | "picture": "https://images.pexels.com/videos/6299656/pictures/preview-14.jpeg" 11522 | } 11523 | ] 11524 | }, 11525 | { 11526 | "id": 31500738, 11527 | "width": 1080, 11528 | "height": 1920, 11529 | "duration": 5, 11530 | "full_res": null, 11531 | "tags": [], 11532 | "url": "https://www.pexels.com/video/playful-small-dog-running-in-garden-pathway-31500738/", 11533 | "image": "https://images.pexels.com/videos/31500738/pexels-photo-31500738.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11534 | "avg_color": null, 11535 | "user": { 11536 | "id": 889846793, 11537 | "name": "Mustafa ÇETİN", 11538 | "url": "https://www.pexels.com/@thecetin" 11539 | }, 11540 | "video_files": [ 11541 | { 11542 | "id": 13430512, 11543 | "quality": null, 11544 | "file_type": "video/mp4", 11545 | "width": 360, 11546 | "height": 640, 11547 | "fps": 59.939998626708984, 11548 | "link": "https://videos.pexels.com/video-files/31500738/13430512_360_640_60fps.mp4", 11549 | "size": 1540390 11550 | }, 11551 | { 11552 | "id": 13430513, 11553 | "quality": null, 11554 | "file_type": "video/mp4", 11555 | "width": 540, 11556 | "height": 960, 11557 | "fps": 59.939998626708984, 11558 | "link": "https://videos.pexels.com/video-files/31500738/13430513_540_960_60fps.mp4", 11559 | "size": 2628887 11560 | }, 11561 | { 11562 | "id": 13430514, 11563 | "quality": null, 11564 | "file_type": "video/mp4", 11565 | "width": 720, 11566 | "height": 1280, 11567 | "fps": 59.939998626708984, 11568 | "link": "https://videos.pexels.com/video-files/31500738/13430514_720_1280_60fps.mp4", 11569 | "size": 3976747 11570 | }, 11571 | { 11572 | "id": 13430515, 11573 | "quality": null, 11574 | "file_type": "video/mp4", 11575 | "width": 1080, 11576 | "height": 1920, 11577 | "fps": 59.939998626708984, 11578 | "link": "https://videos.pexels.com/video-files/31500738/13430515_1080_1920_60fps.mp4", 11579 | "size": 8098873 11580 | } 11581 | ], 11582 | "video_pictures": [ 11583 | { 11584 | "id": 25836029, 11585 | "nr": 0, 11586 | "picture": "https://images.pexels.com/videos/31500738/pictures/preview-0.jpg" 11587 | }, 11588 | { 11589 | "id": 25836030, 11590 | "nr": 1, 11591 | "picture": "https://images.pexels.com/videos/31500738/pictures/preview-1.jpg" 11592 | }, 11593 | { 11594 | "id": 25836031, 11595 | "nr": 2, 11596 | "picture": "https://images.pexels.com/videos/31500738/pictures/preview-2.jpg" 11597 | }, 11598 | { 11599 | "id": 25836032, 11600 | "nr": 3, 11601 | "picture": "https://images.pexels.com/videos/31500738/pictures/preview-3.jpg" 11602 | } 11603 | ] 11604 | }, 11605 | { 11606 | "id": 31458721, 11607 | "width": 2160, 11608 | "height": 3840, 11609 | "duration": 8, 11610 | "full_res": null, 11611 | "tags": [], 11612 | "url": "https://www.pexels.com/video/dog-shaped-cake-with-candle-in-cosy-setting-31458721/", 11613 | "image": "https://images.pexels.com/videos/31458721/pexels-photo-31458721.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11614 | "avg_color": null, 11615 | "user": { 11616 | "id": 555707524, 11617 | "name": "Beyza Ç.", 11618 | "url": "https://www.pexels.com/@beyza-c-555707524" 11619 | }, 11620 | "video_files": [ 11621 | { 11622 | "id": 13415104, 11623 | "quality": null, 11624 | "file_type": "video/mp4", 11625 | "width": 360, 11626 | "height": 640, 11627 | "fps": 59.939998626708984, 11628 | "link": "https://videos.pexels.com/video-files/31458721/13415104_360_640_60fps.mp4", 11629 | "size": 1257136 11630 | }, 11631 | { 11632 | "id": 13415105, 11633 | "quality": null, 11634 | "file_type": "video/mp4", 11635 | "width": 540, 11636 | "height": 960, 11637 | "fps": 59.939998626708984, 11638 | "link": "https://videos.pexels.com/video-files/31458721/13415105_540_960_60fps.mp4", 11639 | "size": 2218659 11640 | }, 11641 | { 11642 | "id": 13415106, 11643 | "quality": null, 11644 | "file_type": "video/mp4", 11645 | "width": 720, 11646 | "height": 1280, 11647 | "fps": 59.939998626708984, 11648 | "link": "https://videos.pexels.com/video-files/31458721/13415106_720_1280_60fps.mp4", 11649 | "size": 3302713 11650 | }, 11651 | { 11652 | "id": 13415107, 11653 | "quality": null, 11654 | "file_type": "video/mp4", 11655 | "width": 1080, 11656 | "height": 1920, 11657 | "fps": 59.939998626708984, 11658 | "link": "https://videos.pexels.com/video-files/31458721/13415107_1080_1920_60fps.mp4", 11659 | "size": 6882282 11660 | }, 11661 | { 11662 | "id": 13415108, 11663 | "quality": null, 11664 | "file_type": "video/mp4", 11665 | "width": 1440, 11666 | "height": 2560, 11667 | "fps": 59.939998626708984, 11668 | "link": "https://videos.pexels.com/video-files/31458721/13415108_1440_2560_60fps.mp4", 11669 | "size": 11637861 11670 | }, 11671 | { 11672 | "id": 13415109, 11673 | "quality": null, 11674 | "file_type": "video/mp4", 11675 | "width": 2160, 11676 | "height": 3840, 11677 | "fps": 59.939998626708984, 11678 | "link": "https://videos.pexels.com/video-files/31458721/13415109_2160_3840_60fps.mp4", 11679 | "size": 25787376 11680 | } 11681 | ], 11682 | "video_pictures": [ 11683 | { 11684 | "id": 25794838, 11685 | "nr": 0, 11686 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-0.jpg" 11687 | }, 11688 | { 11689 | "id": 25794839, 11690 | "nr": 1, 11691 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-1.jpg" 11692 | }, 11693 | { 11694 | "id": 25794840, 11695 | "nr": 2, 11696 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-2.jpg" 11697 | }, 11698 | { 11699 | "id": 25794841, 11700 | "nr": 3, 11701 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-3.jpg" 11702 | }, 11703 | { 11704 | "id": 25794842, 11705 | "nr": 4, 11706 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-4.jpg" 11707 | }, 11708 | { 11709 | "id": 25794843, 11710 | "nr": 5, 11711 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-5.jpg" 11712 | }, 11713 | { 11714 | "id": 25794844, 11715 | "nr": 6, 11716 | "picture": "https://images.pexels.com/videos/31458721/pictures/preview-6.jpg" 11717 | } 11718 | ] 11719 | }, 11720 | { 11721 | "id": 6507730, 11722 | "width": 1080, 11723 | "height": 1920, 11724 | "duration": 21, 11725 | "full_res": null, 11726 | "tags": [], 11727 | "url": "https://www.pexels.com/video/a-man-and-woman-standing-in-the-snow-near-a-tree-6507730/", 11728 | "image": "https://images.pexels.com/videos/6507730/abandoned-active-activity-adult-6507730.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11729 | "avg_color": null, 11730 | "user": { 11731 | "id": 11437196, 11732 | "name": "Mikhail Nilov", 11733 | "url": "https://www.pexels.com/@mikhail-nilov" 11734 | }, 11735 | "video_files": [ 11736 | { 11737 | "id": 10059475, 11738 | "quality": "sd", 11739 | "file_type": "video/mp4", 11740 | "width": 540, 11741 | "height": 960, 11742 | "fps": 25, 11743 | "link": "https://videos.pexels.com/video-files/6507730/6507730-sd_540_960_25fps.mp4", 11744 | "size": 3055122 11745 | }, 11746 | { 11747 | "id": 10059494, 11748 | "quality": "hd", 11749 | "file_type": "video/mp4", 11750 | "width": 1080, 11751 | "height": 1920, 11752 | "fps": 25, 11753 | "link": "https://videos.pexels.com/video-files/6507730/6507730-hd_1080_1920_25fps.mp4", 11754 | "size": 11725556 11755 | }, 11756 | { 11757 | "id": 10059639, 11758 | "quality": "sd", 11759 | "file_type": "video/mp4", 11760 | "width": 240, 11761 | "height": 426, 11762 | "fps": 25, 11763 | "link": "https://videos.pexels.com/video-files/6507730/6507730-sd_240_426_25fps.mp4", 11764 | "size": 772806 11765 | }, 11766 | { 11767 | "id": 10059738, 11768 | "quality": "hd", 11769 | "file_type": "video/mp4", 11770 | "width": 720, 11771 | "height": 1280, 11772 | "fps": 25, 11773 | "link": "https://videos.pexels.com/video-files/6507730/6507730-hd_720_1280_25fps.mp4", 11774 | "size": 5701463 11775 | }, 11776 | { 11777 | "id": 10059841, 11778 | "quality": "sd", 11779 | "file_type": "video/mp4", 11780 | "width": 360, 11781 | "height": 640, 11782 | "fps": 25, 11783 | "link": "https://videos.pexels.com/video-files/6507730/6507730-sd_360_640_25fps.mp4", 11784 | "size": 1170446 11785 | } 11786 | ], 11787 | "video_pictures": [ 11788 | { 11789 | "id": 4547885, 11790 | "nr": 0, 11791 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-0.jpeg" 11792 | }, 11793 | { 11794 | "id": 4547886, 11795 | "nr": 1, 11796 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-1.jpeg" 11797 | }, 11798 | { 11799 | "id": 4547887, 11800 | "nr": 2, 11801 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-2.jpeg" 11802 | }, 11803 | { 11804 | "id": 4547889, 11805 | "nr": 3, 11806 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-3.jpeg" 11807 | }, 11808 | { 11809 | "id": 4547891, 11810 | "nr": 4, 11811 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-4.jpeg" 11812 | }, 11813 | { 11814 | "id": 4547893, 11815 | "nr": 5, 11816 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-5.jpeg" 11817 | }, 11818 | { 11819 | "id": 4547897, 11820 | "nr": 6, 11821 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-6.jpeg" 11822 | }, 11823 | { 11824 | "id": 4547899, 11825 | "nr": 7, 11826 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-7.jpeg" 11827 | }, 11828 | { 11829 | "id": 4547901, 11830 | "nr": 8, 11831 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-8.jpeg" 11832 | }, 11833 | { 11834 | "id": 4547904, 11835 | "nr": 9, 11836 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-9.jpeg" 11837 | }, 11838 | { 11839 | "id": 4547907, 11840 | "nr": 10, 11841 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-10.jpeg" 11842 | }, 11843 | { 11844 | "id": 4547909, 11845 | "nr": 11, 11846 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-11.jpeg" 11847 | }, 11848 | { 11849 | "id": 4547912, 11850 | "nr": 12, 11851 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-12.jpeg" 11852 | }, 11853 | { 11854 | "id": 4547914, 11855 | "nr": 13, 11856 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-13.jpeg" 11857 | }, 11858 | { 11859 | "id": 4547916, 11860 | "nr": 14, 11861 | "picture": "https://images.pexels.com/videos/6507730/pictures/preview-14.jpeg" 11862 | } 11863 | ] 11864 | }, 11865 | { 11866 | "id": 9632457, 11867 | "width": 2160, 11868 | "height": 4096, 11869 | "duration": 12, 11870 | "full_res": null, 11871 | "tags": [], 11872 | "url": "https://www.pexels.com/video/woman-petting-her-dog-while-sitting-on-an-outdoor-sofa-9632457/", 11873 | "image": "https://images.pexels.com/videos/9632457/dog-girl-with-dog-husky-longboard-9632457.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 11874 | "avg_color": null, 11875 | "user": { 11876 | "id": 649765, 11877 | "name": "Yaroslav Shuraev", 11878 | "url": "https://www.pexels.com/@yaroslav-shuraev" 11879 | }, 11880 | "video_files": [ 11881 | { 11882 | "id": 11138943, 11883 | "quality": "sd", 11884 | "file_type": "video/mp4", 11885 | "width": 226, 11886 | "height": 426, 11887 | "fps": 24, 11888 | "link": "https://videos.pexels.com/video-files/9632457/9632457-sd_226_426_24fps.mp4", 11889 | "size": 493861 11890 | }, 11891 | { 11892 | "id": 11138968, 11893 | "quality": "sd", 11894 | "file_type": "video/mp4", 11895 | "width": 506, 11896 | "height": 960, 11897 | "fps": 24, 11898 | "link": "https://videos.pexels.com/video-files/9632457/9632457-sd_506_960_24fps.mp4", 11899 | "size": 1894613 11900 | }, 11901 | { 11902 | "id": 11139003, 11903 | "quality": "hd", 11904 | "file_type": "video/mp4", 11905 | "width": 1080, 11906 | "height": 2048, 11907 | "fps": 24, 11908 | "link": "https://videos.pexels.com/video-files/9632457/9632457-hd_1080_2048_24fps.mp4", 11909 | "size": 6629015 11910 | }, 11911 | { 11912 | "id": 11139028, 11913 | "quality": "sd", 11914 | "file_type": "video/mp4", 11915 | "width": 338, 11916 | "height": 640, 11917 | "fps": 24, 11918 | "link": "https://videos.pexels.com/video-files/9632457/9632457-sd_338_640_24fps.mp4", 11919 | "size": 677286 11920 | }, 11921 | { 11922 | "id": 11139062, 11923 | "quality": "uhd", 11924 | "file_type": "video/mp4", 11925 | "width": 2160, 11926 | "height": 4096, 11927 | "fps": 24, 11928 | "link": "https://videos.pexels.com/video-files/9632457/9632457-uhd_2160_4096_24fps.mp4", 11929 | "size": 32808266 11930 | }, 11931 | { 11932 | "id": 11139110, 11933 | "quality": "uhd", 11934 | "file_type": "video/mp4", 11935 | "width": 1440, 11936 | "height": 2732, 11937 | "fps": 24, 11938 | "link": "https://videos.pexels.com/video-files/9632457/9632457-uhd_1440_2732_24fps.mp4", 11939 | "size": 14161095 11940 | }, 11941 | { 11942 | "id": 11139135, 11943 | "quality": "hd", 11944 | "file_type": "video/mp4", 11945 | "width": 720, 11946 | "height": 1366, 11947 | "fps": 24, 11948 | "link": "https://videos.pexels.com/video-files/9632457/9632457-hd_720_1366_24fps.mp4", 11949 | "size": 3565742 11950 | } 11951 | ], 11952 | "video_pictures": [ 11953 | { 11954 | "id": 9952524, 11955 | "nr": 0, 11956 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-0.jpeg" 11957 | }, 11958 | { 11959 | "id": 9952540, 11960 | "nr": 1, 11961 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-1.jpeg" 11962 | }, 11963 | { 11964 | "id": 9952566, 11965 | "nr": 2, 11966 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-2.jpeg" 11967 | }, 11968 | { 11969 | "id": 9952590, 11970 | "nr": 3, 11971 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-3.jpeg" 11972 | }, 11973 | { 11974 | "id": 9952611, 11975 | "nr": 4, 11976 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-4.jpeg" 11977 | }, 11978 | { 11979 | "id": 9952624, 11980 | "nr": 5, 11981 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-5.jpeg" 11982 | }, 11983 | { 11984 | "id": 9952635, 11985 | "nr": 6, 11986 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-6.jpeg" 11987 | }, 11988 | { 11989 | "id": 9952646, 11990 | "nr": 7, 11991 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-7.jpeg" 11992 | }, 11993 | { 11994 | "id": 9952660, 11995 | "nr": 8, 11996 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-8.jpeg" 11997 | }, 11998 | { 11999 | "id": 9952673, 12000 | "nr": 9, 12001 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-9.jpeg" 12002 | }, 12003 | { 12004 | "id": 9952682, 12005 | "nr": 10, 12006 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-10.jpeg" 12007 | }, 12008 | { 12009 | "id": 9952689, 12010 | "nr": 11, 12011 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-11.jpeg" 12012 | }, 12013 | { 12014 | "id": 9952697, 12015 | "nr": 12, 12016 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-12.jpeg" 12017 | }, 12018 | { 12019 | "id": 9952704, 12020 | "nr": 13, 12021 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-13.jpeg" 12022 | }, 12023 | { 12024 | "id": 9952706, 12025 | "nr": 14, 12026 | "picture": "https://images.pexels.com/videos/9632457/pictures/preview-14.jpeg" 12027 | } 12028 | ] 12029 | }, 12030 | { 12031 | "id": 19824572, 12032 | "width": 2160, 12033 | "height": 3840, 12034 | "duration": 2, 12035 | "full_res": null, 12036 | "tags": [], 12037 | "url": "https://www.pexels.com/video/un-chien-qui-court-sur-la-plage-19824572/", 12038 | "image": "https://images.pexels.com/videos/19824572/animal-baby-dog-beach-cliffside-19824572.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 12039 | "avg_color": null, 12040 | "user": { 12041 | "id": 363898785, 12042 | "name": "Clément Proust", 12043 | "url": "https://www.pexels.com/@clement-proust-363898785" 12044 | }, 12045 | "video_files": [ 12046 | { 12047 | "id": 8706131, 12048 | "quality": "sd", 12049 | "file_type": "video/mp4", 12050 | "width": 360, 12051 | "height": 640, 12052 | "fps": 25, 12053 | "link": "https://videos.pexels.com/video-files/19824572/19824572-sd_360_640_25fps.mp4", 12054 | "size": 240958 12055 | }, 12056 | { 12057 | "id": 8706132, 12058 | "quality": "hd", 12059 | "file_type": "video/mp4", 12060 | "width": 1080, 12061 | "height": 1920, 12062 | "fps": 50, 12063 | "link": "https://videos.pexels.com/video-files/19824572/19824572-hd_1080_1920_50fps.mp4", 12064 | "size": 1343926 12065 | }, 12066 | { 12067 | "id": 8706133, 12068 | "quality": "uhd", 12069 | "file_type": "video/mp4", 12070 | "width": 1440, 12071 | "height": 2560, 12072 | "fps": 50, 12073 | "link": "https://videos.pexels.com/video-files/19824572/19824572-uhd_1440_2560_50fps.mp4", 12074 | "size": 2914955 12075 | }, 12076 | { 12077 | "id": 8706134, 12078 | "quality": "uhd", 12079 | "file_type": "video/mp4", 12080 | "width": 2160, 12081 | "height": 3840, 12082 | "fps": 50, 12083 | "link": "https://videos.pexels.com/video-files/19824572/19824572-uhd_2160_3840_50fps.mp4", 12084 | "size": 5768469 12085 | }, 12086 | { 12087 | "id": 8706135, 12088 | "quality": "sd", 12089 | "file_type": "video/mp4", 12090 | "width": 540, 12091 | "height": 960, 12092 | "fps": 25, 12093 | "link": "https://videos.pexels.com/video-files/19824572/19824572-sd_540_960_25fps.mp4", 12094 | "size": 397594 12095 | }, 12096 | { 12097 | "id": 8706136, 12098 | "quality": "sd", 12099 | "file_type": "video/mp4", 12100 | "width": 240, 12101 | "height": 426, 12102 | "fps": 25, 12103 | "link": "https://videos.pexels.com/video-files/19824572/19824572-sd_240_426_25fps.mp4", 12104 | "size": 145591 12105 | }, 12106 | { 12107 | "id": 8706137, 12108 | "quality": "hd", 12109 | "file_type": "video/mp4", 12110 | "width": 720, 12111 | "height": 1280, 12112 | "fps": 50, 12113 | "link": "https://videos.pexels.com/video-files/19824572/19824572-hd_720_1280_50fps.mp4", 12114 | "size": 732186 12115 | } 12116 | ], 12117 | "video_pictures": [ 12118 | { 12119 | "id": 20697000, 12120 | "nr": 0, 12121 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-0.jpeg" 12122 | }, 12123 | { 12124 | "id": 20697011, 12125 | "nr": 1, 12126 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-1.jpeg" 12127 | }, 12128 | { 12129 | "id": 20697020, 12130 | "nr": 2, 12131 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-2.jpeg" 12132 | }, 12133 | { 12134 | "id": 20697029, 12135 | "nr": 3, 12136 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-3.jpeg" 12137 | }, 12138 | { 12139 | "id": 20697040, 12140 | "nr": 4, 12141 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-4.jpeg" 12142 | }, 12143 | { 12144 | "id": 20697052, 12145 | "nr": 5, 12146 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-5.jpeg" 12147 | }, 12148 | { 12149 | "id": 20697063, 12150 | "nr": 6, 12151 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-6.jpeg" 12152 | }, 12153 | { 12154 | "id": 20697069, 12155 | "nr": 7, 12156 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-7.jpeg" 12157 | }, 12158 | { 12159 | "id": 20697079, 12160 | "nr": 8, 12161 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-8.jpeg" 12162 | }, 12163 | { 12164 | "id": 20697087, 12165 | "nr": 9, 12166 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-9.jpeg" 12167 | }, 12168 | { 12169 | "id": 20697097, 12170 | "nr": 10, 12171 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-10.jpeg" 12172 | }, 12173 | { 12174 | "id": 20697107, 12175 | "nr": 11, 12176 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-11.jpeg" 12177 | }, 12178 | { 12179 | "id": 20697114, 12180 | "nr": 12, 12181 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-12.jpeg" 12182 | }, 12183 | { 12184 | "id": 20697125, 12185 | "nr": 13, 12186 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-13.jpeg" 12187 | }, 12188 | { 12189 | "id": 20697132, 12190 | "nr": 14, 12191 | "picture": "https://images.pexels.com/videos/19824572/pictures/preview-14.jpeg" 12192 | } 12193 | ] 12194 | }, 12195 | { 12196 | "id": 15753592, 12197 | "width": 1080, 12198 | "height": 1920, 12199 | "duration": 12, 12200 | "full_res": null, 12201 | "tags": [], 12202 | "url": "https://www.pexels.com/video/an-adorable-puppy-running-inside-the-house-15753592/", 12203 | "image": "https://images.pexels.com/videos/15753592/pexels-photo-15753592.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=630", 12204 | "avg_color": null, 12205 | "user": { 12206 | "id": 222333082, 12207 | "name": "Fernando Gomez Cortes", 12208 | "url": "https://www.pexels.com/@fernandocortes" 12209 | }, 12210 | "video_files": [ 12211 | { 12212 | "id": 6495738, 12213 | "quality": "hd", 12214 | "file_type": "video/mp4", 12215 | "width": 1080, 12216 | "height": 1920, 12217 | "fps": 29.969999313354492, 12218 | "link": "https://videos.pexels.com/video-files/15753592/15753592-hd_1080_1920_30fps.mp4", 12219 | "size": 7318486 12220 | }, 12221 | { 12222 | "id": 6495739, 12223 | "quality": "sd", 12224 | "file_type": "video/mp4", 12225 | "width": 540, 12226 | "height": 960, 12227 | "fps": 29.969999313354492, 12228 | "link": "https://videos.pexels.com/video-files/15753592/15753592-sd_540_960_30fps.mp4", 12229 | "size": 2027466 12230 | }, 12231 | { 12232 | "id": 6495740, 12233 | "quality": "hd", 12234 | "file_type": "video/mp4", 12235 | "width": 720, 12236 | "height": 1280, 12237 | "fps": 29.969999313354492, 12238 | "link": "https://videos.pexels.com/video-files/15753592/15753592-hd_720_1280_30fps.mp4", 12239 | "size": 3348691 12240 | }, 12241 | { 12242 | "id": 6495741, 12243 | "quality": "sd", 12244 | "file_type": "video/mp4", 12245 | "width": 240, 12246 | "height": 426, 12247 | "fps": 29.969999313354492, 12248 | "link": "https://videos.pexels.com/video-files/15753592/15753592-sd_240_426_30fps.mp4", 12249 | "size": 507691 12250 | }, 12251 | { 12252 | "id": 6495742, 12253 | "quality": "sd", 12254 | "file_type": "video/mp4", 12255 | "width": 360, 12256 | "height": 640, 12257 | "fps": 29.969999313354492, 12258 | "link": "https://videos.pexels.com/video-files/15753592/15753592-sd_360_640_30fps.mp4", 12259 | "size": 1113969 12260 | } 12261 | ], 12262 | "video_pictures": [ 12263 | { 12264 | "id": 16609796, 12265 | "nr": 0, 12266 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-0.jpeg" 12267 | }, 12268 | { 12269 | "id": 16609803, 12270 | "nr": 1, 12271 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-1.jpeg" 12272 | }, 12273 | { 12274 | "id": 16609810, 12275 | "nr": 2, 12276 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-2.jpeg" 12277 | }, 12278 | { 12279 | "id": 16609817, 12280 | "nr": 3, 12281 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-3.jpeg" 12282 | }, 12283 | { 12284 | "id": 16609827, 12285 | "nr": 4, 12286 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-4.jpeg" 12287 | }, 12288 | { 12289 | "id": 16609833, 12290 | "nr": 5, 12291 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-5.jpeg" 12292 | }, 12293 | { 12294 | "id": 16609840, 12295 | "nr": 6, 12296 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-6.jpeg" 12297 | }, 12298 | { 12299 | "id": 16609845, 12300 | "nr": 7, 12301 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-7.jpeg" 12302 | }, 12303 | { 12304 | "id": 16609853, 12305 | "nr": 8, 12306 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-8.jpeg" 12307 | }, 12308 | { 12309 | "id": 16609861, 12310 | "nr": 9, 12311 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-9.jpeg" 12312 | }, 12313 | { 12314 | "id": 16609868, 12315 | "nr": 10, 12316 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-10.jpeg" 12317 | }, 12318 | { 12319 | "id": 16609874, 12320 | "nr": 11, 12321 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-11.jpeg" 12322 | }, 12323 | { 12324 | "id": 16609882, 12325 | "nr": 12, 12326 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-12.jpeg" 12327 | }, 12328 | { 12329 | "id": 16609890, 12330 | "nr": 13, 12331 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-13.jpeg" 12332 | }, 12333 | { 12334 | "id": 16609898, 12335 | "nr": 14, 12336 | "picture": "https://images.pexels.com/videos/15753592/pictures/preview-14.jpeg" 12337 | } 12338 | ] 12339 | } 12340 | ], 12341 | "total_results": 2279, 12342 | "next_page": "https://api.pexels.com/v1/videos/search?orientation=portrait&page=2&per_page=80&query=dog&size=medium", 12343 | "url": "https://api-server.pexels.com/search/videos/dog/" 12344 | } 12345 | ```