File size: 188,966 Bytes
f8ba0eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 |
2025-08-18 23:49:46 - INFO - Loading model: LiquidAI/LFM2-VL-1.6B
2025-08-18 23:49:48 - INFO - We will use 90% of the memory on device 0 for storing the model, and 10% for the buffer to avoid OOM. You can set `max_memory` in to a higher value to use more memory (at your own risk).
2025-08-18 23:49:54 - INFO - Model loaded in 7.69 seconds
2025-08-18 23:49:54 - INFO - GPU Memory Usage after model load: 3023.64 MB
2025-08-18 23:50:07 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_001.mp4'
2025-08-18 23:50:07 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Video saved to temporary file: temp_videos/5b85d146-bffa-4d71-9f4d-1cadc376ace1.mp4
2025-08-18 23:50:07 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:50:11 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:50:11 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] 30 frames saved to temp_videos/5b85d146-bffa-4d71-9f4d-1cadc376ace1
2025-08-18 23:50:11 - INFO - Prompt token length: 3584
2025-08-18 23:50:28 - INFO - Tokens per second: 39.115405931589194, Peak GPU memory MB: 9376.375
2025-08-18 23:50:28 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Inference time: 20.54 seconds, CPU usage: 66.5%, CPU core utilization: [64.7, 59.3, 65.1, 76.8]
2025-08-18 23:50:28 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Cleaned up temporary file: temp_videos/5b85d146-bffa-4d71-9f4d-1cadc376ace1.mp4
2025-08-18 23:50:28 - INFO - [5b85d146-bffa-4d71-9f4d-1cadc376ace1] Cleaned up temporary frame directory: temp_videos/5b85d146-bffa-4d71-9f4d-1cadc376ace1
2025-08-18 23:50:28 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_002.mp4'
2025-08-18 23:50:28 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Video saved to temporary file: temp_videos/e4be9349-3e3e-444d-8ae6-ac443c37f4a7.mp4
2025-08-18 23:50:28 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:50:37 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:50:37 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] 30 frames saved to temp_videos/e4be9349-3e3e-444d-8ae6-ac443c37f4a7
2025-08-18 23:50:38 - INFO - Prompt token length: 3584
2025-08-18 23:50:55 - INFO - Tokens per second: 41.680290716366436, Peak GPU memory MB: 9376.375
2025-08-18 23:50:55 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Inference time: 26.45 seconds, CPU usage: 81.6%, CPU core utilization: [79.6, 82.3, 82.8, 81.6]
2025-08-18 23:50:55 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Cleaned up temporary file: temp_videos/e4be9349-3e3e-444d-8ae6-ac443c37f4a7.mp4
2025-08-18 23:50:55 - INFO - [e4be9349-3e3e-444d-8ae6-ac443c37f4a7] Cleaned up temporary frame directory: temp_videos/e4be9349-3e3e-444d-8ae6-ac443c37f4a7
2025-08-18 23:50:55 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_003.mp4'
2025-08-18 23:50:55 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Video saved to temporary file: temp_videos/491dbeca-2fe9-4af9-bfe2-a41fae17a378.mp4
2025-08-18 23:50:55 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:51:02 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:51:02 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] 30 frames saved to temp_videos/491dbeca-2fe9-4af9-bfe2-a41fae17a378
2025-08-18 23:51:02 - INFO - Prompt token length: 3584
2025-08-18 23:51:21 - INFO - Tokens per second: 40.298898666280635, Peak GPU memory MB: 9376.375
2025-08-18 23:51:21 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Inference time: 26.21 seconds, CPU usage: 81.7%, CPU core utilization: [78.7, 80.5, 83.6, 83.9]
2025-08-18 23:51:21 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Cleaned up temporary file: temp_videos/491dbeca-2fe9-4af9-bfe2-a41fae17a378.mp4
2025-08-18 23:51:21 - INFO - [491dbeca-2fe9-4af9-bfe2-a41fae17a378] Cleaned up temporary frame directory: temp_videos/491dbeca-2fe9-4af9-bfe2-a41fae17a378
2025-08-18 23:51:21 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_004.mp4'
2025-08-18 23:51:21 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Video saved to temporary file: temp_videos/ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6.mp4
2025-08-18 23:51:21 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:51:29 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:51:29 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] 30 frames saved to temp_videos/ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6
2025-08-18 23:51:29 - INFO - Prompt token length: 3584
2025-08-18 23:51:46 - INFO - Tokens per second: 40.64591219302388, Peak GPU memory MB: 9376.375
2025-08-18 23:51:46 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Inference time: 25.53 seconds, CPU usage: 77.0%, CPU core utilization: [74.3, 78.8, 81.3, 73.5]
2025-08-18 23:51:46 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Cleaned up temporary file: temp_videos/ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6.mp4
2025-08-18 23:51:46 - INFO - [ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6] Cleaned up temporary frame directory: temp_videos/ae624dc9-ae3c-4a66-b0af-5e7bdd0016c6
2025-08-18 23:51:46 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_005.mp4'
2025-08-18 23:51:46 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Video saved to temporary file: temp_videos/fa4499ec-e2f9-406a-8244-3903201f6f87.mp4
2025-08-18 23:51:46 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:51:55 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:51:55 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] 30 frames saved to temp_videos/fa4499ec-e2f9-406a-8244-3903201f6f87
2025-08-18 23:51:55 - INFO - Prompt token length: 3584
2025-08-18 23:52:13 - INFO - Tokens per second: 40.392638063278525, Peak GPU memory MB: 9376.375
2025-08-18 23:52:13 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Inference time: 26.59 seconds, CPU usage: 78.7%, CPU core utilization: [82.9, 76.9, 73.8, 81.1]
2025-08-18 23:52:13 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Cleaned up temporary file: temp_videos/fa4499ec-e2f9-406a-8244-3903201f6f87.mp4
2025-08-18 23:52:13 - INFO - [fa4499ec-e2f9-406a-8244-3903201f6f87] Cleaned up temporary frame directory: temp_videos/fa4499ec-e2f9-406a-8244-3903201f6f87
2025-08-18 23:52:13 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_006.mp4'
2025-08-18 23:52:13 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Video saved to temporary file: temp_videos/32783f23-25a0-44e1-b0af-56305229da2c.mp4
2025-08-18 23:52:13 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:52:22 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:52:22 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] 30 frames saved to temp_videos/32783f23-25a0-44e1-b0af-56305229da2c
2025-08-18 23:52:22 - INFO - Prompt token length: 3584
2025-08-18 23:52:40 - INFO - Tokens per second: 39.74288596804158, Peak GPU memory MB: 9376.375
2025-08-18 23:52:40 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Inference time: 27.09 seconds, CPU usage: 78.7%, CPU core utilization: [75.1, 72.3, 82.9, 84.5]
2025-08-18 23:52:40 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Cleaned up temporary file: temp_videos/32783f23-25a0-44e1-b0af-56305229da2c.mp4
2025-08-18 23:52:40 - INFO - [32783f23-25a0-44e1-b0af-56305229da2c] Cleaned up temporary frame directory: temp_videos/32783f23-25a0-44e1-b0af-56305229da2c
2025-08-18 23:52:40 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_007.mp4'
2025-08-18 23:52:40 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Video saved to temporary file: temp_videos/053bc21e-d02a-43eb-bf76-48cc75ee194d.mp4
2025-08-18 23:52:40 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:52:49 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:52:49 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] 30 frames saved to temp_videos/053bc21e-d02a-43eb-bf76-48cc75ee194d
2025-08-18 23:52:50 - INFO - Prompt token length: 3584
2025-08-18 23:53:07 - INFO - Tokens per second: 41.13905098824316, Peak GPU memory MB: 9376.375
2025-08-18 23:53:07 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Inference time: 26.66 seconds, CPU usage: 82.0%, CPU core utilization: [73.4, 81.4, 92.3, 80.9]
2025-08-18 23:53:07 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Cleaned up temporary file: temp_videos/053bc21e-d02a-43eb-bf76-48cc75ee194d.mp4
2025-08-18 23:53:07 - INFO - [053bc21e-d02a-43eb-bf76-48cc75ee194d] Cleaned up temporary frame directory: temp_videos/053bc21e-d02a-43eb-bf76-48cc75ee194d
2025-08-18 23:53:07 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_008.mp4'
2025-08-18 23:53:07 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Video saved to temporary file: temp_videos/85e10722-b00d-4634-b9b6-47562a83db92.mp4
2025-08-18 23:53:07 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:53:14 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:53:14 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] 30 frames saved to temp_videos/85e10722-b00d-4634-b9b6-47562a83db92
2025-08-18 23:53:14 - INFO - Prompt token length: 3584
2025-08-18 23:53:32 - INFO - Tokens per second: 40.618019438790945, Peak GPU memory MB: 9376.375
2025-08-18 23:53:32 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Inference time: 25.06 seconds, CPU usage: 78.6%, CPU core utilization: [76.3, 76.6, 77.4, 84.2]
2025-08-18 23:53:32 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Cleaned up temporary file: temp_videos/85e10722-b00d-4634-b9b6-47562a83db92.mp4
2025-08-18 23:53:32 - INFO - [85e10722-b00d-4634-b9b6-47562a83db92] Cleaned up temporary frame directory: temp_videos/85e10722-b00d-4634-b9b6-47562a83db92
2025-08-18 23:53:32 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_009.mp4'
2025-08-18 23:53:32 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Video saved to temporary file: temp_videos/9ab2e59d-198f-464b-a002-556f22438f14.mp4
2025-08-18 23:53:32 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:53:38 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:53:38 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] 30 frames saved to temp_videos/9ab2e59d-198f-464b-a002-556f22438f14
2025-08-18 23:53:39 - INFO - Prompt token length: 3584
2025-08-18 23:53:56 - INFO - Tokens per second: 40.50383986283677, Peak GPU memory MB: 9376.375
2025-08-18 23:53:56 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Inference time: 24.17 seconds, CPU usage: 79.8%, CPU core utilization: [80.5, 76.1, 81.0, 81.6]
2025-08-18 23:53:56 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Cleaned up temporary file: temp_videos/9ab2e59d-198f-464b-a002-556f22438f14.mp4
2025-08-18 23:53:56 - INFO - [9ab2e59d-198f-464b-a002-556f22438f14] Cleaned up temporary frame directory: temp_videos/9ab2e59d-198f-464b-a002-556f22438f14
2025-08-18 23:53:56 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_010.mp4'
2025-08-18 23:53:56 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Video saved to temporary file: temp_videos/c7e8e335-61bb-4b6c-8ec6-242d64217f34.mp4
2025-08-18 23:53:56 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:54:03 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:54:03 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] 30 frames saved to temp_videos/c7e8e335-61bb-4b6c-8ec6-242d64217f34
2025-08-18 23:54:04 - INFO - Prompt token length: 3584
2025-08-18 23:54:21 - INFO - Tokens per second: 38.89654933093534, Peak GPU memory MB: 9376.375
2025-08-18 23:54:21 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Inference time: 24.53 seconds, CPU usage: 78.8%, CPU core utilization: [72.9, 80.8, 84.5, 77.0]
2025-08-18 23:54:21 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Cleaned up temporary file: temp_videos/c7e8e335-61bb-4b6c-8ec6-242d64217f34.mp4
2025-08-18 23:54:21 - INFO - [c7e8e335-61bb-4b6c-8ec6-242d64217f34] Cleaned up temporary frame directory: temp_videos/c7e8e335-61bb-4b6c-8ec6-242d64217f34
2025-08-18 23:54:21 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_011.mp4'
2025-08-18 23:54:21 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Video saved to temporary file: temp_videos/49b2becb-b56a-4c77-a438-90950cf5a671.mp4
2025-08-18 23:54:21 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:54:28 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:54:28 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] 30 frames saved to temp_videos/49b2becb-b56a-4c77-a438-90950cf5a671
2025-08-18 23:54:29 - INFO - Prompt token length: 3584
2025-08-18 23:54:46 - INFO - Tokens per second: 39.596664910065556, Peak GPU memory MB: 9376.375
2025-08-18 23:54:46 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Inference time: 25.26 seconds, CPU usage: 82.3%, CPU core utilization: [85.2, 80.6, 78.8, 84.8]
2025-08-18 23:54:46 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Cleaned up temporary file: temp_videos/49b2becb-b56a-4c77-a438-90950cf5a671.mp4
2025-08-18 23:54:46 - INFO - [49b2becb-b56a-4c77-a438-90950cf5a671] Cleaned up temporary frame directory: temp_videos/49b2becb-b56a-4c77-a438-90950cf5a671
2025-08-18 23:54:46 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_012.mp4'
2025-08-18 23:54:46 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Video saved to temporary file: temp_videos/456dd4dc-57b2-4a69-b2ce-7c75962473f9.mp4
2025-08-18 23:54:46 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:54:54 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:54:54 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] 30 frames saved to temp_videos/456dd4dc-57b2-4a69-b2ce-7c75962473f9
2025-08-18 23:54:55 - INFO - Prompt token length: 3584
2025-08-18 23:55:13 - INFO - Tokens per second: 37.65531289972925, Peak GPU memory MB: 9376.375
2025-08-18 23:55:13 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Inference time: 26.73 seconds, CPU usage: 81.6%, CPU core utilization: [77.8, 81.0, 87.1, 80.5]
2025-08-18 23:55:13 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Cleaned up temporary file: temp_videos/456dd4dc-57b2-4a69-b2ce-7c75962473f9.mp4
2025-08-18 23:55:13 - INFO - [456dd4dc-57b2-4a69-b2ce-7c75962473f9] Cleaned up temporary frame directory: temp_videos/456dd4dc-57b2-4a69-b2ce-7c75962473f9
2025-08-18 23:55:13 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_013.mp4'
2025-08-18 23:55:13 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Video saved to temporary file: temp_videos/32a5d257-89ba-428b-a57b-e112ee1b6d6c.mp4
2025-08-18 23:55:13 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:55:22 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:55:22 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] 30 frames saved to temp_videos/32a5d257-89ba-428b-a57b-e112ee1b6d6c
2025-08-18 23:55:22 - INFO - Prompt token length: 3584
2025-08-18 23:55:40 - INFO - Tokens per second: 41.228258805708954, Peak GPU memory MB: 9376.375
2025-08-18 23:55:40 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Inference time: 26.69 seconds, CPU usage: 77.5%, CPU core utilization: [80.0, 75.9, 74.8, 79.5]
2025-08-18 23:55:40 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Cleaned up temporary file: temp_videos/32a5d257-89ba-428b-a57b-e112ee1b6d6c.mp4
2025-08-18 23:55:40 - INFO - [32a5d257-89ba-428b-a57b-e112ee1b6d6c] Cleaned up temporary frame directory: temp_videos/32a5d257-89ba-428b-a57b-e112ee1b6d6c
2025-08-18 23:55:40 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_014.mp4'
2025-08-18 23:55:40 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Video saved to temporary file: temp_videos/58c62ee2-ee58-45e8-8112-7b73ac24b97b.mp4
2025-08-18 23:55:40 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:55:48 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:55:48 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] 30 frames saved to temp_videos/58c62ee2-ee58-45e8-8112-7b73ac24b97b
2025-08-18 23:55:48 - INFO - Prompt token length: 3584
2025-08-18 23:56:05 - INFO - Tokens per second: 41.332802503833406, Peak GPU memory MB: 9376.375
2025-08-18 23:56:05 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Inference time: 25.00 seconds, CPU usage: 77.5%, CPU core utilization: [79.1, 64.7, 75.0, 91.1]
2025-08-18 23:56:05 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Cleaned up temporary file: temp_videos/58c62ee2-ee58-45e8-8112-7b73ac24b97b.mp4
2025-08-18 23:56:05 - INFO - [58c62ee2-ee58-45e8-8112-7b73ac24b97b] Cleaned up temporary frame directory: temp_videos/58c62ee2-ee58-45e8-8112-7b73ac24b97b
2025-08-18 23:56:05 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_015.mp4'
2025-08-18 23:56:05 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Video saved to temporary file: temp_videos/6b87fc41-21f7-49bd-b94b-53e37f44a55b.mp4
2025-08-18 23:56:05 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:56:14 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:56:14 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] 30 frames saved to temp_videos/6b87fc41-21f7-49bd-b94b-53e37f44a55b
2025-08-18 23:56:14 - INFO - Prompt token length: 3584
2025-08-18 23:56:32 - INFO - Tokens per second: 36.78989463023373, Peak GPU memory MB: 9376.375
2025-08-18 23:56:32 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Inference time: 26.94 seconds, CPU usage: 80.8%, CPU core utilization: [84.7, 70.3, 74.8, 93.2]
2025-08-18 23:56:32 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Cleaned up temporary file: temp_videos/6b87fc41-21f7-49bd-b94b-53e37f44a55b.mp4
2025-08-18 23:56:32 - INFO - [6b87fc41-21f7-49bd-b94b-53e37f44a55b] Cleaned up temporary frame directory: temp_videos/6b87fc41-21f7-49bd-b94b-53e37f44a55b
2025-08-18 23:56:32 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_016.mp4'
2025-08-18 23:56:32 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Video saved to temporary file: temp_videos/c5c05ef2-ccb0-4476-b920-4faf8cf09dcc.mp4
2025-08-18 23:56:32 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:56:38 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:56:38 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] 30 frames saved to temp_videos/c5c05ef2-ccb0-4476-b920-4faf8cf09dcc
2025-08-18 23:56:38 - INFO - Prompt token length: 3584
2025-08-18 23:56:56 - INFO - Tokens per second: 40.060213000999134, Peak GPU memory MB: 9376.375
2025-08-18 23:56:56 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Inference time: 24.31 seconds, CPU usage: 75.3%, CPU core utilization: [72.0, 74.7, 80.4, 74.0]
2025-08-18 23:56:56 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Cleaned up temporary file: temp_videos/c5c05ef2-ccb0-4476-b920-4faf8cf09dcc.mp4
2025-08-18 23:56:56 - INFO - [c5c05ef2-ccb0-4476-b920-4faf8cf09dcc] Cleaned up temporary frame directory: temp_videos/c5c05ef2-ccb0-4476-b920-4faf8cf09dcc
2025-08-18 23:56:56 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_017.mp4'
2025-08-18 23:56:56 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Video saved to temporary file: temp_videos/f4d1184d-df43-4b9a-852e-24b07020123e.mp4
2025-08-18 23:56:56 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:57:04 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:57:04 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] 30 frames saved to temp_videos/f4d1184d-df43-4b9a-852e-24b07020123e
2025-08-18 23:57:05 - INFO - Prompt token length: 3584
2025-08-18 23:57:22 - INFO - Tokens per second: 36.93354278794345, Peak GPU memory MB: 9376.375
2025-08-18 23:57:22 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Inference time: 26.13 seconds, CPU usage: 83.1%, CPU core utilization: [84.8, 76.8, 77.8, 93.1]
2025-08-18 23:57:22 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Cleaned up temporary file: temp_videos/f4d1184d-df43-4b9a-852e-24b07020123e.mp4
2025-08-18 23:57:22 - INFO - [f4d1184d-df43-4b9a-852e-24b07020123e] Cleaned up temporary frame directory: temp_videos/f4d1184d-df43-4b9a-852e-24b07020123e
2025-08-18 23:57:22 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_018.mp4'
2025-08-18 23:57:22 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Video saved to temporary file: temp_videos/ed52fa7a-0839-48cc-a74c-7c70c20eabbb.mp4
2025-08-18 23:57:22 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:57:29 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:57:29 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] 30 frames saved to temp_videos/ed52fa7a-0839-48cc-a74c-7c70c20eabbb
2025-08-18 23:57:30 - INFO - Prompt token length: 3584
2025-08-18 23:57:47 - INFO - Tokens per second: 36.78504412759604, Peak GPU memory MB: 9376.375
2025-08-18 23:57:47 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Inference time: 25.17 seconds, CPU usage: 79.4%, CPU core utilization: [76.1, 67.9, 81.4, 92.2]
2025-08-18 23:57:47 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Cleaned up temporary file: temp_videos/ed52fa7a-0839-48cc-a74c-7c70c20eabbb.mp4
2025-08-18 23:57:47 - INFO - [ed52fa7a-0839-48cc-a74c-7c70c20eabbb] Cleaned up temporary frame directory: temp_videos/ed52fa7a-0839-48cc-a74c-7c70c20eabbb
2025-08-18 23:57:48 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_019.mp4'
2025-08-18 23:57:48 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Video saved to temporary file: temp_videos/c3a69722-85bb-4db6-b468-93c711e557a6.mp4
2025-08-18 23:57:48 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:57:56 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:57:56 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] 30 frames saved to temp_videos/c3a69722-85bb-4db6-b468-93c711e557a6
2025-08-18 23:57:56 - INFO - Prompt token length: 3584
2025-08-18 23:58:13 - INFO - Tokens per second: 40.30796192039967, Peak GPU memory MB: 9376.375
2025-08-18 23:58:13 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Inference time: 25.52 seconds, CPU usage: 81.2%, CPU core utilization: [84.0, 77.4, 78.2, 85.0]
2025-08-18 23:58:13 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Cleaned up temporary file: temp_videos/c3a69722-85bb-4db6-b468-93c711e557a6.mp4
2025-08-18 23:58:13 - INFO - [c3a69722-85bb-4db6-b468-93c711e557a6] Cleaned up temporary frame directory: temp_videos/c3a69722-85bb-4db6-b468-93c711e557a6
2025-08-18 23:58:13 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_020.mp4'
2025-08-18 23:58:13 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Video saved to temporary file: temp_videos/9ba27944-0c7a-4458-848f-3e18f6cf5d1f.mp4
2025-08-18 23:58:13 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:58:20 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:58:20 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] 30 frames saved to temp_videos/9ba27944-0c7a-4458-848f-3e18f6cf5d1f
2025-08-18 23:58:20 - INFO - Prompt token length: 3584
2025-08-18 23:58:37 - INFO - Tokens per second: 38.74070756902105, Peak GPU memory MB: 9376.375
2025-08-18 23:58:37 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Inference time: 24.27 seconds, CPU usage: 80.2%, CPU core utilization: [80.6, 69.2, 75.8, 95.3]
2025-08-18 23:58:37 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Cleaned up temporary file: temp_videos/9ba27944-0c7a-4458-848f-3e18f6cf5d1f.mp4
2025-08-18 23:58:37 - INFO - [9ba27944-0c7a-4458-848f-3e18f6cf5d1f] Cleaned up temporary frame directory: temp_videos/9ba27944-0c7a-4458-848f-3e18f6cf5d1f
2025-08-18 23:58:37 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_021.mp4'
2025-08-18 23:58:37 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Video saved to temporary file: temp_videos/0ddba018-22df-4eb0-b27e-fd30db4de720.mp4
2025-08-18 23:58:37 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:58:45 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:58:45 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] 30 frames saved to temp_videos/0ddba018-22df-4eb0-b27e-fd30db4de720
2025-08-18 23:58:45 - INFO - Prompt token length: 3584
2025-08-18 23:59:02 - INFO - Tokens per second: 41.32099005919523, Peak GPU memory MB: 9376.375
2025-08-18 23:59:02 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Inference time: 25.02 seconds, CPU usage: 80.5%, CPU core utilization: [79.4, 80.7, 84.1, 77.7]
2025-08-18 23:59:02 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Cleaned up temporary file: temp_videos/0ddba018-22df-4eb0-b27e-fd30db4de720.mp4
2025-08-18 23:59:02 - INFO - [0ddba018-22df-4eb0-b27e-fd30db4de720] Cleaned up temporary frame directory: temp_videos/0ddba018-22df-4eb0-b27e-fd30db4de720
2025-08-18 23:59:02 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_022.mp4'
2025-08-18 23:59:02 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Video saved to temporary file: temp_videos/bfd342ca-0347-49c4-9a94-6552d76e19a0.mp4
2025-08-18 23:59:02 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:59:09 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:59:09 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] 30 frames saved to temp_videos/bfd342ca-0347-49c4-9a94-6552d76e19a0
2025-08-18 23:59:10 - INFO - Prompt token length: 3584
2025-08-18 23:59:27 - INFO - Tokens per second: 41.598046238624825, Peak GPU memory MB: 9376.375
2025-08-18 23:59:27 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Inference time: 24.73 seconds, CPU usage: 82.0%, CPU core utilization: [85.4, 74.6, 76.6, 91.5]
2025-08-18 23:59:27 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Cleaned up temporary file: temp_videos/bfd342ca-0347-49c4-9a94-6552d76e19a0.mp4
2025-08-18 23:59:27 - INFO - [bfd342ca-0347-49c4-9a94-6552d76e19a0] Cleaned up temporary frame directory: temp_videos/bfd342ca-0347-49c4-9a94-6552d76e19a0
2025-08-18 23:59:27 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_023.mp4'
2025-08-18 23:59:27 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Video saved to temporary file: temp_videos/d5c137c0-5dd7-4995-9c34-77af504ed64c.mp4
2025-08-18 23:59:27 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:59:35 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:59:35 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] 30 frames saved to temp_videos/d5c137c0-5dd7-4995-9c34-77af504ed64c
2025-08-18 23:59:35 - INFO - Prompt token length: 3584
2025-08-18 23:59:53 - INFO - Tokens per second: 40.963503525455884, Peak GPU memory MB: 9376.375
2025-08-18 23:59:53 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Inference time: 25.89 seconds, CPU usage: 77.9%, CPU core utilization: [75.3, 79.5, 79.3, 77.6]
2025-08-18 23:59:53 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Cleaned up temporary file: temp_videos/d5c137c0-5dd7-4995-9c34-77af504ed64c.mp4
2025-08-18 23:59:53 - INFO - [d5c137c0-5dd7-4995-9c34-77af504ed64c] Cleaned up temporary frame directory: temp_videos/d5c137c0-5dd7-4995-9c34-77af504ed64c
2025-08-18 23:59:53 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_024.mp4'
2025-08-18 23:59:53 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Video saved to temporary file: temp_videos/cca4ad1a-6d1b-4fd2-b6e8-78efa4097226.mp4
2025-08-18 23:59:53 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:00:00 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:00:00 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] 30 frames saved to temp_videos/cca4ad1a-6d1b-4fd2-b6e8-78efa4097226
2025-08-19 00:00:01 - INFO - Prompt token length: 3584
2025-08-19 00:00:19 - INFO - Tokens per second: 39.38300814479115, Peak GPU memory MB: 9376.375
2025-08-19 00:00:19 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Inference time: 25.45 seconds, CPU usage: 78.2%, CPU core utilization: [81.7, 80.8, 73.0, 77.4]
2025-08-19 00:00:19 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Cleaned up temporary file: temp_videos/cca4ad1a-6d1b-4fd2-b6e8-78efa4097226.mp4
2025-08-19 00:00:19 - INFO - [cca4ad1a-6d1b-4fd2-b6e8-78efa4097226] Cleaned up temporary frame directory: temp_videos/cca4ad1a-6d1b-4fd2-b6e8-78efa4097226
2025-08-19 00:00:19 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_025.mp4'
2025-08-19 00:00:19 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Video saved to temporary file: temp_videos/57cde0f2-e32d-45b8-88da-1c10a65908ea.mp4
2025-08-19 00:00:19 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:00:28 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:00:28 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] 30 frames saved to temp_videos/57cde0f2-e32d-45b8-88da-1c10a65908ea
2025-08-19 00:00:28 - INFO - Prompt token length: 3584
2025-08-19 00:00:46 - INFO - Tokens per second: 40.238911139014256, Peak GPU memory MB: 9376.375
2025-08-19 00:00:46 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Inference time: 26.96 seconds, CPU usage: 78.2%, CPU core utilization: [76.9, 69.2, 76.6, 89.9]
2025-08-19 00:00:46 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Cleaned up temporary file: temp_videos/57cde0f2-e32d-45b8-88da-1c10a65908ea.mp4
2025-08-19 00:00:46 - INFO - [57cde0f2-e32d-45b8-88da-1c10a65908ea] Cleaned up temporary frame directory: temp_videos/57cde0f2-e32d-45b8-88da-1c10a65908ea
2025-08-19 00:00:46 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_026.mp4'
2025-08-19 00:00:46 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Video saved to temporary file: temp_videos/4fa7d4e0-e86a-4210-a732-d56708578419.mp4
2025-08-19 00:00:46 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:00:54 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:00:54 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] 30 frames saved to temp_videos/4fa7d4e0-e86a-4210-a732-d56708578419
2025-08-19 00:00:54 - INFO - Prompt token length: 3584
2025-08-19 00:01:12 - INFO - Tokens per second: 40.17368557750544, Peak GPU memory MB: 9376.375
2025-08-19 00:01:12 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Inference time: 25.94 seconds, CPU usage: 78.3%, CPU core utilization: [74.2, 81.6, 81.0, 76.3]
2025-08-19 00:01:12 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Cleaned up temporary file: temp_videos/4fa7d4e0-e86a-4210-a732-d56708578419.mp4
2025-08-19 00:01:12 - INFO - [4fa7d4e0-e86a-4210-a732-d56708578419] Cleaned up temporary frame directory: temp_videos/4fa7d4e0-e86a-4210-a732-d56708578419
2025-08-19 00:01:12 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_027.mp4'
2025-08-19 00:01:12 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Video saved to temporary file: temp_videos/4b0256b7-7dda-4b1d-b1e3-107fd5502f33.mp4
2025-08-19 00:01:12 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:01:20 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:01:20 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] 30 frames saved to temp_videos/4b0256b7-7dda-4b1d-b1e3-107fd5502f33
2025-08-19 00:01:20 - INFO - Prompt token length: 3584
2025-08-19 00:01:38 - INFO - Tokens per second: 39.38549335675344, Peak GPU memory MB: 9376.375
2025-08-19 00:01:38 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Inference time: 26.07 seconds, CPU usage: 78.8%, CPU core utilization: [80.6, 60.0, 77.3, 97.3]
2025-08-19 00:01:38 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Cleaned up temporary file: temp_videos/4b0256b7-7dda-4b1d-b1e3-107fd5502f33.mp4
2025-08-19 00:01:38 - INFO - [4b0256b7-7dda-4b1d-b1e3-107fd5502f33] Cleaned up temporary frame directory: temp_videos/4b0256b7-7dda-4b1d-b1e3-107fd5502f33
2025-08-19 00:01:38 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_028.mp4'
2025-08-19 00:01:38 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Video saved to temporary file: temp_videos/daefaac9-786f-4174-831a-e62abe9645da.mp4
2025-08-19 00:01:38 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:01:46 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:01:46 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] 30 frames saved to temp_videos/daefaac9-786f-4174-831a-e62abe9645da
2025-08-19 00:01:46 - INFO - Prompt token length: 3584
2025-08-19 00:02:04 - INFO - Tokens per second: 37.358557004221744, Peak GPU memory MB: 9376.375
2025-08-19 00:02:04 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Inference time: 25.99 seconds, CPU usage: 81.2%, CPU core utilization: [82.6, 72.3, 80.2, 89.7]
2025-08-19 00:02:04 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Cleaned up temporary file: temp_videos/daefaac9-786f-4174-831a-e62abe9645da.mp4
2025-08-19 00:02:04 - INFO - [daefaac9-786f-4174-831a-e62abe9645da] Cleaned up temporary frame directory: temp_videos/daefaac9-786f-4174-831a-e62abe9645da
2025-08-19 00:02:04 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_029.mp4'
2025-08-19 00:02:04 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Video saved to temporary file: temp_videos/28340fa9-c0b9-4616-8e5a-abdea612caca.mp4
2025-08-19 00:02:04 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:02:12 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:02:12 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] 30 frames saved to temp_videos/28340fa9-c0b9-4616-8e5a-abdea612caca
2025-08-19 00:02:12 - INFO - Prompt token length: 3584
2025-08-19 00:02:30 - INFO - Tokens per second: 40.02365392147096, Peak GPU memory MB: 9376.375
2025-08-19 00:02:30 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Inference time: 25.66 seconds, CPU usage: 80.4%, CPU core utilization: [78.8, 83.4, 81.6, 77.7]
2025-08-19 00:02:30 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Cleaned up temporary file: temp_videos/28340fa9-c0b9-4616-8e5a-abdea612caca.mp4
2025-08-19 00:02:30 - INFO - [28340fa9-c0b9-4616-8e5a-abdea612caca] Cleaned up temporary frame directory: temp_videos/28340fa9-c0b9-4616-8e5a-abdea612caca
2025-08-19 00:02:30 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_030.mp4'
2025-08-19 00:02:30 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Video saved to temporary file: temp_videos/a5806023-e539-4968-8df8-fd2c13edf754.mp4
2025-08-19 00:02:30 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:02:38 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:02:39 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] 30 frames saved to temp_videos/a5806023-e539-4968-8df8-fd2c13edf754
2025-08-19 00:02:39 - INFO - Prompt token length: 3584
2025-08-19 00:02:56 - INFO - Tokens per second: 40.11205537436322, Peak GPU memory MB: 9376.375
2025-08-19 00:02:56 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Inference time: 26.14 seconds, CPU usage: 83.8%, CPU core utilization: [81.8, 83.3, 83.5, 86.6]
2025-08-19 00:02:56 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Cleaned up temporary file: temp_videos/a5806023-e539-4968-8df8-fd2c13edf754.mp4
2025-08-19 00:02:56 - INFO - [a5806023-e539-4968-8df8-fd2c13edf754] Cleaned up temporary frame directory: temp_videos/a5806023-e539-4968-8df8-fd2c13edf754
2025-08-19 00:02:56 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_031.mp4'
2025-08-19 00:02:56 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Video saved to temporary file: temp_videos/00457f66-44f2-4306-b6df-89fbec279f13.mp4
2025-08-19 00:02:56 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:03:02 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:03:02 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] 30 frames saved to temp_videos/00457f66-44f2-4306-b6df-89fbec279f13
2025-08-19 00:03:02 - INFO - Prompt token length: 3584
2025-08-19 00:03:20 - INFO - Tokens per second: 43.732303463922946, Peak GPU memory MB: 9376.375
2025-08-19 00:03:20 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Inference time: 23.93 seconds, CPU usage: 47.0%, CPU core utilization: [37.9, 27.6, 39.6, 83.1]
2025-08-19 00:03:20 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Cleaned up temporary file: temp_videos/00457f66-44f2-4306-b6df-89fbec279f13.mp4
2025-08-19 00:03:20 - INFO - [00457f66-44f2-4306-b6df-89fbec279f13] Cleaned up temporary frame directory: temp_videos/00457f66-44f2-4306-b6df-89fbec279f13
2025-08-19 00:03:20 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_032.mp4'
2025-08-19 00:03:20 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Video saved to temporary file: temp_videos/80676197-5b9e-422d-aa2f-fe2b270a1d4a.mp4
2025-08-19 00:03:20 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:03:25 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:03:25 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] 30 frames saved to temp_videos/80676197-5b9e-422d-aa2f-fe2b270a1d4a
2025-08-19 00:03:26 - INFO - Prompt token length: 3584
2025-08-19 00:03:43 - INFO - Tokens per second: 41.1306443391851, Peak GPU memory MB: 9376.375
2025-08-19 00:03:43 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Inference time: 22.85 seconds, CPU usage: 48.6%, CPU core utilization: [40.5, 38.9, 83.4, 31.3]
2025-08-19 00:03:43 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Cleaned up temporary file: temp_videos/80676197-5b9e-422d-aa2f-fe2b270a1d4a.mp4
2025-08-19 00:03:43 - INFO - [80676197-5b9e-422d-aa2f-fe2b270a1d4a] Cleaned up temporary frame directory: temp_videos/80676197-5b9e-422d-aa2f-fe2b270a1d4a
2025-08-19 00:03:43 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_033.mp4'
2025-08-19 00:03:43 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Video saved to temporary file: temp_videos/c1da6087-e52a-4275-b20e-e8a3da10f9cc.mp4
2025-08-19 00:03:43 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:03:51 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:03:51 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] 30 frames saved to temp_videos/c1da6087-e52a-4275-b20e-e8a3da10f9cc
2025-08-19 00:03:51 - INFO - Prompt token length: 3584
2025-08-19 00:04:09 - INFO - Tokens per second: 39.2482211811343, Peak GPU memory MB: 9376.375
2025-08-19 00:04:09 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Inference time: 26.37 seconds, CPU usage: 79.9%, CPU core utilization: [70.7, 79.5, 91.0, 78.5]
2025-08-19 00:04:09 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Cleaned up temporary file: temp_videos/c1da6087-e52a-4275-b20e-e8a3da10f9cc.mp4
2025-08-19 00:04:09 - INFO - [c1da6087-e52a-4275-b20e-e8a3da10f9cc] Cleaned up temporary frame directory: temp_videos/c1da6087-e52a-4275-b20e-e8a3da10f9cc
2025-08-19 00:04:09 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_034.mp4'
2025-08-19 00:04:09 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Video saved to temporary file: temp_videos/43b97ff6-b7c0-4ee6-ba9a-60d717f3cada.mp4
2025-08-19 00:04:09 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:04:17 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:04:17 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] 30 frames saved to temp_videos/43b97ff6-b7c0-4ee6-ba9a-60d717f3cada
2025-08-19 00:04:17 - INFO - Prompt token length: 3584
2025-08-19 00:04:35 - INFO - Tokens per second: 43.710601210811305, Peak GPU memory MB: 9376.375
2025-08-19 00:04:35 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Inference time: 25.70 seconds, CPU usage: 50.7%, CPU core utilization: [57.0, 41.9, 65.6, 38.4]
2025-08-19 00:04:35 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Cleaned up temporary file: temp_videos/43b97ff6-b7c0-4ee6-ba9a-60d717f3cada.mp4
2025-08-19 00:04:35 - INFO - [43b97ff6-b7c0-4ee6-ba9a-60d717f3cada] Cleaned up temporary frame directory: temp_videos/43b97ff6-b7c0-4ee6-ba9a-60d717f3cada
2025-08-19 00:04:35 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_035.mp4'
2025-08-19 00:04:35 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Video saved to temporary file: temp_videos/c997afa8-679a-4327-aa64-45c188f280cd.mp4
2025-08-19 00:04:35 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:04:40 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:04:40 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] 30 frames saved to temp_videos/c997afa8-679a-4327-aa64-45c188f280cd
2025-08-19 00:04:40 - INFO - Prompt token length: 3584
2025-08-19 00:04:56 - INFO - Tokens per second: 43.34082730242674, Peak GPU memory MB: 9376.375
2025-08-19 00:04:56 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Inference time: 21.51 seconds, CPU usage: 44.1%, CPU core utilization: [24.8, 29.9, 95.2, 26.4]
2025-08-19 00:04:56 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Cleaned up temporary file: temp_videos/c997afa8-679a-4327-aa64-45c188f280cd.mp4
2025-08-19 00:04:56 - INFO - [c997afa8-679a-4327-aa64-45c188f280cd] Cleaned up temporary frame directory: temp_videos/c997afa8-679a-4327-aa64-45c188f280cd
2025-08-19 00:04:56 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_036.mp4'
2025-08-19 00:04:56 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Video saved to temporary file: temp_videos/c56130e4-b57c-458d-a920-541968a81cf3.mp4
2025-08-19 00:04:56 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:05:02 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:05:02 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] 30 frames saved to temp_videos/c56130e4-b57c-458d-a920-541968a81cf3
2025-08-19 00:05:02 - INFO - Prompt token length: 3584
2025-08-19 00:05:19 - INFO - Tokens per second: 43.305425094512614, Peak GPU memory MB: 9376.375
2025-08-19 00:05:19 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Inference time: 23.02 seconds, CPU usage: 52.2%, CPU core utilization: [40.0, 54.3, 38.4, 75.8]
2025-08-19 00:05:19 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Cleaned up temporary file: temp_videos/c56130e4-b57c-458d-a920-541968a81cf3.mp4
2025-08-19 00:05:19 - INFO - [c56130e4-b57c-458d-a920-541968a81cf3] Cleaned up temporary frame directory: temp_videos/c56130e4-b57c-458d-a920-541968a81cf3
2025-08-19 00:05:19 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_037.mp4'
2025-08-19 00:05:19 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Video saved to temporary file: temp_videos/0dd552db-5b57-4603-8e45-7fe3961ba2c9.mp4
2025-08-19 00:05:19 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:05:25 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:05:25 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] 30 frames saved to temp_videos/0dd552db-5b57-4603-8e45-7fe3961ba2c9
2025-08-19 00:05:25 - INFO - Prompt token length: 3584
2025-08-19 00:05:42 - INFO - Tokens per second: 43.2809732947507, Peak GPU memory MB: 9376.375
2025-08-19 00:05:42 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Inference time: 22.87 seconds, CPU usage: 57.7%, CPU core utilization: [43.8, 51.8, 47.4, 87.6]
2025-08-19 00:05:42 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Cleaned up temporary file: temp_videos/0dd552db-5b57-4603-8e45-7fe3961ba2c9.mp4
2025-08-19 00:05:42 - INFO - [0dd552db-5b57-4603-8e45-7fe3961ba2c9] Cleaned up temporary frame directory: temp_videos/0dd552db-5b57-4603-8e45-7fe3961ba2c9
2025-08-19 00:05:42 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_038.mp4'
2025-08-19 00:05:42 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Video saved to temporary file: temp_videos/989cb63a-cbe6-46a5-991d-86c35393ffc3.mp4
2025-08-19 00:05:42 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:05:48 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:05:48 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] 30 frames saved to temp_videos/989cb63a-cbe6-46a5-991d-86c35393ffc3
2025-08-19 00:05:48 - INFO - Prompt token length: 3584
2025-08-19 00:06:04 - INFO - Tokens per second: 44.07200758227364, Peak GPU memory MB: 9376.375
2025-08-19 00:06:04 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Inference time: 21.80 seconds, CPU usage: 45.3%, CPU core utilization: [32.1, 53.0, 27.2, 68.6]
2025-08-19 00:06:04 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Cleaned up temporary file: temp_videos/989cb63a-cbe6-46a5-991d-86c35393ffc3.mp4
2025-08-19 00:06:04 - INFO - [989cb63a-cbe6-46a5-991d-86c35393ffc3] Cleaned up temporary frame directory: temp_videos/989cb63a-cbe6-46a5-991d-86c35393ffc3
2025-08-19 00:06:04 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_039.mp4'
2025-08-19 00:06:04 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Video saved to temporary file: temp_videos/f9637ae3-e9b1-4708-afa3-d9381ffd5d20.mp4
2025-08-19 00:06:04 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:06:10 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:06:10 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] 30 frames saved to temp_videos/f9637ae3-e9b1-4708-afa3-d9381ffd5d20
2025-08-19 00:06:10 - INFO - Prompt token length: 3584
2025-08-19 00:06:28 - INFO - Tokens per second: 43.32052884810036, Peak GPU memory MB: 9376.375
2025-08-19 00:06:28 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Inference time: 23.63 seconds, CPU usage: 45.4%, CPU core utilization: [36.6, 29.6, 80.9, 34.6]
2025-08-19 00:06:28 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Cleaned up temporary file: temp_videos/f9637ae3-e9b1-4708-afa3-d9381ffd5d20.mp4
2025-08-19 00:06:28 - INFO - [f9637ae3-e9b1-4708-afa3-d9381ffd5d20] Cleaned up temporary frame directory: temp_videos/f9637ae3-e9b1-4708-afa3-d9381ffd5d20
2025-08-19 00:06:28 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_040.mp4'
2025-08-19 00:06:28 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Video saved to temporary file: temp_videos/11035153-96bf-4afb-beee-02dc4cdcf12c.mp4
2025-08-19 00:06:28 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:06:33 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:06:33 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] 30 frames saved to temp_videos/11035153-96bf-4afb-beee-02dc4cdcf12c
2025-08-19 00:06:33 - INFO - Prompt token length: 3584
2025-08-19 00:06:50 - INFO - Tokens per second: 43.58098238207414, Peak GPU memory MB: 9376.375
2025-08-19 00:06:50 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Inference time: 22.50 seconds, CPU usage: 43.7%, CPU core utilization: [29.7, 54.7, 25.5, 64.7]
2025-08-19 00:06:50 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Cleaned up temporary file: temp_videos/11035153-96bf-4afb-beee-02dc4cdcf12c.mp4
2025-08-19 00:06:50 - INFO - [11035153-96bf-4afb-beee-02dc4cdcf12c] Cleaned up temporary frame directory: temp_videos/11035153-96bf-4afb-beee-02dc4cdcf12c
2025-08-19 00:06:50 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_041.mp4'
2025-08-19 00:06:50 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Video saved to temporary file: temp_videos/94ded1d7-2604-432a-b9de-0a959b98de5f.mp4
2025-08-19 00:06:50 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:06:55 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:06:55 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] 30 frames saved to temp_videos/94ded1d7-2604-432a-b9de-0a959b98de5f
2025-08-19 00:06:55 - INFO - Prompt token length: 3584
2025-08-19 00:07:13 - INFO - Tokens per second: 43.43359338437597, Peak GPU memory MB: 9376.375
2025-08-19 00:07:13 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Inference time: 22.66 seconds, CPU usage: 42.2%, CPU core utilization: [50.8, 51.4, 39.2, 27.5]
2025-08-19 00:07:13 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Cleaned up temporary file: temp_videos/94ded1d7-2604-432a-b9de-0a959b98de5f.mp4
2025-08-19 00:07:13 - INFO - [94ded1d7-2604-432a-b9de-0a959b98de5f] Cleaned up temporary frame directory: temp_videos/94ded1d7-2604-432a-b9de-0a959b98de5f
2025-08-19 00:07:13 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_042.mp4'
2025-08-19 00:07:13 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Video saved to temporary file: temp_videos/04a5e841-cb46-43a2-8355-383a35e63763.mp4
2025-08-19 00:07:13 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:07:19 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:07:19 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] 30 frames saved to temp_videos/04a5e841-cb46-43a2-8355-383a35e63763
2025-08-19 00:07:19 - INFO - Prompt token length: 3584
2025-08-19 00:07:37 - INFO - Tokens per second: 43.5451659695564, Peak GPU memory MB: 9376.375
2025-08-19 00:07:37 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Inference time: 23.55 seconds, CPU usage: 45.3%, CPU core utilization: [28.8, 62.1, 31.5, 58.8]
2025-08-19 00:07:37 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Cleaned up temporary file: temp_videos/04a5e841-cb46-43a2-8355-383a35e63763.mp4
2025-08-19 00:07:37 - INFO - [04a5e841-cb46-43a2-8355-383a35e63763] Cleaned up temporary frame directory: temp_videos/04a5e841-cb46-43a2-8355-383a35e63763
2025-08-19 00:07:37 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_043.mp4'
2025-08-19 00:07:37 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Video saved to temporary file: temp_videos/8e63cecf-39ae-4caf-8310-1519e7d7f95b.mp4
2025-08-19 00:07:37 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:07:42 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:07:42 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] 30 frames saved to temp_videos/8e63cecf-39ae-4caf-8310-1519e7d7f95b
2025-08-19 00:07:42 - INFO - Prompt token length: 3584
2025-08-19 00:08:00 - INFO - Tokens per second: 43.72216137040779, Peak GPU memory MB: 9376.375
2025-08-19 00:08:00 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Inference time: 22.74 seconds, CPU usage: 45.6%, CPU core utilization: [38.4, 38.5, 74.5, 31.2]
2025-08-19 00:08:00 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Cleaned up temporary file: temp_videos/8e63cecf-39ae-4caf-8310-1519e7d7f95b.mp4
2025-08-19 00:08:00 - INFO - [8e63cecf-39ae-4caf-8310-1519e7d7f95b] Cleaned up temporary frame directory: temp_videos/8e63cecf-39ae-4caf-8310-1519e7d7f95b
2025-08-19 00:08:00 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_044.mp4'
2025-08-19 00:08:00 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Video saved to temporary file: temp_videos/fcaedee9-352c-4494-bd92-a92bb3d1f792.mp4
2025-08-19 00:08:00 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:08:05 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:08:05 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] 30 frames saved to temp_videos/fcaedee9-352c-4494-bd92-a92bb3d1f792
2025-08-19 00:08:05 - INFO - Prompt token length: 3584
2025-08-19 00:08:22 - INFO - Tokens per second: 43.69812721151038, Peak GPU memory MB: 9376.375
2025-08-19 00:08:22 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Inference time: 22.37 seconds, CPU usage: 43.8%, CPU core utilization: [24.1, 76.7, 32.2, 41.8]
2025-08-19 00:08:22 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Cleaned up temporary file: temp_videos/fcaedee9-352c-4494-bd92-a92bb3d1f792.mp4
2025-08-19 00:08:22 - INFO - [fcaedee9-352c-4494-bd92-a92bb3d1f792] Cleaned up temporary frame directory: temp_videos/fcaedee9-352c-4494-bd92-a92bb3d1f792
2025-08-19 00:08:22 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_045.mp4'
2025-08-19 00:08:22 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Video saved to temporary file: temp_videos/40c5e9be-9369-439c-8294-0daf2ab110bd.mp4
2025-08-19 00:08:22 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:08:27 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:08:27 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] 30 frames saved to temp_videos/40c5e9be-9369-439c-8294-0daf2ab110bd
2025-08-19 00:08:27 - INFO - Prompt token length: 3584
2025-08-19 00:08:45 - INFO - Tokens per second: 43.60305109768778, Peak GPU memory MB: 9376.375
2025-08-19 00:08:45 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Inference time: 22.69 seconds, CPU usage: 43.3%, CPU core utilization: [52.4, 45.1, 48.5, 27.3]
2025-08-19 00:08:45 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Cleaned up temporary file: temp_videos/40c5e9be-9369-439c-8294-0daf2ab110bd.mp4
2025-08-19 00:08:45 - INFO - [40c5e9be-9369-439c-8294-0daf2ab110bd] Cleaned up temporary frame directory: temp_videos/40c5e9be-9369-439c-8294-0daf2ab110bd
2025-08-19 00:08:45 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_046.mp4'
2025-08-19 00:08:45 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Video saved to temporary file: temp_videos/e6cf5776-f8bb-4cdd-9a51-c780ccd99a15.mp4
2025-08-19 00:08:45 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:08:50 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:08:50 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] 30 frames saved to temp_videos/e6cf5776-f8bb-4cdd-9a51-c780ccd99a15
2025-08-19 00:08:51 - INFO - Prompt token length: 3584
2025-08-19 00:09:08 - INFO - Tokens per second: 43.843882768658645, Peak GPU memory MB: 9376.375
2025-08-19 00:09:08 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Inference time: 22.80 seconds, CPU usage: 45.2%, CPU core utilization: [27.3, 27.9, 94.3, 31.3]
2025-08-19 00:09:08 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Cleaned up temporary file: temp_videos/e6cf5776-f8bb-4cdd-9a51-c780ccd99a15.mp4
2025-08-19 00:09:08 - INFO - [e6cf5776-f8bb-4cdd-9a51-c780ccd99a15] Cleaned up temporary frame directory: temp_videos/e6cf5776-f8bb-4cdd-9a51-c780ccd99a15
2025-08-19 00:09:08 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_047.mp4'
2025-08-19 00:09:08 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Video saved to temporary file: temp_videos/3dd3ee21-fec9-419f-a35f-04002380fa23.mp4
2025-08-19 00:09:08 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:09:12 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:09:12 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] 30 frames saved to temp_videos/3dd3ee21-fec9-419f-a35f-04002380fa23
2025-08-19 00:09:13 - INFO - Prompt token length: 3584
2025-08-19 00:09:30 - INFO - Tokens per second: 43.798575227467595, Peak GPU memory MB: 9376.375
2025-08-19 00:09:30 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Inference time: 22.24 seconds, CPU usage: 44.4%, CPU core utilization: [44.4, 29.2, 75.3, 28.8]
2025-08-19 00:09:30 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Cleaned up temporary file: temp_videos/3dd3ee21-fec9-419f-a35f-04002380fa23.mp4
2025-08-19 00:09:30 - INFO - [3dd3ee21-fec9-419f-a35f-04002380fa23] Cleaned up temporary frame directory: temp_videos/3dd3ee21-fec9-419f-a35f-04002380fa23
2025-08-19 00:09:30 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_048.mp4'
2025-08-19 00:09:30 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Video saved to temporary file: temp_videos/c554e97f-ecbe-4a5c-bb36-a46df0df0311.mp4
2025-08-19 00:09:30 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:09:35 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:09:35 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] 30 frames saved to temp_videos/c554e97f-ecbe-4a5c-bb36-a46df0df0311
2025-08-19 00:09:35 - INFO - Prompt token length: 3584
2025-08-19 00:09:52 - INFO - Tokens per second: 43.89402793517226, Peak GPU memory MB: 9376.375
2025-08-19 00:09:52 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Inference time: 22.37 seconds, CPU usage: 44.3%, CPU core utilization: [86.0, 31.9, 30.7, 28.4]
2025-08-19 00:09:52 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Cleaned up temporary file: temp_videos/c554e97f-ecbe-4a5c-bb36-a46df0df0311.mp4
2025-08-19 00:09:52 - INFO - [c554e97f-ecbe-4a5c-bb36-a46df0df0311] Cleaned up temporary frame directory: temp_videos/c554e97f-ecbe-4a5c-bb36-a46df0df0311
2025-08-19 00:09:52 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_049.mp4'
2025-08-19 00:09:52 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Video saved to temporary file: temp_videos/4ff18281-ea35-436b-a4e2-1c26cdb821ef.mp4
2025-08-19 00:09:52 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:09:57 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:09:57 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] 30 frames saved to temp_videos/4ff18281-ea35-436b-a4e2-1c26cdb821ef
2025-08-19 00:09:57 - INFO - Prompt token length: 3584
2025-08-19 00:10:15 - INFO - Tokens per second: 43.56379224518244, Peak GPU memory MB: 9376.375
2025-08-19 00:10:15 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Inference time: 22.53 seconds, CPU usage: 43.2%, CPU core utilization: [31.4, 85.1, 26.9, 29.2]
2025-08-19 00:10:15 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Cleaned up temporary file: temp_videos/4ff18281-ea35-436b-a4e2-1c26cdb821ef.mp4
2025-08-19 00:10:15 - INFO - [4ff18281-ea35-436b-a4e2-1c26cdb821ef] Cleaned up temporary frame directory: temp_videos/4ff18281-ea35-436b-a4e2-1c26cdb821ef
2025-08-19 00:10:15 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_050.mp4'
2025-08-19 00:10:15 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Video saved to temporary file: temp_videos/dd0795f6-11a5-4a4d-ae78-46fbf1edf466.mp4
2025-08-19 00:10:15 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:10:20 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:10:20 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] 30 frames saved to temp_videos/dd0795f6-11a5-4a4d-ae78-46fbf1edf466
2025-08-19 00:10:20 - INFO - Prompt token length: 3584
2025-08-19 00:10:37 - INFO - Tokens per second: 43.61928425153152, Peak GPU memory MB: 9376.375
2025-08-19 00:10:37 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Inference time: 22.56 seconds, CPU usage: 44.0%, CPU core utilization: [24.9, 65.1, 31.4, 54.7]
2025-08-19 00:10:37 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Cleaned up temporary file: temp_videos/dd0795f6-11a5-4a4d-ae78-46fbf1edf466.mp4
2025-08-19 00:10:37 - INFO - [dd0795f6-11a5-4a4d-ae78-46fbf1edf466] Cleaned up temporary frame directory: temp_videos/dd0795f6-11a5-4a4d-ae78-46fbf1edf466
2025-08-19 00:10:37 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_051.mp4'
2025-08-19 00:10:37 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Video saved to temporary file: temp_videos/d61c8693-6567-4f02-b3bf-843af3d00ee0.mp4
2025-08-19 00:10:37 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:10:43 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:10:43 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] 30 frames saved to temp_videos/d61c8693-6567-4f02-b3bf-843af3d00ee0
2025-08-19 00:10:43 - INFO - Prompt token length: 3584
2025-08-19 00:11:01 - INFO - Tokens per second: 42.97388508982766, Peak GPU memory MB: 9376.375
2025-08-19 00:11:01 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Inference time: 23.27 seconds, CPU usage: 44.6%, CPU core utilization: [52.0, 43.1, 56.1, 27.2]
2025-08-19 00:11:01 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Cleaned up temporary file: temp_videos/d61c8693-6567-4f02-b3bf-843af3d00ee0.mp4
2025-08-19 00:11:01 - INFO - [d61c8693-6567-4f02-b3bf-843af3d00ee0] Cleaned up temporary frame directory: temp_videos/d61c8693-6567-4f02-b3bf-843af3d00ee0
2025-08-19 00:11:01 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_052.mp4'
2025-08-19 00:11:01 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Video saved to temporary file: temp_videos/7329add3-cb8c-46a7-aba5-65da3a0009f7.mp4
2025-08-19 00:11:01 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:11:05 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:11:05 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] 30 frames saved to temp_videos/7329add3-cb8c-46a7-aba5-65da3a0009f7
2025-08-19 00:11:06 - INFO - Prompt token length: 3584
2025-08-19 00:11:23 - INFO - Tokens per second: 43.800756217355975, Peak GPU memory MB: 9376.375
2025-08-19 00:11:23 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Inference time: 22.56 seconds, CPU usage: 43.4%, CPU core utilization: [38.0, 28.5, 79.2, 27.9]
2025-08-19 00:11:23 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Cleaned up temporary file: temp_videos/7329add3-cb8c-46a7-aba5-65da3a0009f7.mp4
2025-08-19 00:11:23 - INFO - [7329add3-cb8c-46a7-aba5-65da3a0009f7] Cleaned up temporary frame directory: temp_videos/7329add3-cb8c-46a7-aba5-65da3a0009f7
2025-08-19 00:11:23 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_053.mp4'
2025-08-19 00:11:23 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Video saved to temporary file: temp_videos/f642e0cd-9db3-44c7-b4f8-21be55ecab35.mp4
2025-08-19 00:11:23 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:11:28 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:11:28 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] 30 frames saved to temp_videos/f642e0cd-9db3-44c7-b4f8-21be55ecab35
2025-08-19 00:11:29 - INFO - Prompt token length: 3584
2025-08-19 00:11:45 - INFO - Tokens per second: 43.63552451411287, Peak GPU memory MB: 9376.375
2025-08-19 00:11:45 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Inference time: 21.78 seconds, CPU usage: 44.8%, CPU core utilization: [64.1, 30.4, 56.3, 28.6]
2025-08-19 00:11:45 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Cleaned up temporary file: temp_videos/f642e0cd-9db3-44c7-b4f8-21be55ecab35.mp4
2025-08-19 00:11:45 - INFO - [f642e0cd-9db3-44c7-b4f8-21be55ecab35] Cleaned up temporary frame directory: temp_videos/f642e0cd-9db3-44c7-b4f8-21be55ecab35
2025-08-19 00:11:45 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_054.mp4'
2025-08-19 00:11:45 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Video saved to temporary file: temp_videos/8646fa98-335e-4c9d-827f-7059c54efc26.mp4
2025-08-19 00:11:45 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:11:50 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:11:50 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] 30 frames saved to temp_videos/8646fa98-335e-4c9d-827f-7059c54efc26
2025-08-19 00:11:50 - INFO - Prompt token length: 3584
2025-08-19 00:12:07 - INFO - Tokens per second: 43.636680260959196, Peak GPU memory MB: 9376.375
2025-08-19 00:12:07 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Inference time: 22.28 seconds, CPU usage: 44.5%, CPU core utilization: [52.8, 60.9, 26.8, 37.5]
2025-08-19 00:12:07 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Cleaned up temporary file: temp_videos/8646fa98-335e-4c9d-827f-7059c54efc26.mp4
2025-08-19 00:12:07 - INFO - [8646fa98-335e-4c9d-827f-7059c54efc26] Cleaned up temporary frame directory: temp_videos/8646fa98-335e-4c9d-827f-7059c54efc26
2025-08-19 00:12:07 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_055.mp4'
2025-08-19 00:12:08 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Video saved to temporary file: temp_videos/987ebc1c-98be-497a-949d-00cf6a8df72f.mp4
2025-08-19 00:12:08 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:12:13 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:12:13 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] 30 frames saved to temp_videos/987ebc1c-98be-497a-949d-00cf6a8df72f
2025-08-19 00:12:14 - INFO - Prompt token length: 3584
2025-08-19 00:12:31 - INFO - Tokens per second: 43.44007709060384, Peak GPU memory MB: 9376.375
2025-08-19 00:12:31 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Inference time: 23.51 seconds, CPU usage: 45.3%, CPU core utilization: [30.5, 45.8, 29.1, 75.8]
2025-08-19 00:12:31 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Cleaned up temporary file: temp_videos/987ebc1c-98be-497a-949d-00cf6a8df72f.mp4
2025-08-19 00:12:31 - INFO - [987ebc1c-98be-497a-949d-00cf6a8df72f] Cleaned up temporary frame directory: temp_videos/987ebc1c-98be-497a-949d-00cf6a8df72f
2025-08-19 00:12:31 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_056.mp4'
2025-08-19 00:12:31 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Video saved to temporary file: temp_videos/6ba94afb-5ade-4951-9439-61cb619a3eda.mp4
2025-08-19 00:12:31 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:12:36 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:12:36 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] 30 frames saved to temp_videos/6ba94afb-5ade-4951-9439-61cb619a3eda
2025-08-19 00:12:36 - INFO - Prompt token length: 3584
2025-08-19 00:12:54 - INFO - Tokens per second: 43.73466548585687, Peak GPU memory MB: 9376.375
2025-08-19 00:12:54 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Inference time: 22.74 seconds, CPU usage: 44.0%, CPU core utilization: [47.8, 31.9, 71.2, 24.9]
2025-08-19 00:12:54 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Cleaned up temporary file: temp_videos/6ba94afb-5ade-4951-9439-61cb619a3eda.mp4
2025-08-19 00:12:54 - INFO - [6ba94afb-5ade-4951-9439-61cb619a3eda] Cleaned up temporary frame directory: temp_videos/6ba94afb-5ade-4951-9439-61cb619a3eda
2025-08-19 00:12:54 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_057.mp4'
2025-08-19 00:12:54 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Video saved to temporary file: temp_videos/98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f.mp4
2025-08-19 00:12:54 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:12:59 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:12:59 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] 30 frames saved to temp_videos/98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f
2025-08-19 00:12:59 - INFO - Prompt token length: 3584
2025-08-19 00:13:17 - INFO - Tokens per second: 43.44122225548033, Peak GPU memory MB: 9376.375
2025-08-19 00:13:17 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Inference time: 23.45 seconds, CPU usage: 44.5%, CPU core utilization: [81.3, 36.1, 31.2, 29.1]
2025-08-19 00:13:17 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Cleaned up temporary file: temp_videos/98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f.mp4
2025-08-19 00:13:17 - INFO - [98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f] Cleaned up temporary frame directory: temp_videos/98d349e5-5b6a-4d8b-b0d1-3838b7c76e7f
2025-08-19 00:13:17 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_058.mp4'
2025-08-19 00:13:17 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Video saved to temporary file: temp_videos/08f3a71a-6079-4d50-9ac3-b854424c48ea.mp4
2025-08-19 00:13:17 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:13:23 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:13:23 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] 30 frames saved to temp_videos/08f3a71a-6079-4d50-9ac3-b854424c48ea
2025-08-19 00:13:23 - INFO - Prompt token length: 3584
2025-08-19 00:13:41 - INFO - Tokens per second: 43.24753914054676, Peak GPU memory MB: 9376.375
2025-08-19 00:13:41 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Inference time: 23.70 seconds, CPU usage: 44.8%, CPU core utilization: [29.3, 80.1, 29.0, 40.8]
2025-08-19 00:13:41 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Cleaned up temporary file: temp_videos/08f3a71a-6079-4d50-9ac3-b854424c48ea.mp4
2025-08-19 00:13:41 - INFO - [08f3a71a-6079-4d50-9ac3-b854424c48ea] Cleaned up temporary frame directory: temp_videos/08f3a71a-6079-4d50-9ac3-b854424c48ea
2025-08-19 00:13:41 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_059.mp4'
2025-08-19 00:13:41 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Video saved to temporary file: temp_videos/366cd035-ab49-4502-86de-6ac65a94003a.mp4
2025-08-19 00:13:41 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:13:47 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:13:47 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] 30 frames saved to temp_videos/366cd035-ab49-4502-86de-6ac65a94003a
2025-08-19 00:13:47 - INFO - Prompt token length: 3584
2025-08-19 00:14:05 - INFO - Tokens per second: 43.41159506336397, Peak GPU memory MB: 9376.375
2025-08-19 00:14:05 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Inference time: 23.60 seconds, CPU usage: 45.4%, CPU core utilization: [41.3, 45.2, 28.8, 66.3]
2025-08-19 00:14:05 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Cleaned up temporary file: temp_videos/366cd035-ab49-4502-86de-6ac65a94003a.mp4
2025-08-19 00:14:05 - INFO - [366cd035-ab49-4502-86de-6ac65a94003a] Cleaned up temporary frame directory: temp_videos/366cd035-ab49-4502-86de-6ac65a94003a
2025-08-19 00:14:05 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_060.mp4'
2025-08-19 00:14:05 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Video saved to temporary file: temp_videos/4de43ee3-0051-4cca-8bd8-a6890fa2829f.mp4
2025-08-19 00:14:05 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:14:10 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:14:10 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] 30 frames saved to temp_videos/4de43ee3-0051-4cca-8bd8-a6890fa2829f
2025-08-19 00:14:10 - INFO - Prompt token length: 3584
2025-08-19 00:14:27 - INFO - Tokens per second: 42.664462930711395, Peak GPU memory MB: 9376.375
2025-08-19 00:14:27 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Inference time: 22.69 seconds, CPU usage: 45.6%, CPU core utilization: [51.6, 29.2, 67.2, 34.5]
2025-08-19 00:14:27 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Cleaned up temporary file: temp_videos/4de43ee3-0051-4cca-8bd8-a6890fa2829f.mp4
2025-08-19 00:14:27 - INFO - [4de43ee3-0051-4cca-8bd8-a6890fa2829f] Cleaned up temporary frame directory: temp_videos/4de43ee3-0051-4cca-8bd8-a6890fa2829f
2025-08-19 00:14:27 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_061.mp4'
2025-08-19 00:14:27 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Video saved to temporary file: temp_videos/09052175-3b1e-46bb-822a-798635e6e32b.mp4
2025-08-19 00:14:27 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:14:34 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:14:34 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] 30 frames saved to temp_videos/09052175-3b1e-46bb-822a-798635e6e32b
2025-08-19 00:14:34 - INFO - Prompt token length: 3584
2025-08-19 00:14:51 - INFO - Tokens per second: 43.51970989323823, Peak GPU memory MB: 9376.375
2025-08-19 00:14:51 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Inference time: 23.80 seconds, CPU usage: 47.8%, CPU core utilization: [49.2, 36.0, 68.3, 37.6]
2025-08-19 00:14:51 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Cleaned up temporary file: temp_videos/09052175-3b1e-46bb-822a-798635e6e32b.mp4
2025-08-19 00:14:51 - INFO - [09052175-3b1e-46bb-822a-798635e6e32b] Cleaned up temporary frame directory: temp_videos/09052175-3b1e-46bb-822a-798635e6e32b
2025-08-19 00:14:51 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_062.mp4'
2025-08-19 00:14:51 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Video saved to temporary file: temp_videos/765a31c4-6b2f-4115-98a0-99024ed175a6.mp4
2025-08-19 00:14:51 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:14:57 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:14:57 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] 30 frames saved to temp_videos/765a31c4-6b2f-4115-98a0-99024ed175a6
2025-08-19 00:14:57 - INFO - Prompt token length: 3584
2025-08-19 00:15:16 - INFO - Tokens per second: 43.540681114859616, Peak GPU memory MB: 9376.375
2025-08-19 00:15:16 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Inference time: 24.19 seconds, CPU usage: 43.9%, CPU core utilization: [47.8, 48.5, 45.2, 33.9]
2025-08-19 00:15:16 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Cleaned up temporary file: temp_videos/765a31c4-6b2f-4115-98a0-99024ed175a6.mp4
2025-08-19 00:15:16 - INFO - [765a31c4-6b2f-4115-98a0-99024ed175a6] Cleaned up temporary frame directory: temp_videos/765a31c4-6b2f-4115-98a0-99024ed175a6
2025-08-19 00:15:16 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_063.mp4'
2025-08-19 00:15:16 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Video saved to temporary file: temp_videos/abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436.mp4
2025-08-19 00:15:16 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:15:21 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:15:21 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] 30 frames saved to temp_videos/abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436
2025-08-19 00:15:21 - INFO - Prompt token length: 3584
2025-08-19 00:15:39 - INFO - Tokens per second: 37.796216146669394, Peak GPU memory MB: 9376.375
2025-08-19 00:15:39 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Inference time: 23.91 seconds, CPU usage: 53.0%, CPU core utilization: [73.7, 42.0, 52.8, 43.7]
2025-08-19 00:15:39 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Cleaned up temporary file: temp_videos/abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436.mp4
2025-08-19 00:15:39 - INFO - [abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436] Cleaned up temporary frame directory: temp_videos/abaa3eb3-cb19-4bf1-ad8a-0d2641cf0436
2025-08-19 00:15:40 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_064.mp4'
2025-08-19 00:15:40 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Video saved to temporary file: temp_videos/ea938f48-111b-40bd-ba5b-a1503f7e9c2f.mp4
2025-08-19 00:15:40 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:15:48 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:15:48 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] 30 frames saved to temp_videos/ea938f48-111b-40bd-ba5b-a1503f7e9c2f
2025-08-19 00:15:48 - INFO - Prompt token length: 3584
2025-08-19 00:16:05 - INFO - Tokens per second: 43.727275245614855, Peak GPU memory MB: 9376.375
2025-08-19 00:16:05 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Inference time: 25.78 seconds, CPU usage: 52.1%, CPU core utilization: [57.7, 38.9, 74.6, 37.3]
2025-08-19 00:16:05 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Cleaned up temporary file: temp_videos/ea938f48-111b-40bd-ba5b-a1503f7e9c2f.mp4
2025-08-19 00:16:05 - INFO - [ea938f48-111b-40bd-ba5b-a1503f7e9c2f] Cleaned up temporary frame directory: temp_videos/ea938f48-111b-40bd-ba5b-a1503f7e9c2f
2025-08-19 00:16:05 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_065.mp4'
2025-08-19 00:16:05 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Video saved to temporary file: temp_videos/1bf8bb45-72f7-49ff-ae23-bfd3975b2825.mp4
2025-08-19 00:16:05 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:16:11 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:16:11 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] 30 frames saved to temp_videos/1bf8bb45-72f7-49ff-ae23-bfd3975b2825
2025-08-19 00:16:12 - INFO - Prompt token length: 3584
2025-08-19 00:16:30 - INFO - Tokens per second: 38.956429242334835, Peak GPU memory MB: 9376.375
2025-08-19 00:16:30 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Inference time: 24.38 seconds, CPU usage: 69.1%, CPU core utilization: [65.4, 61.1, 64.1, 85.6]
2025-08-19 00:16:30 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Cleaned up temporary file: temp_videos/1bf8bb45-72f7-49ff-ae23-bfd3975b2825.mp4
2025-08-19 00:16:30 - INFO - [1bf8bb45-72f7-49ff-ae23-bfd3975b2825] Cleaned up temporary frame directory: temp_videos/1bf8bb45-72f7-49ff-ae23-bfd3975b2825
2025-08-19 00:16:30 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_066.mp4'
2025-08-19 00:16:30 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Video saved to temporary file: temp_videos/a3157119-69c6-4037-bfba-d82e7ac83180.mp4
2025-08-19 00:16:30 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:16:38 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:16:38 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] 30 frames saved to temp_videos/a3157119-69c6-4037-bfba-d82e7ac83180
2025-08-19 00:16:38 - INFO - Prompt token length: 3584
2025-08-19 00:16:56 - INFO - Tokens per second: 43.58446168324715, Peak GPU memory MB: 9376.375
2025-08-19 00:16:56 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Inference time: 25.85 seconds, CPU usage: 71.0%, CPU core utilization: [87.1, 64.6, 66.0, 66.6]
2025-08-19 00:16:56 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Cleaned up temporary file: temp_videos/a3157119-69c6-4037-bfba-d82e7ac83180.mp4
2025-08-19 00:16:56 - INFO - [a3157119-69c6-4037-bfba-d82e7ac83180] Cleaned up temporary frame directory: temp_videos/a3157119-69c6-4037-bfba-d82e7ac83180
2025-08-19 00:16:56 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_067.mp4'
2025-08-19 00:16:56 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Video saved to temporary file: temp_videos/d46c2045-b622-411e-9577-bddbd3dbe913.mp4
2025-08-19 00:16:56 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:17:00 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:17:00 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] 30 frames saved to temp_videos/d46c2045-b622-411e-9577-bddbd3dbe913
2025-08-19 00:17:01 - INFO - Prompt token length: 3584
2025-08-19 00:17:17 - INFO - Tokens per second: 43.65934498479588, Peak GPU memory MB: 9376.375
2025-08-19 00:17:17 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Inference time: 21.31 seconds, CPU usage: 56.9%, CPU core utilization: [47.3, 76.3, 47.3, 56.6]
2025-08-19 00:17:17 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Cleaned up temporary file: temp_videos/d46c2045-b622-411e-9577-bddbd3dbe913.mp4
2025-08-19 00:17:17 - INFO - [d46c2045-b622-411e-9577-bddbd3dbe913] Cleaned up temporary frame directory: temp_videos/d46c2045-b622-411e-9577-bddbd3dbe913
2025-08-19 00:17:17 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_068.mp4'
2025-08-19 00:17:17 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Video saved to temporary file: temp_videos/c2b4b202-b382-4e12-aca6-32a385fd43ba.mp4
2025-08-19 00:17:17 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:17:22 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:17:22 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] 30 frames saved to temp_videos/c2b4b202-b382-4e12-aca6-32a385fd43ba
2025-08-19 00:17:23 - INFO - Prompt token length: 3584
2025-08-19 00:17:39 - INFO - Tokens per second: 43.06015335799167, Peak GPU memory MB: 9376.375
2025-08-19 00:17:39 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Inference time: 21.76 seconds, CPU usage: 47.5%, CPU core utilization: [37.8, 72.4, 30.5, 49.1]
2025-08-19 00:17:39 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Cleaned up temporary file: temp_videos/c2b4b202-b382-4e12-aca6-32a385fd43ba.mp4
2025-08-19 00:17:39 - INFO - [c2b4b202-b382-4e12-aca6-32a385fd43ba] Cleaned up temporary frame directory: temp_videos/c2b4b202-b382-4e12-aca6-32a385fd43ba
2025-08-19 00:17:39 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_069.mp4'
2025-08-19 00:17:39 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Video saved to temporary file: temp_videos/9f91a63e-4989-4419-a662-9537956ce823.mp4
2025-08-19 00:17:39 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:17:45 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:17:45 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] 30 frames saved to temp_videos/9f91a63e-4989-4419-a662-9537956ce823
2025-08-19 00:17:45 - INFO - Prompt token length: 3584
2025-08-19 00:18:02 - INFO - Tokens per second: 43.220403962218256, Peak GPU memory MB: 9376.375
2025-08-19 00:18:02 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Inference time: 23.01 seconds, CPU usage: 47.0%, CPU core utilization: [33.4, 43.6, 31.7, 79.4]
2025-08-19 00:18:02 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Cleaned up temporary file: temp_videos/9f91a63e-4989-4419-a662-9537956ce823.mp4
2025-08-19 00:18:02 - INFO - [9f91a63e-4989-4419-a662-9537956ce823] Cleaned up temporary frame directory: temp_videos/9f91a63e-4989-4419-a662-9537956ce823
2025-08-19 00:18:02 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_070.mp4'
2025-08-19 00:18:02 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Video saved to temporary file: temp_videos/46448195-307b-4e26-9899-fe9601ffd7e5.mp4
2025-08-19 00:18:02 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:18:08 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:18:08 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] 30 frames saved to temp_videos/46448195-307b-4e26-9899-fe9601ffd7e5
2025-08-19 00:18:08 - INFO - Prompt token length: 3584
2025-08-19 00:18:26 - INFO - Tokens per second: 43.39715561820535, Peak GPU memory MB: 9376.375
2025-08-19 00:18:26 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Inference time: 24.00 seconds, CPU usage: 45.2%, CPU core utilization: [36.5, 33.6, 84.4, 26.3]
2025-08-19 00:18:26 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Cleaned up temporary file: temp_videos/46448195-307b-4e26-9899-fe9601ffd7e5.mp4
2025-08-19 00:18:26 - INFO - [46448195-307b-4e26-9899-fe9601ffd7e5] Cleaned up temporary frame directory: temp_videos/46448195-307b-4e26-9899-fe9601ffd7e5
2025-08-19 00:18:26 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_071.mp4'
2025-08-19 00:18:26 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Video saved to temporary file: temp_videos/8d0f17d0-fb44-4984-91c2-16480b47a73b.mp4
2025-08-19 00:18:26 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:18:31 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:18:31 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] 30 frames saved to temp_videos/8d0f17d0-fb44-4984-91c2-16480b47a73b
2025-08-19 00:18:31 - INFO - Prompt token length: 3584
2025-08-19 00:18:48 - INFO - Tokens per second: 43.466487817577274, Peak GPU memory MB: 9376.375
2025-08-19 00:18:48 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Inference time: 22.43 seconds, CPU usage: 45.6%, CPU core utilization: [38.0, 48.8, 35.4, 60.0]
2025-08-19 00:18:48 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Cleaned up temporary file: temp_videos/8d0f17d0-fb44-4984-91c2-16480b47a73b.mp4
2025-08-19 00:18:48 - INFO - [8d0f17d0-fb44-4984-91c2-16480b47a73b] Cleaned up temporary frame directory: temp_videos/8d0f17d0-fb44-4984-91c2-16480b47a73b
2025-08-19 00:18:48 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_072.mp4'
2025-08-19 00:18:48 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Video saved to temporary file: temp_videos/a4f9d9a4-cf24-40c5-ba7f-44c054938c14.mp4
2025-08-19 00:18:48 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:18:53 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:18:53 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] 30 frames saved to temp_videos/a4f9d9a4-cf24-40c5-ba7f-44c054938c14
2025-08-19 00:18:53 - INFO - Prompt token length: 3584
2025-08-19 00:19:11 - INFO - Tokens per second: 43.3955833964203, Peak GPU memory MB: 9376.375
2025-08-19 00:19:11 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Inference time: 22.81 seconds, CPU usage: 43.0%, CPU core utilization: [47.9, 48.6, 53.5, 22.2]
2025-08-19 00:19:11 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Cleaned up temporary file: temp_videos/a4f9d9a4-cf24-40c5-ba7f-44c054938c14.mp4
2025-08-19 00:19:11 - INFO - [a4f9d9a4-cf24-40c5-ba7f-44c054938c14] Cleaned up temporary frame directory: temp_videos/a4f9d9a4-cf24-40c5-ba7f-44c054938c14
2025-08-19 00:19:11 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_073.mp4'
2025-08-19 00:19:11 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Video saved to temporary file: temp_videos/c3f5d00e-14bb-4168-b922-b234e61f7c74.mp4
2025-08-19 00:19:11 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:19:16 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:19:16 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] 30 frames saved to temp_videos/c3f5d00e-14bb-4168-b922-b234e61f7c74
2025-08-19 00:19:16 - INFO - Prompt token length: 3584
2025-08-19 00:19:34 - INFO - Tokens per second: 43.392131145686385, Peak GPU memory MB: 9376.375
2025-08-19 00:19:34 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Inference time: 23.08 seconds, CPU usage: 43.5%, CPU core utilization: [26.6, 21.1, 29.5, 96.7]
2025-08-19 00:19:34 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Cleaned up temporary file: temp_videos/c3f5d00e-14bb-4168-b922-b234e61f7c74.mp4
2025-08-19 00:19:34 - INFO - [c3f5d00e-14bb-4168-b922-b234e61f7c74] Cleaned up temporary frame directory: temp_videos/c3f5d00e-14bb-4168-b922-b234e61f7c74
2025-08-19 00:19:34 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_074.mp4'
2025-08-19 00:19:34 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Video saved to temporary file: temp_videos/bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5.mp4
2025-08-19 00:19:34 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:19:39 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:19:39 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] 30 frames saved to temp_videos/bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5
2025-08-19 00:19:40 - INFO - Prompt token length: 3584
2025-08-19 00:19:58 - INFO - Tokens per second: 43.3240962507516, Peak GPU memory MB: 9376.375
2025-08-19 00:19:58 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Inference time: 23.30 seconds, CPU usage: 43.9%, CPU core utilization: [22.3, 28.2, 98.5, 26.5]
2025-08-19 00:19:58 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Cleaned up temporary file: temp_videos/bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5.mp4
2025-08-19 00:19:58 - INFO - [bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5] Cleaned up temporary frame directory: temp_videos/bc3d9f6b-4b51-4f4f-9a4f-b4ebeba187c5
2025-08-19 00:19:58 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_075.mp4'
2025-08-19 00:19:58 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Video saved to temporary file: temp_videos/cd056d45-e87f-4ce2-b4d5-860507269888.mp4
2025-08-19 00:19:58 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:20:02 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:20:02 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] 30 frames saved to temp_videos/cd056d45-e87f-4ce2-b4d5-860507269888
2025-08-19 00:20:03 - INFO - Prompt token length: 3584
2025-08-19 00:20:20 - INFO - Tokens per second: 42.86824700295901, Peak GPU memory MB: 9376.375
2025-08-19 00:20:20 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Inference time: 22.13 seconds, CPU usage: 55.2%, CPU core utilization: [43.2, 53.7, 44.1, 79.5]
2025-08-19 00:20:20 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Cleaned up temporary file: temp_videos/cd056d45-e87f-4ce2-b4d5-860507269888.mp4
2025-08-19 00:20:20 - INFO - [cd056d45-e87f-4ce2-b4d5-860507269888] Cleaned up temporary frame directory: temp_videos/cd056d45-e87f-4ce2-b4d5-860507269888
2025-08-19 00:20:20 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_076.mp4'
2025-08-19 00:20:20 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Video saved to temporary file: temp_videos/8710e2cb-db96-4247-bacf-f6e08cd525c4.mp4
2025-08-19 00:20:20 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:20:25 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:20:25 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] 30 frames saved to temp_videos/8710e2cb-db96-4247-bacf-f6e08cd525c4
2025-08-19 00:20:25 - INFO - Prompt token length: 3584
2025-08-19 00:20:43 - INFO - Tokens per second: 43.49618548005215, Peak GPU memory MB: 9376.375
2025-08-19 00:20:43 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Inference time: 23.40 seconds, CPU usage: 42.5%, CPU core utilization: [21.7, 50.0, 55.7, 42.7]
2025-08-19 00:20:43 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Cleaned up temporary file: temp_videos/8710e2cb-db96-4247-bacf-f6e08cd525c4.mp4
2025-08-19 00:20:43 - INFO - [8710e2cb-db96-4247-bacf-f6e08cd525c4] Cleaned up temporary frame directory: temp_videos/8710e2cb-db96-4247-bacf-f6e08cd525c4
2025-08-19 00:20:43 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_077.mp4'
2025-08-19 00:20:43 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Video saved to temporary file: temp_videos/8fb8026c-6a91-4b73-9823-42b217a109d8.mp4
2025-08-19 00:20:43 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:20:49 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:20:49 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] 30 frames saved to temp_videos/8fb8026c-6a91-4b73-9823-42b217a109d8
2025-08-19 00:20:49 - INFO - Prompt token length: 3584
2025-08-19 00:21:07 - INFO - Tokens per second: 43.25714331377744, Peak GPU memory MB: 9376.375
2025-08-19 00:21:07 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Inference time: 23.83 seconds, CPU usage: 44.5%, CPU core utilization: [62.2, 35.9, 52.0, 28.0]
2025-08-19 00:21:07 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Cleaned up temporary file: temp_videos/8fb8026c-6a91-4b73-9823-42b217a109d8.mp4
2025-08-19 00:21:07 - INFO - [8fb8026c-6a91-4b73-9823-42b217a109d8] Cleaned up temporary frame directory: temp_videos/8fb8026c-6a91-4b73-9823-42b217a109d8
2025-08-19 00:21:07 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_078.mp4'
2025-08-19 00:21:07 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Video saved to temporary file: temp_videos/7987e226-46f3-42b2-8cf6-2808d03557f0.mp4
2025-08-19 00:21:07 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:21:13 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:21:13 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] 30 frames saved to temp_videos/7987e226-46f3-42b2-8cf6-2808d03557f0
2025-08-19 00:21:13 - INFO - Prompt token length: 3584
2025-08-19 00:21:30 - INFO - Tokens per second: 43.85060391397791, Peak GPU memory MB: 9376.375
2025-08-19 00:21:30 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Inference time: 23.16 seconds, CPU usage: 50.2%, CPU core utilization: [55.2, 37.0, 71.3, 37.2]
2025-08-19 00:21:30 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Cleaned up temporary file: temp_videos/7987e226-46f3-42b2-8cf6-2808d03557f0.mp4
2025-08-19 00:21:30 - INFO - [7987e226-46f3-42b2-8cf6-2808d03557f0] Cleaned up temporary frame directory: temp_videos/7987e226-46f3-42b2-8cf6-2808d03557f0
2025-08-19 00:21:30 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_079.mp4'
2025-08-19 00:21:30 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Video saved to temporary file: temp_videos/ec6d07c4-6500-441b-9f4b-f8c8984ec77c.mp4
2025-08-19 00:21:30 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:21:36 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:21:36 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] 30 frames saved to temp_videos/ec6d07c4-6500-441b-9f4b-f8c8984ec77c
2025-08-19 00:21:37 - INFO - Prompt token length: 3584
2025-08-19 00:21:54 - INFO - Tokens per second: 43.467235033644464, Peak GPU memory MB: 9376.375
2025-08-19 00:21:54 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Inference time: 23.67 seconds, CPU usage: 47.1%, CPU core utilization: [33.4, 42.8, 32.2, 80.0]
2025-08-19 00:21:54 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Cleaned up temporary file: temp_videos/ec6d07c4-6500-441b-9f4b-f8c8984ec77c.mp4
2025-08-19 00:21:54 - INFO - [ec6d07c4-6500-441b-9f4b-f8c8984ec77c] Cleaned up temporary frame directory: temp_videos/ec6d07c4-6500-441b-9f4b-f8c8984ec77c
2025-08-19 00:21:54 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_080.mp4'
2025-08-19 00:21:54 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Video saved to temporary file: temp_videos/829837ca-1d2c-47b2-9b72-96ddd902a942.mp4
2025-08-19 00:21:54 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:22:00 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:22:00 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] 30 frames saved to temp_videos/829837ca-1d2c-47b2-9b72-96ddd902a942
2025-08-19 00:22:00 - INFO - Prompt token length: 3584
2025-08-19 00:22:18 - INFO - Tokens per second: 42.13491054305142, Peak GPU memory MB: 9376.375
2025-08-19 00:22:18 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Inference time: 23.48 seconds, CPU usage: 55.8%, CPU core utilization: [52.7, 49.7, 55.4, 65.4]
2025-08-19 00:22:18 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Cleaned up temporary file: temp_videos/829837ca-1d2c-47b2-9b72-96ddd902a942.mp4
2025-08-19 00:22:18 - INFO - [829837ca-1d2c-47b2-9b72-96ddd902a942] Cleaned up temporary frame directory: temp_videos/829837ca-1d2c-47b2-9b72-96ddd902a942
2025-08-19 00:22:18 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_081.mp4'
2025-08-19 00:22:18 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Video saved to temporary file: temp_videos/6eeade54-04c2-4611-80cb-e58e2efcdd07.mp4
2025-08-19 00:22:18 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:22:25 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:22:25 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] 30 frames saved to temp_videos/6eeade54-04c2-4611-80cb-e58e2efcdd07
2025-08-19 00:22:25 - INFO - Prompt token length: 3584
2025-08-19 00:22:43 - INFO - Tokens per second: 43.3165118354319, Peak GPU memory MB: 9376.375
2025-08-19 00:22:43 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Inference time: 25.15 seconds, CPU usage: 51.4%, CPU core utilization: [43.1, 59.2, 50.8, 52.6]
2025-08-19 00:22:43 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Cleaned up temporary file: temp_videos/6eeade54-04c2-4611-80cb-e58e2efcdd07.mp4
2025-08-19 00:22:43 - INFO - [6eeade54-04c2-4611-80cb-e58e2efcdd07] Cleaned up temporary frame directory: temp_videos/6eeade54-04c2-4611-80cb-e58e2efcdd07
2025-08-19 00:22:43 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_082.mp4'
2025-08-19 00:22:43 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Video saved to temporary file: temp_videos/9ecb8db2-0c55-4ac4-9982-0240c4e27ebe.mp4
2025-08-19 00:22:43 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:22:48 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:22:48 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] 30 frames saved to temp_videos/9ecb8db2-0c55-4ac4-9982-0240c4e27ebe
2025-08-19 00:22:48 - INFO - Prompt token length: 3584
2025-08-19 00:23:07 - INFO - Tokens per second: 41.074128731433575, Peak GPU memory MB: 9376.375
2025-08-19 00:23:07 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Inference time: 23.64 seconds, CPU usage: 51.6%, CPU core utilization: [37.1, 50.6, 42.3, 76.5]
2025-08-19 00:23:07 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Cleaned up temporary file: temp_videos/9ecb8db2-0c55-4ac4-9982-0240c4e27ebe.mp4
2025-08-19 00:23:07 - INFO - [9ecb8db2-0c55-4ac4-9982-0240c4e27ebe] Cleaned up temporary frame directory: temp_videos/9ecb8db2-0c55-4ac4-9982-0240c4e27ebe
2025-08-19 00:23:07 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_083.mp4'
2025-08-19 00:23:07 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Video saved to temporary file: temp_videos/4cdad013-9d89-43fb-8160-46382ffc553c.mp4
2025-08-19 00:23:07 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:23:12 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:23:12 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] 30 frames saved to temp_videos/4cdad013-9d89-43fb-8160-46382ffc553c
2025-08-19 00:23:12 - INFO - Prompt token length: 3584
2025-08-19 00:23:29 - INFO - Tokens per second: 43.41314970326025, Peak GPU memory MB: 9376.375
2025-08-19 00:23:29 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Inference time: 22.28 seconds, CPU usage: 46.5%, CPU core utilization: [34.0, 42.8, 31.5, 77.8]
2025-08-19 00:23:29 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Cleaned up temporary file: temp_videos/4cdad013-9d89-43fb-8160-46382ffc553c.mp4
2025-08-19 00:23:29 - INFO - [4cdad013-9d89-43fb-8160-46382ffc553c] Cleaned up temporary frame directory: temp_videos/4cdad013-9d89-43fb-8160-46382ffc553c
2025-08-19 00:23:29 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_084.mp4'
2025-08-19 00:23:29 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Video saved to temporary file: temp_videos/7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4.mp4
2025-08-19 00:23:29 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:23:34 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:23:34 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] 30 frames saved to temp_videos/7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4
2025-08-19 00:23:34 - INFO - Prompt token length: 3584
2025-08-19 00:23:51 - INFO - Tokens per second: 43.62598508461413, Peak GPU memory MB: 9376.375
2025-08-19 00:23:51 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Inference time: 22.26 seconds, CPU usage: 46.9%, CPU core utilization: [81.5, 39.0, 38.0, 29.1]
2025-08-19 00:23:51 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Cleaned up temporary file: temp_videos/7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4.mp4
2025-08-19 00:23:51 - INFO - [7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4] Cleaned up temporary frame directory: temp_videos/7c6b4a6c-2ec8-4e91-aa5a-2f3335776ca4
2025-08-19 00:23:51 - INFO - [07466a28-800d-4972-acf4-94559053861e] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_085.mp4'
2025-08-19 00:23:51 - INFO - [07466a28-800d-4972-acf4-94559053861e] Video saved to temporary file: temp_videos/07466a28-800d-4972-acf4-94559053861e.mp4
2025-08-19 00:23:51 - INFO - [07466a28-800d-4972-acf4-94559053861e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:23:57 - INFO - [07466a28-800d-4972-acf4-94559053861e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:23:57 - INFO - [07466a28-800d-4972-acf4-94559053861e] 30 frames saved to temp_videos/07466a28-800d-4972-acf4-94559053861e
2025-08-19 00:23:57 - INFO - Prompt token length: 3584
2025-08-19 00:24:14 - INFO - Tokens per second: 42.46289527866258, Peak GPU memory MB: 9376.375
2025-08-19 00:24:14 - INFO - [07466a28-800d-4972-acf4-94559053861e] Inference time: 22.80 seconds, CPU usage: 51.1%, CPU core utilization: [42.8, 65.0, 52.8, 43.9]
2025-08-19 00:24:14 - INFO - [07466a28-800d-4972-acf4-94559053861e] Cleaned up temporary file: temp_videos/07466a28-800d-4972-acf4-94559053861e.mp4
2025-08-19 00:24:14 - INFO - [07466a28-800d-4972-acf4-94559053861e] Cleaned up temporary frame directory: temp_videos/07466a28-800d-4972-acf4-94559053861e
2025-08-19 00:24:14 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_086.mp4'
2025-08-19 00:24:14 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Video saved to temporary file: temp_videos/56cb38a2-66c4-43e8-bc7d-31b8cb08aff8.mp4
2025-08-19 00:24:14 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:24:20 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:24:20 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] 30 frames saved to temp_videos/56cb38a2-66c4-43e8-bc7d-31b8cb08aff8
2025-08-19 00:24:20 - INFO - Prompt token length: 3584
2025-08-19 00:24:38 - INFO - Tokens per second: 37.8510224115901, Peak GPU memory MB: 9376.375
2025-08-19 00:24:38 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Inference time: 23.45 seconds, CPU usage: 58.0%, CPU core utilization: [55.1, 48.7, 80.1, 48.1]
2025-08-19 00:24:38 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Cleaned up temporary file: temp_videos/56cb38a2-66c4-43e8-bc7d-31b8cb08aff8.mp4
2025-08-19 00:24:38 - INFO - [56cb38a2-66c4-43e8-bc7d-31b8cb08aff8] Cleaned up temporary frame directory: temp_videos/56cb38a2-66c4-43e8-bc7d-31b8cb08aff8
2025-08-19 00:24:38 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_087.mp4'
2025-08-19 00:24:38 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Video saved to temporary file: temp_videos/29fb6369-8944-4456-b037-5a218569fc63.mp4
2025-08-19 00:24:38 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:24:43 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:24:43 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] 30 frames saved to temp_videos/29fb6369-8944-4456-b037-5a218569fc63
2025-08-19 00:24:44 - INFO - Prompt token length: 3584
2025-08-19 00:25:01 - INFO - Tokens per second: 43.779372271828834, Peak GPU memory MB: 9376.375
2025-08-19 00:25:01 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Inference time: 23.15 seconds, CPU usage: 46.2%, CPU core utilization: [80.2, 32.2, 43.0, 29.4]
2025-08-19 00:25:01 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Cleaned up temporary file: temp_videos/29fb6369-8944-4456-b037-5a218569fc63.mp4
2025-08-19 00:25:01 - INFO - [29fb6369-8944-4456-b037-5a218569fc63] Cleaned up temporary frame directory: temp_videos/29fb6369-8944-4456-b037-5a218569fc63
2025-08-19 00:25:01 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_088.mp4'
2025-08-19 00:25:01 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Video saved to temporary file: temp_videos/4112d4a0-25b6-4de3-b8df-07482266ea12.mp4
2025-08-19 00:25:01 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:25:06 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:25:06 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] 30 frames saved to temp_videos/4112d4a0-25b6-4de3-b8df-07482266ea12
2025-08-19 00:25:07 - INFO - Prompt token length: 3584
2025-08-19 00:25:23 - INFO - Tokens per second: 43.907938544856734, Peak GPU memory MB: 9376.375
2025-08-19 00:25:23 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Inference time: 22.60 seconds, CPU usage: 45.6%, CPU core utilization: [60.0, 28.6, 61.1, 32.8]
2025-08-19 00:25:23 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Cleaned up temporary file: temp_videos/4112d4a0-25b6-4de3-b8df-07482266ea12.mp4
2025-08-19 00:25:23 - INFO - [4112d4a0-25b6-4de3-b8df-07482266ea12] Cleaned up temporary frame directory: temp_videos/4112d4a0-25b6-4de3-b8df-07482266ea12
2025-08-19 00:25:23 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_089.mp4'
2025-08-19 00:25:23 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Video saved to temporary file: temp_videos/2aa859c2-524a-4b40-b3f1-11f7d2c09c8d.mp4
2025-08-19 00:25:23 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:25:28 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:25:28 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] 30 frames saved to temp_videos/2aa859c2-524a-4b40-b3f1-11f7d2c09c8d
2025-08-19 00:25:29 - INFO - Prompt token length: 3584
2025-08-19 00:25:46 - INFO - Tokens per second: 42.785801642658335, Peak GPU memory MB: 9376.375
2025-08-19 00:25:46 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Inference time: 22.84 seconds, CPU usage: 45.7%, CPU core utilization: [34.4, 47.3, 59.1, 42.1]
2025-08-19 00:25:46 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Cleaned up temporary file: temp_videos/2aa859c2-524a-4b40-b3f1-11f7d2c09c8d.mp4
2025-08-19 00:25:46 - INFO - [2aa859c2-524a-4b40-b3f1-11f7d2c09c8d] Cleaned up temporary frame directory: temp_videos/2aa859c2-524a-4b40-b3f1-11f7d2c09c8d
2025-08-19 00:25:46 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_090.mp4'
2025-08-19 00:25:46 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Video saved to temporary file: temp_videos/3f587794-15a1-4bb7-9460-aa4cda103176.mp4
2025-08-19 00:25:46 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:25:52 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:25:52 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] 30 frames saved to temp_videos/3f587794-15a1-4bb7-9460-aa4cda103176
2025-08-19 00:25:52 - INFO - Prompt token length: 3584
2025-08-19 00:26:10 - INFO - Tokens per second: 43.70943500244427, Peak GPU memory MB: 9376.375
2025-08-19 00:26:10 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Inference time: 23.45 seconds, CPU usage: 45.4%, CPU core utilization: [29.0, 72.4, 32.0, 48.4]
2025-08-19 00:26:10 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Cleaned up temporary file: temp_videos/3f587794-15a1-4bb7-9460-aa4cda103176.mp4
2025-08-19 00:26:10 - INFO - [3f587794-15a1-4bb7-9460-aa4cda103176] Cleaned up temporary frame directory: temp_videos/3f587794-15a1-4bb7-9460-aa4cda103176
2025-08-19 00:26:10 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_091.mp4'
2025-08-19 00:26:10 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Video saved to temporary file: temp_videos/5b07e272-fc1d-4f43-9786-5c6813642a9a.mp4
2025-08-19 00:26:10 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:26:14 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:26:14 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] 30 frames saved to temp_videos/5b07e272-fc1d-4f43-9786-5c6813642a9a
2025-08-19 00:26:15 - INFO - Prompt token length: 3584
2025-08-19 00:26:32 - INFO - Tokens per second: 43.53166357065771, Peak GPU memory MB: 9376.375
2025-08-19 00:26:32 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Inference time: 22.16 seconds, CPU usage: 43.6%, CPU core utilization: [61.1, 56.1, 30.1, 27.1]
2025-08-19 00:26:32 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Cleaned up temporary file: temp_videos/5b07e272-fc1d-4f43-9786-5c6813642a9a.mp4
2025-08-19 00:26:32 - INFO - [5b07e272-fc1d-4f43-9786-5c6813642a9a] Cleaned up temporary frame directory: temp_videos/5b07e272-fc1d-4f43-9786-5c6813642a9a
2025-08-19 00:26:32 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_092.mp4'
2025-08-19 00:26:32 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Video saved to temporary file: temp_videos/d95c67fa-4234-48f7-a319-43376e2ad8c0.mp4
2025-08-19 00:26:32 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:26:36 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:26:36 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] 30 frames saved to temp_videos/d95c67fa-4234-48f7-a319-43376e2ad8c0
2025-08-19 00:26:36 - INFO - Prompt token length: 3584
2025-08-19 00:26:54 - INFO - Tokens per second: 43.549125338189285, Peak GPU memory MB: 9376.375
2025-08-19 00:26:54 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Inference time: 22.23 seconds, CPU usage: 40.9%, CPU core utilization: [24.2, 48.0, 24.0, 67.3]
2025-08-19 00:26:54 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Cleaned up temporary file: temp_videos/d95c67fa-4234-48f7-a319-43376e2ad8c0.mp4
2025-08-19 00:26:54 - INFO - [d95c67fa-4234-48f7-a319-43376e2ad8c0] Cleaned up temporary frame directory: temp_videos/d95c67fa-4234-48f7-a319-43376e2ad8c0
2025-08-19 00:26:54 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_093.mp4'
2025-08-19 00:26:54 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Video saved to temporary file: temp_videos/e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb.mp4
2025-08-19 00:26:54 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:26:57 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:26:57 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] 30 frames saved to temp_videos/e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb
2025-08-19 00:26:57 - INFO - Prompt token length: 3584
2025-08-19 00:27:13 - INFO - Tokens per second: 43.81067232421721, Peak GPU memory MB: 9376.375
2025-08-19 00:27:13 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Inference time: 19.25 seconds, CPU usage: 37.6%, CPU core utilization: [45.4, 47.1, 34.6, 23.3]
2025-08-19 00:27:13 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Cleaned up temporary file: temp_videos/e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb.mp4
2025-08-19 00:27:13 - INFO - [e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb] Cleaned up temporary frame directory: temp_videos/e8c39e39-19fd-4ed4-af31-c9e9eb39e7fb
2025-08-19 00:27:14 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_094.mp4'
2025-08-19 00:27:14 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Video saved to temporary file: temp_videos/a580b037-2332-41c4-8083-1528607b4723.mp4
2025-08-19 00:27:14 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:27:16 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:27:16 - INFO - [a580b037-2332-41c4-8083-1528607b4723] 30 frames saved to temp_videos/a580b037-2332-41c4-8083-1528607b4723
2025-08-19 00:27:16 - INFO - Prompt token length: 3584
2025-08-19 00:27:33 - INFO - Tokens per second: 43.90407130082045, Peak GPU memory MB: 9376.375
2025-08-19 00:27:33 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Inference time: 19.47 seconds, CPU usage: 36.5%, CPU core utilization: [26.0, 45.5, 18.2, 56.1]
2025-08-19 00:27:33 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Cleaned up temporary file: temp_videos/a580b037-2332-41c4-8083-1528607b4723.mp4
2025-08-19 00:27:33 - INFO - [a580b037-2332-41c4-8083-1528607b4723] Cleaned up temporary frame directory: temp_videos/a580b037-2332-41c4-8083-1528607b4723
2025-08-19 00:27:33 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_001.mp4'
2025-08-19 00:27:33 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Video saved to temporary file: temp_videos/0a5c1c7e-57f5-457e-9ff4-2b101994b9fa.mp4
2025-08-19 00:27:33 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:27:37 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:27:37 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] 30 frames saved to temp_videos/0a5c1c7e-57f5-457e-9ff4-2b101994b9fa
2025-08-19 00:27:37 - INFO - Prompt token length: 3584
2025-08-19 00:27:54 - INFO - Tokens per second: 43.63059232470235, Peak GPU memory MB: 9376.375
2025-08-19 00:27:54 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Inference time: 21.40 seconds, CPU usage: 41.1%, CPU core utilization: [21.9, 68.3, 27.7, 46.5]
2025-08-19 00:27:54 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Cleaned up temporary file: temp_videos/0a5c1c7e-57f5-457e-9ff4-2b101994b9fa.mp4
2025-08-19 00:27:54 - INFO - [0a5c1c7e-57f5-457e-9ff4-2b101994b9fa] Cleaned up temporary frame directory: temp_videos/0a5c1c7e-57f5-457e-9ff4-2b101994b9fa
2025-08-19 00:27:55 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_002.mp4'
2025-08-19 00:27:55 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Video saved to temporary file: temp_videos/e9ad7164-75d4-4ff0-a8b5-538233540578.mp4
2025-08-19 00:27:55 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:28:01 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:28:01 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] 30 frames saved to temp_videos/e9ad7164-75d4-4ff0-a8b5-538233540578
2025-08-19 00:28:01 - INFO - Prompt token length: 3584
2025-08-19 00:28:18 - INFO - Tokens per second: 43.51528055992275, Peak GPU memory MB: 9376.375
2025-08-19 00:28:18 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Inference time: 23.43 seconds, CPU usage: 46.0%, CPU core utilization: [42.4, 66.6, 33.9, 41.1]
2025-08-19 00:28:18 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Cleaned up temporary file: temp_videos/e9ad7164-75d4-4ff0-a8b5-538233540578.mp4
2025-08-19 00:28:18 - INFO - [e9ad7164-75d4-4ff0-a8b5-538233540578] Cleaned up temporary frame directory: temp_videos/e9ad7164-75d4-4ff0-a8b5-538233540578
2025-08-19 00:28:18 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_003.mp4'
2025-08-19 00:28:18 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Video saved to temporary file: temp_videos/e030af98-0a2d-4526-aa94-526fc498572a.mp4
2025-08-19 00:28:18 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:28:23 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:28:23 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] 30 frames saved to temp_videos/e030af98-0a2d-4526-aa94-526fc498572a
2025-08-19 00:28:24 - INFO - Prompt token length: 3584
2025-08-19 00:28:41 - INFO - Tokens per second: 43.14480825013987, Peak GPU memory MB: 9376.375
2025-08-19 00:28:41 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Inference time: 23.44 seconds, CPU usage: 43.9%, CPU core utilization: [55.3, 58.1, 24.9, 37.1]
2025-08-19 00:28:41 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Cleaned up temporary file: temp_videos/e030af98-0a2d-4526-aa94-526fc498572a.mp4
2025-08-19 00:28:41 - INFO - [e030af98-0a2d-4526-aa94-526fc498572a] Cleaned up temporary frame directory: temp_videos/e030af98-0a2d-4526-aa94-526fc498572a
2025-08-19 00:28:42 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_004.mp4'
2025-08-19 00:28:42 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Video saved to temporary file: temp_videos/e02c4876-bd5e-4324-b7db-52b8ae09da1f.mp4
2025-08-19 00:28:42 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:28:47 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:28:47 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] 30 frames saved to temp_videos/e02c4876-bd5e-4324-b7db-52b8ae09da1f
2025-08-19 00:28:47 - INFO - Prompt token length: 3584
2025-08-19 00:29:04 - INFO - Tokens per second: 43.61223216770222, Peak GPU memory MB: 9376.375
2025-08-19 00:29:04 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Inference time: 22.73 seconds, CPU usage: 43.6%, CPU core utilization: [57.3, 25.4, 61.0, 30.8]
2025-08-19 00:29:04 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Cleaned up temporary file: temp_videos/e02c4876-bd5e-4324-b7db-52b8ae09da1f.mp4
2025-08-19 00:29:04 - INFO - [e02c4876-bd5e-4324-b7db-52b8ae09da1f] Cleaned up temporary frame directory: temp_videos/e02c4876-bd5e-4324-b7db-52b8ae09da1f
2025-08-19 00:29:04 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_005.mp4'
2025-08-19 00:29:04 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Video saved to temporary file: temp_videos/e4e6be02-dc47-46ed-bfb1-3e7e879cb76b.mp4
2025-08-19 00:29:04 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:29:10 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:29:10 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] 30 frames saved to temp_videos/e4e6be02-dc47-46ed-bfb1-3e7e879cb76b
2025-08-19 00:29:10 - INFO - Prompt token length: 3584
2025-08-19 00:29:27 - INFO - Tokens per second: 43.19587492692884, Peak GPU memory MB: 9376.375
2025-08-19 00:29:27 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Inference time: 22.68 seconds, CPU usage: 44.7%, CPU core utilization: [28.8, 74.9, 47.1, 28.2]
2025-08-19 00:29:27 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Cleaned up temporary file: temp_videos/e4e6be02-dc47-46ed-bfb1-3e7e879cb76b.mp4
2025-08-19 00:29:27 - INFO - [e4e6be02-dc47-46ed-bfb1-3e7e879cb76b] Cleaned up temporary frame directory: temp_videos/e4e6be02-dc47-46ed-bfb1-3e7e879cb76b
2025-08-19 00:29:27 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_006.mp4'
2025-08-19 00:29:27 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Video saved to temporary file: temp_videos/2742f50f-4a88-4492-af15-89c3771fa60a.mp4
2025-08-19 00:29:27 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:29:33 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:29:33 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] 30 frames saved to temp_videos/2742f50f-4a88-4492-af15-89c3771fa60a
2025-08-19 00:29:34 - INFO - Prompt token length: 3584
2025-08-19 00:29:51 - INFO - Tokens per second: 43.57761765477471, Peak GPU memory MB: 9376.375
2025-08-19 00:29:51 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Inference time: 23.98 seconds, CPU usage: 46.4%, CPU core utilization: [30.9, 30.5, 91.3, 32.8]
2025-08-19 00:29:51 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Cleaned up temporary file: temp_videos/2742f50f-4a88-4492-af15-89c3771fa60a.mp4
2025-08-19 00:29:51 - INFO - [2742f50f-4a88-4492-af15-89c3771fa60a] Cleaned up temporary frame directory: temp_videos/2742f50f-4a88-4492-af15-89c3771fa60a
2025-08-19 00:29:51 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_007.mp4'
2025-08-19 00:29:51 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Video saved to temporary file: temp_videos/901b19df-4386-4313-b75e-fa7d7acefe5e.mp4
2025-08-19 00:29:51 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:29:57 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:29:57 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] 30 frames saved to temp_videos/901b19df-4386-4313-b75e-fa7d7acefe5e
2025-08-19 00:29:57 - INFO - Prompt token length: 3584
2025-08-19 00:30:14 - INFO - Tokens per second: 43.63718223089107, Peak GPU memory MB: 9376.375
2025-08-19 00:30:14 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Inference time: 22.93 seconds, CPU usage: 45.5%, CPU core utilization: [56.0, 51.6, 37.2, 37.0]
2025-08-19 00:30:14 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Cleaned up temporary file: temp_videos/901b19df-4386-4313-b75e-fa7d7acefe5e.mp4
2025-08-19 00:30:14 - INFO - [901b19df-4386-4313-b75e-fa7d7acefe5e] Cleaned up temporary frame directory: temp_videos/901b19df-4386-4313-b75e-fa7d7acefe5e
2025-08-19 00:30:14 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_008.mp4'
2025-08-19 00:30:14 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Video saved to temporary file: temp_videos/bbc663d8-2fb3-4311-8c5c-78fc624138d2.mp4
2025-08-19 00:30:14 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:30:20 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:30:20 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] 30 frames saved to temp_videos/bbc663d8-2fb3-4311-8c5c-78fc624138d2
2025-08-19 00:30:20 - INFO - Prompt token length: 3584
2025-08-19 00:30:37 - INFO - Tokens per second: 43.53603194535748, Peak GPU memory MB: 9376.375
2025-08-19 00:30:37 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Inference time: 22.86 seconds, CPU usage: 44.8%, CPU core utilization: [42.3, 28.4, 78.7, 29.8]
2025-08-19 00:30:37 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Cleaned up temporary file: temp_videos/bbc663d8-2fb3-4311-8c5c-78fc624138d2.mp4
2025-08-19 00:30:37 - INFO - [bbc663d8-2fb3-4311-8c5c-78fc624138d2] Cleaned up temporary frame directory: temp_videos/bbc663d8-2fb3-4311-8c5c-78fc624138d2
2025-08-19 00:30:37 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_009.mp4'
2025-08-19 00:30:37 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Video saved to temporary file: temp_videos/1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f.mp4
2025-08-19 00:30:37 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:30:43 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:30:43 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] 30 frames saved to temp_videos/1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f
2025-08-19 00:30:43 - INFO - Prompt token length: 3584
2025-08-19 00:31:00 - INFO - Tokens per second: 43.67786409828369, Peak GPU memory MB: 9376.375
2025-08-19 00:31:00 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Inference time: 22.94 seconds, CPU usage: 45.0%, CPU core utilization: [71.8, 28.1, 41.7, 38.4]
2025-08-19 00:31:00 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Cleaned up temporary file: temp_videos/1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f.mp4
2025-08-19 00:31:00 - INFO - [1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f] Cleaned up temporary frame directory: temp_videos/1c2b9ff9-bfab-4a92-aa71-35ead3adcc9f
2025-08-19 00:31:00 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_010.mp4'
2025-08-19 00:31:00 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Video saved to temporary file: temp_videos/25775bfa-4c45-4918-8c9d-4ced872bb378.mp4
2025-08-19 00:31:00 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:31:05 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:31:05 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] 30 frames saved to temp_videos/25775bfa-4c45-4918-8c9d-4ced872bb378
2025-08-19 00:31:06 - INFO - Prompt token length: 3584
2025-08-19 00:31:23 - INFO - Tokens per second: 43.654193436473435, Peak GPU memory MB: 9376.375
2025-08-19 00:31:23 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Inference time: 22.56 seconds, CPU usage: 44.2%, CPU core utilization: [27.0, 53.1, 58.2, 38.5]
2025-08-19 00:31:23 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Cleaned up temporary file: temp_videos/25775bfa-4c45-4918-8c9d-4ced872bb378.mp4
2025-08-19 00:31:23 - INFO - [25775bfa-4c45-4918-8c9d-4ced872bb378] Cleaned up temporary frame directory: temp_videos/25775bfa-4c45-4918-8c9d-4ced872bb378
2025-08-19 00:31:23 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_011.mp4'
2025-08-19 00:31:23 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Video saved to temporary file: temp_videos/5e304f41-75f5-4a5d-9047-51d1372ccb19.mp4
2025-08-19 00:31:23 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:31:28 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:31:28 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] 30 frames saved to temp_videos/5e304f41-75f5-4a5d-9047-51d1372ccb19
2025-08-19 00:31:29 - INFO - Prompt token length: 3584
2025-08-19 00:31:47 - INFO - Tokens per second: 42.25990172456639, Peak GPU memory MB: 9376.375
2025-08-19 00:31:47 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Inference time: 23.76 seconds, CPU usage: 47.5%, CPU core utilization: [47.9, 37.2, 72.1, 32.9]
2025-08-19 00:31:47 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Cleaned up temporary file: temp_videos/5e304f41-75f5-4a5d-9047-51d1372ccb19.mp4
2025-08-19 00:31:47 - INFO - [5e304f41-75f5-4a5d-9047-51d1372ccb19] Cleaned up temporary frame directory: temp_videos/5e304f41-75f5-4a5d-9047-51d1372ccb19
2025-08-19 00:31:47 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_012.mp4'
2025-08-19 00:31:47 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Video saved to temporary file: temp_videos/2764d344-a10b-4b4b-9fe2-5228895300dd.mp4
2025-08-19 00:31:47 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:31:53 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:31:53 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] 30 frames saved to temp_videos/2764d344-a10b-4b4b-9fe2-5228895300dd
2025-08-19 00:31:53 - INFO - Prompt token length: 3584
2025-08-19 00:32:12 - INFO - Tokens per second: 42.53959316212018, Peak GPU memory MB: 9376.375
2025-08-19 00:32:12 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Inference time: 25.42 seconds, CPU usage: 58.0%, CPU core utilization: [49.7, 50.9, 62.3, 69.2]
2025-08-19 00:32:12 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Cleaned up temporary file: temp_videos/2764d344-a10b-4b4b-9fe2-5228895300dd.mp4
2025-08-19 00:32:12 - INFO - [2764d344-a10b-4b4b-9fe2-5228895300dd] Cleaned up temporary frame directory: temp_videos/2764d344-a10b-4b4b-9fe2-5228895300dd
2025-08-19 00:32:12 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_013.mp4'
2025-08-19 00:32:12 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Video saved to temporary file: temp_videos/4610515b-7531-42e2-b291-03a984ab739a.mp4
2025-08-19 00:32:12 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:32:18 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:32:18 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] 30 frames saved to temp_videos/4610515b-7531-42e2-b291-03a984ab739a
2025-08-19 00:32:18 - INFO - Prompt token length: 3584
2025-08-19 00:32:35 - INFO - Tokens per second: 43.737237712906385, Peak GPU memory MB: 9376.375
2025-08-19 00:32:35 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Inference time: 22.70 seconds, CPU usage: 45.1%, CPU core utilization: [65.1, 42.1, 39.7, 33.5]
2025-08-19 00:32:35 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Cleaned up temporary file: temp_videos/4610515b-7531-42e2-b291-03a984ab739a.mp4
2025-08-19 00:32:35 - INFO - [4610515b-7531-42e2-b291-03a984ab739a] Cleaned up temporary frame directory: temp_videos/4610515b-7531-42e2-b291-03a984ab739a
2025-08-19 00:32:35 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_014.mp4'
2025-08-19 00:32:35 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Video saved to temporary file: temp_videos/c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c.mp4
2025-08-19 00:32:35 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:32:40 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:32:40 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] 30 frames saved to temp_videos/c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c
2025-08-19 00:32:40 - INFO - Prompt token length: 3584
2025-08-19 00:32:58 - INFO - Tokens per second: 43.33501727893497, Peak GPU memory MB: 9376.375
2025-08-19 00:32:58 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Inference time: 23.14 seconds, CPU usage: 43.8%, CPU core utilization: [66.1, 47.0, 32.0, 30.1]
2025-08-19 00:32:58 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Cleaned up temporary file: temp_videos/c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c.mp4
2025-08-19 00:32:58 - INFO - [c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c] Cleaned up temporary frame directory: temp_videos/c2a9c747-c17c-4ab8-a0b4-1f86dde89f0c
2025-08-19 00:32:58 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_015.mp4'
2025-08-19 00:32:58 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Video saved to temporary file: temp_videos/13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4.mp4
2025-08-19 00:32:58 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:33:04 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:33:04 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] 30 frames saved to temp_videos/13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4
2025-08-19 00:33:04 - INFO - Prompt token length: 3584
2025-08-19 00:33:21 - INFO - Tokens per second: 43.71047297473334, Peak GPU memory MB: 9376.375
2025-08-19 00:33:21 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Inference time: 22.57 seconds, CPU usage: 47.0%, CPU core utilization: [32.8, 31.1, 61.7, 62.5]
2025-08-19 00:33:21 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Cleaned up temporary file: temp_videos/13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4.mp4
2025-08-19 00:33:21 - INFO - [13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4] Cleaned up temporary frame directory: temp_videos/13279ac7-d5a2-4aaa-ba42-4a36e7dc1da4
2025-08-19 00:33:21 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_016.mp4'
2025-08-19 00:33:21 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Video saved to temporary file: temp_videos/4a051ecf-867f-4bf1-8fe7-b2ee29b375b4.mp4
2025-08-19 00:33:21 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:33:26 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:33:26 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] 30 frames saved to temp_videos/4a051ecf-867f-4bf1-8fe7-b2ee29b375b4
2025-08-19 00:33:27 - INFO - Prompt token length: 3584
2025-08-19 00:33:44 - INFO - Tokens per second: 43.54078657986269, Peak GPU memory MB: 9376.375
2025-08-19 00:33:44 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Inference time: 22.97 seconds, CPU usage: 45.4%, CPU core utilization: [32.7, 73.2, 36.0, 39.6]
2025-08-19 00:33:44 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Cleaned up temporary file: temp_videos/4a051ecf-867f-4bf1-8fe7-b2ee29b375b4.mp4
2025-08-19 00:33:44 - INFO - [4a051ecf-867f-4bf1-8fe7-b2ee29b375b4] Cleaned up temporary frame directory: temp_videos/4a051ecf-867f-4bf1-8fe7-b2ee29b375b4
2025-08-19 00:33:44 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_017.mp4'
2025-08-19 00:33:44 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Video saved to temporary file: temp_videos/994fc803-baab-4dde-b569-108a0ffa0208.mp4
2025-08-19 00:33:44 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:33:49 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:33:49 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] 30 frames saved to temp_videos/994fc803-baab-4dde-b569-108a0ffa0208
2025-08-19 00:33:50 - INFO - Prompt token length: 3584
2025-08-19 00:34:07 - INFO - Tokens per second: 43.53893919238898, Peak GPU memory MB: 9376.375
2025-08-19 00:34:07 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Inference time: 22.69 seconds, CPU usage: 45.0%, CPU core utilization: [45.9, 29.2, 74.2, 30.6]
2025-08-19 00:34:07 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Cleaned up temporary file: temp_videos/994fc803-baab-4dde-b569-108a0ffa0208.mp4
2025-08-19 00:34:07 - INFO - [994fc803-baab-4dde-b569-108a0ffa0208] Cleaned up temporary frame directory: temp_videos/994fc803-baab-4dde-b569-108a0ffa0208
2025-08-19 00:34:07 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_018.mp4'
2025-08-19 00:34:07 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Video saved to temporary file: temp_videos/5606584a-f2db-4dd9-9e06-23a5c7ae5a58.mp4
2025-08-19 00:34:07 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:34:12 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:34:12 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] 30 frames saved to temp_videos/5606584a-f2db-4dd9-9e06-23a5c7ae5a58
2025-08-19 00:34:12 - INFO - Prompt token length: 3584
2025-08-19 00:34:30 - INFO - Tokens per second: 42.77804507220416, Peak GPU memory MB: 9376.375
2025-08-19 00:34:30 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Inference time: 23.72 seconds, CPU usage: 45.6%, CPU core utilization: [33.4, 46.8, 28.9, 73.0]
2025-08-19 00:34:30 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Cleaned up temporary file: temp_videos/5606584a-f2db-4dd9-9e06-23a5c7ae5a58.mp4
2025-08-19 00:34:30 - INFO - [5606584a-f2db-4dd9-9e06-23a5c7ae5a58] Cleaned up temporary frame directory: temp_videos/5606584a-f2db-4dd9-9e06-23a5c7ae5a58
2025-08-19 00:34:30 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_019.mp4'
2025-08-19 00:34:30 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Video saved to temporary file: temp_videos/c4534a25-5702-4922-96e2-e5c790e9bc6b.mp4
2025-08-19 00:34:30 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:34:36 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:34:36 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] 30 frames saved to temp_videos/c4534a25-5702-4922-96e2-e5c790e9bc6b
2025-08-19 00:34:36 - INFO - Prompt token length: 3584
2025-08-19 00:34:53 - INFO - Tokens per second: 40.6841438932034, Peak GPU memory MB: 9376.375
2025-08-19 00:34:53 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Inference time: 23.05 seconds, CPU usage: 54.3%, CPU core utilization: [46.2, 41.7, 86.8, 42.3]
2025-08-19 00:34:53 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Cleaned up temporary file: temp_videos/c4534a25-5702-4922-96e2-e5c790e9bc6b.mp4
2025-08-19 00:34:53 - INFO - [c4534a25-5702-4922-96e2-e5c790e9bc6b] Cleaned up temporary frame directory: temp_videos/c4534a25-5702-4922-96e2-e5c790e9bc6b
2025-08-19 00:34:54 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_020.mp4'
2025-08-19 00:34:54 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Video saved to temporary file: temp_videos/a6605c13-f678-4b76-823c-64c07ccfa104.mp4
2025-08-19 00:34:54 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:34:59 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:34:59 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] 30 frames saved to temp_videos/a6605c13-f678-4b76-823c-64c07ccfa104
2025-08-19 00:34:59 - INFO - Prompt token length: 3584
2025-08-19 00:35:17 - INFO - Tokens per second: 43.20499224445443, Peak GPU memory MB: 9376.375
2025-08-19 00:35:17 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Inference time: 23.12 seconds, CPU usage: 49.5%, CPU core utilization: [42.4, 46.3, 74.6, 34.7]
2025-08-19 00:35:17 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Cleaned up temporary file: temp_videos/a6605c13-f678-4b76-823c-64c07ccfa104.mp4
2025-08-19 00:35:17 - INFO - [a6605c13-f678-4b76-823c-64c07ccfa104] Cleaned up temporary frame directory: temp_videos/a6605c13-f678-4b76-823c-64c07ccfa104
2025-08-19 00:35:17 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_021.mp4'
2025-08-19 00:35:17 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Video saved to temporary file: temp_videos/31f98437-d0f8-4393-8ae4-6ea6c23cf010.mp4
2025-08-19 00:35:17 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:35:22 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:35:22 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] 30 frames saved to temp_videos/31f98437-d0f8-4393-8ae4-6ea6c23cf010
2025-08-19 00:35:22 - INFO - Prompt token length: 3584
2025-08-19 00:35:39 - INFO - Tokens per second: 43.746940726148665, Peak GPU memory MB: 9376.375
2025-08-19 00:35:39 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Inference time: 22.60 seconds, CPU usage: 43.7%, CPU core utilization: [31.5, 63.2, 28.2, 51.8]
2025-08-19 00:35:39 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Cleaned up temporary file: temp_videos/31f98437-d0f8-4393-8ae4-6ea6c23cf010.mp4
2025-08-19 00:35:39 - INFO - [31f98437-d0f8-4393-8ae4-6ea6c23cf010] Cleaned up temporary frame directory: temp_videos/31f98437-d0f8-4393-8ae4-6ea6c23cf010
2025-08-19 00:35:39 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_022.mp4'
2025-08-19 00:35:39 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Video saved to temporary file: temp_videos/40bb760d-6921-44f3-a091-33b7835be611.mp4
2025-08-19 00:35:39 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:35:44 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:35:44 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] 30 frames saved to temp_videos/40bb760d-6921-44f3-a091-33b7835be611
2025-08-19 00:35:45 - INFO - Prompt token length: 3584
2025-08-19 00:36:02 - INFO - Tokens per second: 43.45687531076368, Peak GPU memory MB: 9376.375
2025-08-19 00:36:02 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Inference time: 22.24 seconds, CPU usage: 43.8%, CPU core utilization: [31.2, 36.9, 42.2, 64.8]
2025-08-19 00:36:02 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Cleaned up temporary file: temp_videos/40bb760d-6921-44f3-a091-33b7835be611.mp4
2025-08-19 00:36:02 - INFO - [40bb760d-6921-44f3-a091-33b7835be611] Cleaned up temporary frame directory: temp_videos/40bb760d-6921-44f3-a091-33b7835be611
2025-08-19 00:36:02 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_023.mp4'
2025-08-19 00:36:02 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Video saved to temporary file: temp_videos/aea8de20-54da-4e43-ba94-3c5bdb461925.mp4
2025-08-19 00:36:02 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:36:06 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:36:06 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] 30 frames saved to temp_videos/aea8de20-54da-4e43-ba94-3c5bdb461925
2025-08-19 00:36:07 - INFO - Prompt token length: 3584
2025-08-19 00:36:24 - INFO - Tokens per second: 43.49020834357343, Peak GPU memory MB: 9376.375
2025-08-19 00:36:24 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Inference time: 22.04 seconds, CPU usage: 43.7%, CPU core utilization: [70.2, 24.4, 48.9, 31.3]
2025-08-19 00:36:24 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Cleaned up temporary file: temp_videos/aea8de20-54da-4e43-ba94-3c5bdb461925.mp4
2025-08-19 00:36:24 - INFO - [aea8de20-54da-4e43-ba94-3c5bdb461925] Cleaned up temporary frame directory: temp_videos/aea8de20-54da-4e43-ba94-3c5bdb461925
2025-08-19 00:36:24 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_024.mp4'
2025-08-19 00:36:24 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Video saved to temporary file: temp_videos/b6f229e3-0c87-428a-9cb0-1830d2684f26.mp4
2025-08-19 00:36:24 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:36:29 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:36:29 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] 30 frames saved to temp_videos/b6f229e3-0c87-428a-9cb0-1830d2684f26
2025-08-19 00:36:30 - INFO - Prompt token length: 3584
2025-08-19 00:36:47 - INFO - Tokens per second: 43.259381943491896, Peak GPU memory MB: 9376.375
2025-08-19 00:36:47 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Inference time: 23.63 seconds, CPU usage: 44.7%, CPU core utilization: [63.8, 43.0, 41.4, 30.7]
2025-08-19 00:36:47 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Cleaned up temporary file: temp_videos/b6f229e3-0c87-428a-9cb0-1830d2684f26.mp4
2025-08-19 00:36:47 - INFO - [b6f229e3-0c87-428a-9cb0-1830d2684f26] Cleaned up temporary frame directory: temp_videos/b6f229e3-0c87-428a-9cb0-1830d2684f26
2025-08-19 00:36:48 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_025.mp4'
2025-08-19 00:36:48 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Video saved to temporary file: temp_videos/cd77c607-1686-4879-8c10-ef8b16706cf1.mp4
2025-08-19 00:36:48 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:36:53 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:36:53 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] 30 frames saved to temp_videos/cd77c607-1686-4879-8c10-ef8b16706cf1
2025-08-19 00:36:53 - INFO - Prompt token length: 3584
2025-08-19 00:37:11 - INFO - Tokens per second: 42.31568205191284, Peak GPU memory MB: 9376.375
2025-08-19 00:37:11 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Inference time: 23.54 seconds, CPU usage: 47.6%, CPU core utilization: [43.2, 34.2, 80.0, 33.0]
2025-08-19 00:37:11 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Cleaned up temporary file: temp_videos/cd77c607-1686-4879-8c10-ef8b16706cf1.mp4
2025-08-19 00:37:11 - INFO - [cd77c607-1686-4879-8c10-ef8b16706cf1] Cleaned up temporary frame directory: temp_videos/cd77c607-1686-4879-8c10-ef8b16706cf1
2025-08-19 00:37:11 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_026.mp4'
2025-08-19 00:37:11 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Video saved to temporary file: temp_videos/45aedb54-179c-42c7-8684-63667aaf0ec5.mp4
2025-08-19 00:37:11 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:37:17 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:37:17 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] 30 frames saved to temp_videos/45aedb54-179c-42c7-8684-63667aaf0ec5
2025-08-19 00:37:18 - INFO - Prompt token length: 3584
2025-08-19 00:37:35 - INFO - Tokens per second: 43.71294869542146, Peak GPU memory MB: 9376.375
2025-08-19 00:37:35 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Inference time: 23.51 seconds, CPU usage: 57.7%, CPU core utilization: [47.3, 49.4, 90.4, 43.8]
2025-08-19 00:37:35 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Cleaned up temporary file: temp_videos/45aedb54-179c-42c7-8684-63667aaf0ec5.mp4
2025-08-19 00:37:35 - INFO - [45aedb54-179c-42c7-8684-63667aaf0ec5] Cleaned up temporary frame directory: temp_videos/45aedb54-179c-42c7-8684-63667aaf0ec5
2025-08-19 00:37:35 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_027.mp4'
2025-08-19 00:37:35 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Video saved to temporary file: temp_videos/d6812e19-7d6f-4e25-9f25-30fc0d87b43d.mp4
2025-08-19 00:37:35 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:37:40 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:37:40 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] 30 frames saved to temp_videos/d6812e19-7d6f-4e25-9f25-30fc0d87b43d
2025-08-19 00:37:41 - INFO - Prompt token length: 3584
2025-08-19 00:37:58 - INFO - Tokens per second: 43.47154398494139, Peak GPU memory MB: 9376.375
2025-08-19 00:37:58 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Inference time: 23.51 seconds, CPU usage: 54.7%, CPU core utilization: [71.9, 45.5, 54.5, 46.9]
2025-08-19 00:37:58 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Cleaned up temporary file: temp_videos/d6812e19-7d6f-4e25-9f25-30fc0d87b43d.mp4
2025-08-19 00:37:58 - INFO - [d6812e19-7d6f-4e25-9f25-30fc0d87b43d] Cleaned up temporary frame directory: temp_videos/d6812e19-7d6f-4e25-9f25-30fc0d87b43d
2025-08-19 00:37:58 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_028.mp4'
2025-08-19 00:37:58 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Video saved to temporary file: temp_videos/c1ee46de-96fd-48a7-a18d-854aa9e83094.mp4
2025-08-19 00:37:58 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:38:04 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:38:04 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] 30 frames saved to temp_videos/c1ee46de-96fd-48a7-a18d-854aa9e83094
2025-08-19 00:38:04 - INFO - Prompt token length: 3584
2025-08-19 00:38:21 - INFO - Tokens per second: 43.76276301342597, Peak GPU memory MB: 9376.375
2025-08-19 00:38:21 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Inference time: 22.58 seconds, CPU usage: 47.9%, CPU core utilization: [38.6, 39.2, 72.7, 41.2]
2025-08-19 00:38:21 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Cleaned up temporary file: temp_videos/c1ee46de-96fd-48a7-a18d-854aa9e83094.mp4
2025-08-19 00:38:21 - INFO - [c1ee46de-96fd-48a7-a18d-854aa9e83094] Cleaned up temporary frame directory: temp_videos/c1ee46de-96fd-48a7-a18d-854aa9e83094
2025-08-19 00:38:21 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_029.mp4'
2025-08-19 00:38:21 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Video saved to temporary file: temp_videos/18089c8d-6e44-447a-b7f0-f1cdf82e40f6.mp4
2025-08-19 00:38:21 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:38:26 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:38:26 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] 30 frames saved to temp_videos/18089c8d-6e44-447a-b7f0-f1cdf82e40f6
2025-08-19 00:38:27 - INFO - Prompt token length: 3584
2025-08-19 00:38:44 - INFO - Tokens per second: 43.4272358854674, Peak GPU memory MB: 9376.375
2025-08-19 00:38:44 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Inference time: 23.12 seconds, CPU usage: 44.1%, CPU core utilization: [26.9, 28.3, 93.0, 28.4]
2025-08-19 00:38:44 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Cleaned up temporary file: temp_videos/18089c8d-6e44-447a-b7f0-f1cdf82e40f6.mp4
2025-08-19 00:38:44 - INFO - [18089c8d-6e44-447a-b7f0-f1cdf82e40f6] Cleaned up temporary frame directory: temp_videos/18089c8d-6e44-447a-b7f0-f1cdf82e40f6
2025-08-19 00:38:44 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_030.mp4'
2025-08-19 00:38:44 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Video saved to temporary file: temp_videos/d4dab866-28bd-4075-9952-69dc9f6ab262.mp4
2025-08-19 00:38:44 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:38:51 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:38:51 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] 30 frames saved to temp_videos/d4dab866-28bd-4075-9952-69dc9f6ab262
2025-08-19 00:38:51 - INFO - Prompt token length: 3584
2025-08-19 00:39:08 - INFO - Tokens per second: 43.72120414399684, Peak GPU memory MB: 9376.375
2025-08-19 00:39:08 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Inference time: 23.72 seconds, CPU usage: 47.6%, CPU core utilization: [33.4, 49.4, 32.4, 75.2]
2025-08-19 00:39:08 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Cleaned up temporary file: temp_videos/d4dab866-28bd-4075-9952-69dc9f6ab262.mp4
2025-08-19 00:39:08 - INFO - [d4dab866-28bd-4075-9952-69dc9f6ab262] Cleaned up temporary frame directory: temp_videos/d4dab866-28bd-4075-9952-69dc9f6ab262
2025-08-19 00:39:08 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_031.mp4'
2025-08-19 00:39:08 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Video saved to temporary file: temp_videos/70021715-c064-4359-ae0b-a826669fca48.mp4
2025-08-19 00:39:08 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:39:14 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:39:14 - INFO - [70021715-c064-4359-ae0b-a826669fca48] 30 frames saved to temp_videos/70021715-c064-4359-ae0b-a826669fca48
2025-08-19 00:39:15 - INFO - Prompt token length: 3584
2025-08-19 00:39:32 - INFO - Tokens per second: 43.42996315564404, Peak GPU memory MB: 9376.375
2025-08-19 00:39:32 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Inference time: 23.88 seconds, CPU usage: 46.2%, CPU core utilization: [38.6, 73.1, 26.1, 46.8]
2025-08-19 00:39:32 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Cleaned up temporary file: temp_videos/70021715-c064-4359-ae0b-a826669fca48.mp4
2025-08-19 00:39:32 - INFO - [70021715-c064-4359-ae0b-a826669fca48] Cleaned up temporary frame directory: temp_videos/70021715-c064-4359-ae0b-a826669fca48
2025-08-19 00:39:32 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_032.mp4'
2025-08-19 00:39:32 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Video saved to temporary file: temp_videos/35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1.mp4
2025-08-19 00:39:32 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:39:38 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:39:38 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] 30 frames saved to temp_videos/35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1
2025-08-19 00:39:38 - INFO - Prompt token length: 3584
2025-08-19 00:39:55 - INFO - Tokens per second: 43.38448764784339, Peak GPU memory MB: 9376.375
2025-08-19 00:39:55 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Inference time: 23.33 seconds, CPU usage: 46.9%, CPU core utilization: [29.8, 31.7, 94.3, 31.8]
2025-08-19 00:39:55 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Cleaned up temporary file: temp_videos/35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1.mp4
2025-08-19 00:39:55 - INFO - [35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1] Cleaned up temporary frame directory: temp_videos/35a5f9f3-77e1-40ec-92e4-d8d9e89b5dd1
2025-08-19 00:39:55 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_033.mp4'
2025-08-19 00:39:55 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Video saved to temporary file: temp_videos/2ab9839d-d3f4-431e-a07e-52d5448a43b5.mp4
2025-08-19 00:39:55 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:40:00 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:40:00 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] 30 frames saved to temp_videos/2ab9839d-d3f4-431e-a07e-52d5448a43b5
2025-08-19 00:40:01 - INFO - Prompt token length: 3584
2025-08-19 00:40:18 - INFO - Tokens per second: 43.41332866806552, Peak GPU memory MB: 9376.375
2025-08-19 00:40:18 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Inference time: 22.96 seconds, CPU usage: 43.6%, CPU core utilization: [32.1, 36.5, 63.5, 42.5]
2025-08-19 00:40:18 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Cleaned up temporary file: temp_videos/2ab9839d-d3f4-431e-a07e-52d5448a43b5.mp4
2025-08-19 00:40:18 - INFO - [2ab9839d-d3f4-431e-a07e-52d5448a43b5] Cleaned up temporary frame directory: temp_videos/2ab9839d-d3f4-431e-a07e-52d5448a43b5
2025-08-19 00:40:18 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_034.mp4'
2025-08-19 00:40:18 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Video saved to temporary file: temp_videos/f45424b5-3d03-4ee0-bddd-025068566a75.mp4
2025-08-19 00:40:18 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:40:23 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:40:23 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] 30 frames saved to temp_videos/f45424b5-3d03-4ee0-bddd-025068566a75
2025-08-19 00:40:24 - INFO - Prompt token length: 3584
2025-08-19 00:40:40 - INFO - Tokens per second: 43.954712321925356, Peak GPU memory MB: 9376.375
2025-08-19 00:40:40 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Inference time: 21.96 seconds, CPU usage: 43.5%, CPU core utilization: [62.0, 32.9, 56.9, 22.4]
2025-08-19 00:40:40 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Cleaned up temporary file: temp_videos/f45424b5-3d03-4ee0-bddd-025068566a75.mp4
2025-08-19 00:40:40 - INFO - [f45424b5-3d03-4ee0-bddd-025068566a75] Cleaned up temporary frame directory: temp_videos/f45424b5-3d03-4ee0-bddd-025068566a75
2025-08-19 00:40:40 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_035.mp4'
2025-08-19 00:40:40 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Video saved to temporary file: temp_videos/23805fa4-3d69-48c1-bccb-1b0781850b9d.mp4
2025-08-19 00:40:40 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:40:47 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:40:47 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] 30 frames saved to temp_videos/23805fa4-3d69-48c1-bccb-1b0781850b9d
2025-08-19 00:40:47 - INFO - Prompt token length: 3584
2025-08-19 00:41:05 - INFO - Tokens per second: 43.59995476967648, Peak GPU memory MB: 9376.375
2025-08-19 00:41:05 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Inference time: 24.15 seconds, CPU usage: 46.1%, CPU core utilization: [35.3, 75.6, 34.6, 38.8]
2025-08-19 00:41:05 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Cleaned up temporary file: temp_videos/23805fa4-3d69-48c1-bccb-1b0781850b9d.mp4
2025-08-19 00:41:05 - INFO - [23805fa4-3d69-48c1-bccb-1b0781850b9d] Cleaned up temporary frame directory: temp_videos/23805fa4-3d69-48c1-bccb-1b0781850b9d
2025-08-19 00:41:05 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_036.mp4'
2025-08-19 00:41:05 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Video saved to temporary file: temp_videos/c253da32-cb7f-4834-9baa-231a1356b50d.mp4
2025-08-19 00:41:05 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:41:10 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:41:10 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] 30 frames saved to temp_videos/c253da32-cb7f-4834-9baa-231a1356b50d
2025-08-19 00:41:10 - INFO - Prompt token length: 3584
2025-08-19 00:41:28 - INFO - Tokens per second: 43.36332420549335, Peak GPU memory MB: 9376.375
2025-08-19 00:41:28 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Inference time: 23.62 seconds, CPU usage: 43.5%, CPU core utilization: [24.5, 43.3, 30.1, 76.2]
2025-08-19 00:41:28 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Cleaned up temporary file: temp_videos/c253da32-cb7f-4834-9baa-231a1356b50d.mp4
2025-08-19 00:41:28 - INFO - [c253da32-cb7f-4834-9baa-231a1356b50d] Cleaned up temporary frame directory: temp_videos/c253da32-cb7f-4834-9baa-231a1356b50d
2025-08-19 00:41:28 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_037.mp4'
2025-08-19 00:41:28 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Video saved to temporary file: temp_videos/d3785473-5b3d-46f0-96c8-691bf4b8ae78.mp4
2025-08-19 00:41:28 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:41:33 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:41:33 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] 30 frames saved to temp_videos/d3785473-5b3d-46f0-96c8-691bf4b8ae78
2025-08-19 00:41:34 - INFO - Prompt token length: 3584
2025-08-19 00:41:51 - INFO - Tokens per second: 42.54911962641917, Peak GPU memory MB: 9376.375
2025-08-19 00:41:51 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Inference time: 22.73 seconds, CPU usage: 46.7%, CPU core utilization: [36.6, 67.4, 38.1, 44.6]
2025-08-19 00:41:51 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Cleaned up temporary file: temp_videos/d3785473-5b3d-46f0-96c8-691bf4b8ae78.mp4
2025-08-19 00:41:51 - INFO - [d3785473-5b3d-46f0-96c8-691bf4b8ae78] Cleaned up temporary frame directory: temp_videos/d3785473-5b3d-46f0-96c8-691bf4b8ae78
2025-08-19 00:41:51 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_038.mp4'
2025-08-19 00:41:51 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Video saved to temporary file: temp_videos/8322c82d-c36d-4a3f-bd2b-e3c8828fedfd.mp4
2025-08-19 00:41:51 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:41:56 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:41:56 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] 30 frames saved to temp_videos/8322c82d-c36d-4a3f-bd2b-e3c8828fedfd
2025-08-19 00:41:56 - INFO - Prompt token length: 3584
2025-08-19 00:42:13 - INFO - Tokens per second: 43.650739641437625, Peak GPU memory MB: 9376.375
2025-08-19 00:42:13 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Inference time: 21.58 seconds, CPU usage: 43.1%, CPU core utilization: [30.0, 28.1, 88.6, 25.6]
2025-08-19 00:42:13 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Cleaned up temporary file: temp_videos/8322c82d-c36d-4a3f-bd2b-e3c8828fedfd.mp4
2025-08-19 00:42:13 - INFO - [8322c82d-c36d-4a3f-bd2b-e3c8828fedfd] Cleaned up temporary frame directory: temp_videos/8322c82d-c36d-4a3f-bd2b-e3c8828fedfd
2025-08-19 00:42:13 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_039.mp4'
2025-08-19 00:42:13 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Video saved to temporary file: temp_videos/b886d052-b61d-4244-9f96-8935f4af6941.mp4
2025-08-19 00:42:13 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:42:18 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:42:18 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] 30 frames saved to temp_videos/b886d052-b61d-4244-9f96-8935f4af6941
2025-08-19 00:42:19 - INFO - Prompt token length: 3584
2025-08-19 00:42:35 - INFO - Tokens per second: 43.762603428053495, Peak GPU memory MB: 9376.375
2025-08-19 00:42:35 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Inference time: 22.65 seconds, CPU usage: 45.5%, CPU core utilization: [33.0, 49.0, 26.4, 73.2]
2025-08-19 00:42:35 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Cleaned up temporary file: temp_videos/b886d052-b61d-4244-9f96-8935f4af6941.mp4
2025-08-19 00:42:35 - INFO - [b886d052-b61d-4244-9f96-8935f4af6941] Cleaned up temporary frame directory: temp_videos/b886d052-b61d-4244-9f96-8935f4af6941
2025-08-19 00:42:36 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_040.mp4'
2025-08-19 00:42:36 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Video saved to temporary file: temp_videos/e180bc76-082a-4587-ad91-13a71b0596d1.mp4
2025-08-19 00:42:36 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:42:42 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:42:42 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] 30 frames saved to temp_videos/e180bc76-082a-4587-ad91-13a71b0596d1
2025-08-19 00:42:42 - INFO - Prompt token length: 3584
2025-08-19 00:42:59 - INFO - Tokens per second: 43.78116935254593, Peak GPU memory MB: 9376.375
2025-08-19 00:42:59 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Inference time: 23.80 seconds, CPU usage: 46.5%, CPU core utilization: [34.9, 50.4, 61.9, 38.7]
2025-08-19 00:42:59 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Cleaned up temporary file: temp_videos/e180bc76-082a-4587-ad91-13a71b0596d1.mp4
2025-08-19 00:42:59 - INFO - [e180bc76-082a-4587-ad91-13a71b0596d1] Cleaned up temporary frame directory: temp_videos/e180bc76-082a-4587-ad91-13a71b0596d1
2025-08-19 00:42:59 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_041.mp4'
2025-08-19 00:42:59 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Video saved to temporary file: temp_videos/fa640386-4f6e-4fd4-aafd-b8129483b8f7.mp4
2025-08-19 00:42:59 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:43:04 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:43:04 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] 30 frames saved to temp_videos/fa640386-4f6e-4fd4-aafd-b8129483b8f7
2025-08-19 00:43:04 - INFO - Prompt token length: 3584
2025-08-19 00:43:22 - INFO - Tokens per second: 43.213784548431164, Peak GPU memory MB: 9376.375
2025-08-19 00:43:22 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Inference time: 22.23 seconds, CPU usage: 43.9%, CPU core utilization: [26.1, 34.8, 40.3, 74.4]
2025-08-19 00:43:22 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Cleaned up temporary file: temp_videos/fa640386-4f6e-4fd4-aafd-b8129483b8f7.mp4
2025-08-19 00:43:22 - INFO - [fa640386-4f6e-4fd4-aafd-b8129483b8f7] Cleaned up temporary frame directory: temp_videos/fa640386-4f6e-4fd4-aafd-b8129483b8f7
2025-08-19 00:43:22 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_042.mp4'
2025-08-19 00:43:22 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Video saved to temporary file: temp_videos/6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d.mp4
2025-08-19 00:43:22 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:43:27 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:43:27 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] 30 frames saved to temp_videos/6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d
2025-08-19 00:43:27 - INFO - Prompt token length: 3584
2025-08-19 00:43:46 - INFO - Tokens per second: 42.19237599556414, Peak GPU memory MB: 9376.375
2025-08-19 00:43:46 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Inference time: 23.83 seconds, CPU usage: 55.3%, CPU core utilization: [45.5, 44.3, 48.7, 82.7]
2025-08-19 00:43:46 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Cleaned up temporary file: temp_videos/6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d.mp4
2025-08-19 00:43:46 - INFO - [6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d] Cleaned up temporary frame directory: temp_videos/6fe45fc4-d0ec-472e-83ac-29ad2bf06f6d
2025-08-19 00:43:46 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_043.mp4'
2025-08-19 00:43:46 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Video saved to temporary file: temp_videos/cdcd33de-10be-4a1d-9550-e83451e06027.mp4
2025-08-19 00:43:46 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:43:52 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:43:52 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] 30 frames saved to temp_videos/cdcd33de-10be-4a1d-9550-e83451e06027
2025-08-19 00:43:52 - INFO - Prompt token length: 3584
2025-08-19 00:44:10 - INFO - Tokens per second: 43.38041166364092, Peak GPU memory MB: 9376.375
2025-08-19 00:44:10 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Inference time: 24.08 seconds, CPU usage: 46.5%, CPU core utilization: [60.8, 28.2, 62.6, 34.5]
2025-08-19 00:44:10 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Cleaned up temporary file: temp_videos/cdcd33de-10be-4a1d-9550-e83451e06027.mp4
2025-08-19 00:44:10 - INFO - [cdcd33de-10be-4a1d-9550-e83451e06027] Cleaned up temporary frame directory: temp_videos/cdcd33de-10be-4a1d-9550-e83451e06027
2025-08-19 00:44:10 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_044.mp4'
2025-08-19 00:44:10 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Video saved to temporary file: temp_videos/b2916ada-aec1-4ed7-84f8-8457cb16b7fa.mp4
2025-08-19 00:44:10 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:44:16 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:44:16 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] 30 frames saved to temp_videos/b2916ada-aec1-4ed7-84f8-8457cb16b7fa
2025-08-19 00:44:16 - INFO - Prompt token length: 3584
2025-08-19 00:44:33 - INFO - Tokens per second: 43.951395848409305, Peak GPU memory MB: 9376.375
2025-08-19 00:44:33 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Inference time: 22.81 seconds, CPU usage: 47.3%, CPU core utilization: [63.5, 34.4, 59.6, 31.7]
2025-08-19 00:44:33 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Cleaned up temporary file: temp_videos/b2916ada-aec1-4ed7-84f8-8457cb16b7fa.mp4
2025-08-19 00:44:33 - INFO - [b2916ada-aec1-4ed7-84f8-8457cb16b7fa] Cleaned up temporary frame directory: temp_videos/b2916ada-aec1-4ed7-84f8-8457cb16b7fa
2025-08-19 00:44:33 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_045.mp4'
2025-08-19 00:44:33 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Video saved to temporary file: temp_videos/6759aec4-72cd-4dc1-831c-28fcae89d503.mp4
2025-08-19 00:44:33 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:44:37 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:44:37 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] 30 frames saved to temp_videos/6759aec4-72cd-4dc1-831c-28fcae89d503
2025-08-19 00:44:38 - INFO - Prompt token length: 3584
2025-08-19 00:44:55 - INFO - Tokens per second: 43.39903419831942, Peak GPU memory MB: 9376.375
2025-08-19 00:44:55 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Inference time: 22.50 seconds, CPU usage: 43.5%, CPU core utilization: [27.2, 22.6, 27.1, 97.1]
2025-08-19 00:44:55 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Cleaned up temporary file: temp_videos/6759aec4-72cd-4dc1-831c-28fcae89d503.mp4
2025-08-19 00:44:55 - INFO - [6759aec4-72cd-4dc1-831c-28fcae89d503] Cleaned up temporary frame directory: temp_videos/6759aec4-72cd-4dc1-831c-28fcae89d503
2025-08-19 00:44:55 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_046.mp4'
2025-08-19 00:44:55 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Video saved to temporary file: temp_videos/a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da.mp4
2025-08-19 00:44:55 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:45:00 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:45:00 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] 30 frames saved to temp_videos/a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da
2025-08-19 00:45:00 - INFO - Prompt token length: 3584
2025-08-19 00:45:17 - INFO - Tokens per second: 43.76197273361684, Peak GPU memory MB: 9376.375
2025-08-19 00:45:17 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Inference time: 21.47 seconds, CPU usage: 43.3%, CPU core utilization: [51.7, 26.1, 50.6, 44.9]
2025-08-19 00:45:17 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Cleaned up temporary file: temp_videos/a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da.mp4
2025-08-19 00:45:17 - INFO - [a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da] Cleaned up temporary frame directory: temp_videos/a0ca1f0f-f82b-44c2-bfbc-be86ba0e18da
2025-08-19 00:45:17 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_047.mp4'
2025-08-19 00:45:17 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Video saved to temporary file: temp_videos/ea05a775-b069-44e6-ac69-0168df8ce6b9.mp4
2025-08-19 00:45:17 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-19 00:45:19 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-19 00:45:19 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] 30 frames saved to temp_videos/ea05a775-b069-44e6-ac69-0168df8ce6b9
2025-08-19 00:45:20 - INFO - Prompt token length: 3584
2025-08-19 00:45:38 - INFO - Tokens per second: 43.197034762295125, Peak GPU memory MB: 9376.375
2025-08-19 00:45:38 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Inference time: 21.49 seconds, CPU usage: 36.9%, CPU core utilization: [16.8, 20.4, 20.7, 89.7]
2025-08-19 00:45:38 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Cleaned up temporary file: temp_videos/ea05a775-b069-44e6-ac69-0168df8ce6b9.mp4
2025-08-19 00:45:38 - INFO - [ea05a775-b069-44e6-ac69-0168df8ce6b9] Cleaned up temporary frame directory: temp_videos/ea05a775-b069-44e6-ac69-0168df8ce6b9
|