File size: 189,036 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 22:45:56 - INFO - Loading model: Qwen/Qwen2-VL-2B-Instruct-AWQ
2025-08-18 22:45:58 - 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 22:46:07 - INFO - Model loaded in 11.84 seconds
2025-08-18 22:46:07 - INFO - GPU Memory Usage after model load: 2369.47 MB
2025-08-18 22:46:12 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_001.mp4'
2025-08-18 22:46:12 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Video saved to temporary file: temp_videos/075bda2f-0861-4df1-a4c3-f1a5c2043fa7.mp4
2025-08-18 22:46:12 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:46:15 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:46:16 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] 30 frames saved to temp_videos/075bda2f-0861-4df1-a4c3-f1a5c2043fa7
2025-08-18 22:46:16 - INFO - Prompt token length: 2276
2025-08-18 22:46:27 - INFO - Tokens per second: 8.63232791462771, Peak GPU memory MB: 4498.375
2025-08-18 22:46:27 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Inference time: 14.99 seconds, CPU usage: 62.9%, CPU core utilization: [55.4, 63.5, 66.5, 66.0]
2025-08-18 22:46:27 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Cleaned up temporary file: temp_videos/075bda2f-0861-4df1-a4c3-f1a5c2043fa7.mp4
2025-08-18 22:46:27 - INFO - [075bda2f-0861-4df1-a4c3-f1a5c2043fa7] Cleaned up temporary frame directory: temp_videos/075bda2f-0861-4df1-a4c3-f1a5c2043fa7
2025-08-18 22:46:27 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_002.mp4'
2025-08-18 22:46:27 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Video saved to temporary file: temp_videos/5dfba7a1-1f6b-4bd9-b477-006bbc95e576.mp4
2025-08-18 22:46:27 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:46:32 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:46:33 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] 30 frames saved to temp_videos/5dfba7a1-1f6b-4bd9-b477-006bbc95e576
2025-08-18 22:46:33 - INFO - Prompt token length: 2276
2025-08-18 22:46:41 - INFO - Tokens per second: 11.221055325865173, Peak GPU memory MB: 4498.375
2025-08-18 22:46:41 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Inference time: 13.72 seconds, CPU usage: 55.2%, CPU core utilization: [40.0, 47.2, 91.9, 41.7]
2025-08-18 22:46:41 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Cleaned up temporary file: temp_videos/5dfba7a1-1f6b-4bd9-b477-006bbc95e576.mp4
2025-08-18 22:46:41 - INFO - [5dfba7a1-1f6b-4bd9-b477-006bbc95e576] Cleaned up temporary frame directory: temp_videos/5dfba7a1-1f6b-4bd9-b477-006bbc95e576
2025-08-18 22:46:41 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_003.mp4'
2025-08-18 22:46:41 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Video saved to temporary file: temp_videos/a73b6783-5330-48ed-9e0f-bb31ba877a9c.mp4
2025-08-18 22:46:41 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:46:46 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:46:46 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] 30 frames saved to temp_videos/a73b6783-5330-48ed-9e0f-bb31ba877a9c
2025-08-18 22:46:47 - INFO - Prompt token length: 2276
2025-08-18 22:46:53 - INFO - Tokens per second: 9.905211987818262, Peak GPU memory MB: 4498.375
2025-08-18 22:46:53 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Inference time: 11.70 seconds, CPU usage: 57.9%, CPU core utilization: [79.6, 46.9, 59.2, 45.7]
2025-08-18 22:46:53 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Cleaned up temporary file: temp_videos/a73b6783-5330-48ed-9e0f-bb31ba877a9c.mp4
2025-08-18 22:46:53 - INFO - [a73b6783-5330-48ed-9e0f-bb31ba877a9c] Cleaned up temporary frame directory: temp_videos/a73b6783-5330-48ed-9e0f-bb31ba877a9c
2025-08-18 22:46:53 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_004.mp4'
2025-08-18 22:46:53 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Video saved to temporary file: temp_videos/a484506a-eb35-4334-ab2d-9b3b4ac09de3.mp4
2025-08-18 22:46:53 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:46:58 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:46:58 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] 30 frames saved to temp_videos/a484506a-eb35-4334-ab2d-9b3b4ac09de3
2025-08-18 22:46:58 - INFO - Prompt token length: 2276
2025-08-18 22:47:05 - INFO - Tokens per second: 10.499316897571724, Peak GPU memory MB: 4498.375
2025-08-18 22:47:05 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Inference time: 12.50 seconds, CPU usage: 54.7%, CPU core utilization: [40.6, 88.9, 46.3, 43.0]
2025-08-18 22:47:05 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Cleaned up temporary file: temp_videos/a484506a-eb35-4334-ab2d-9b3b4ac09de3.mp4
2025-08-18 22:47:05 - INFO - [a484506a-eb35-4334-ab2d-9b3b4ac09de3] Cleaned up temporary frame directory: temp_videos/a484506a-eb35-4334-ab2d-9b3b4ac09de3
2025-08-18 22:47:05 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_005.mp4'
2025-08-18 22:47:05 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Video saved to temporary file: temp_videos/c8faf576-22d8-4d4c-92ed-3b957bdd9469.mp4
2025-08-18 22:47:05 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:47:10 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:47:11 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] 30 frames saved to temp_videos/c8faf576-22d8-4d4c-92ed-3b957bdd9469
2025-08-18 22:47:11 - INFO - Prompt token length: 2276
2025-08-18 22:47:17 - INFO - Tokens per second: 10.14404021542223, Peak GPU memory MB: 4498.375
2025-08-18 22:47:17 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Inference time: 12.04 seconds, CPU usage: 58.1%, CPU core utilization: [96.0, 48.8, 43.1, 44.4]
2025-08-18 22:47:17 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Cleaned up temporary file: temp_videos/c8faf576-22d8-4d4c-92ed-3b957bdd9469.mp4
2025-08-18 22:47:17 - INFO - [c8faf576-22d8-4d4c-92ed-3b957bdd9469] Cleaned up temporary frame directory: temp_videos/c8faf576-22d8-4d4c-92ed-3b957bdd9469
2025-08-18 22:47:17 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_006.mp4'
2025-08-18 22:47:17 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Video saved to temporary file: temp_videos/80b0511c-c198-4a01-9b50-64b7d4cb8a77.mp4
2025-08-18 22:47:17 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:47:22 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:47:23 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] 30 frames saved to temp_videos/80b0511c-c198-4a01-9b50-64b7d4cb8a77
2025-08-18 22:47:23 - INFO - Prompt token length: 2276
2025-08-18 22:47:30 - INFO - Tokens per second: 10.486728250956414, Peak GPU memory MB: 4498.375
2025-08-18 22:47:30 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Inference time: 12.43 seconds, CPU usage: 56.6%, CPU core utilization: [43.1, 42.8, 89.8, 50.6]
2025-08-18 22:47:30 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Cleaned up temporary file: temp_videos/80b0511c-c198-4a01-9b50-64b7d4cb8a77.mp4
2025-08-18 22:47:30 - INFO - [80b0511c-c198-4a01-9b50-64b7d4cb8a77] Cleaned up temporary frame directory: temp_videos/80b0511c-c198-4a01-9b50-64b7d4cb8a77
2025-08-18 22:47:30 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_007.mp4'
2025-08-18 22:47:30 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Video saved to temporary file: temp_videos/350781fa-fdcd-49b9-ad16-cc460380dd85.mp4
2025-08-18 22:47:30 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:47:37 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:47:37 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] 30 frames saved to temp_videos/350781fa-fdcd-49b9-ad16-cc460380dd85
2025-08-18 22:47:37 - INFO - Prompt token length: 2276
2025-08-18 22:47:49 - INFO - Tokens per second: 11.410479416659124, Peak GPU memory MB: 4498.375
2025-08-18 22:47:49 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Inference time: 19.68 seconds, CPU usage: 64.9%, CPU core utilization: [72.0, 58.3, 56.2, 73.1]
2025-08-18 22:47:49 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Cleaned up temporary file: temp_videos/350781fa-fdcd-49b9-ad16-cc460380dd85.mp4
2025-08-18 22:47:49 - INFO - [350781fa-fdcd-49b9-ad16-cc460380dd85] Cleaned up temporary frame directory: temp_videos/350781fa-fdcd-49b9-ad16-cc460380dd85
2025-08-18 22:47:49 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_008.mp4'
2025-08-18 22:47:49 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Video saved to temporary file: temp_videos/6a816775-7c8c-40e3-9a4e-44e96029aaf1.mp4
2025-08-18 22:47:49 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:47:55 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:47:55 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] 30 frames saved to temp_videos/6a816775-7c8c-40e3-9a4e-44e96029aaf1
2025-08-18 22:47:55 - INFO - Prompt token length: 2276
2025-08-18 22:48:14 - INFO - Tokens per second: 13.557291314513737, Peak GPU memory MB: 4498.375
2025-08-18 22:48:14 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Inference time: 24.19 seconds, CPU usage: 42.2%, CPU core utilization: [62.8, 27.4, 52.1, 26.5]
2025-08-18 22:48:14 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Cleaned up temporary file: temp_videos/6a816775-7c8c-40e3-9a4e-44e96029aaf1.mp4
2025-08-18 22:48:14 - INFO - [6a816775-7c8c-40e3-9a4e-44e96029aaf1] Cleaned up temporary frame directory: temp_videos/6a816775-7c8c-40e3-9a4e-44e96029aaf1
2025-08-18 22:48:14 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_009.mp4'
2025-08-18 22:48:14 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Video saved to temporary file: temp_videos/8c272ac0-0fcc-4ae2-8091-2feee8ef6994.mp4
2025-08-18 22:48:14 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:48:21 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:48:22 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] 30 frames saved to temp_videos/8c272ac0-0fcc-4ae2-8091-2feee8ef6994
2025-08-18 22:48:22 - INFO - Prompt token length: 2276
2025-08-18 22:48:30 - INFO - Tokens per second: 9.70410623359028, Peak GPU memory MB: 4498.375
2025-08-18 22:48:30 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Inference time: 16.81 seconds, CPU usage: 84.7%, CPU core utilization: [74.6, 85.3, 94.7, 84.1]
2025-08-18 22:48:31 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Cleaned up temporary file: temp_videos/8c272ac0-0fcc-4ae2-8091-2feee8ef6994.mp4
2025-08-18 22:48:31 - INFO - [8c272ac0-0fcc-4ae2-8091-2feee8ef6994] Cleaned up temporary frame directory: temp_videos/8c272ac0-0fcc-4ae2-8091-2feee8ef6994
2025-08-18 22:48:31 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_010.mp4'
2025-08-18 22:48:31 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Video saved to temporary file: temp_videos/fe507c08-75ee-4256-97be-8d8240483bc2.mp4
2025-08-18 22:48:31 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:48:41 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:48:41 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] 30 frames saved to temp_videos/fe507c08-75ee-4256-97be-8d8240483bc2
2025-08-18 22:48:42 - INFO - Prompt token length: 2276
2025-08-18 22:48:53 - INFO - Tokens per second: 11.67231814743956, Peak GPU memory MB: 4498.375
2025-08-18 22:48:53 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Inference time: 22.01 seconds, CPU usage: 69.1%, CPU core utilization: [78.4, 59.3, 77.0, 61.8]
2025-08-18 22:48:53 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Cleaned up temporary file: temp_videos/fe507c08-75ee-4256-97be-8d8240483bc2.mp4
2025-08-18 22:48:53 - INFO - [fe507c08-75ee-4256-97be-8d8240483bc2] Cleaned up temporary frame directory: temp_videos/fe507c08-75ee-4256-97be-8d8240483bc2
2025-08-18 22:48:53 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_011.mp4'
2025-08-18 22:48:53 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Video saved to temporary file: temp_videos/fc606044-d1d2-4eba-9137-1c30c3e7ef03.mp4
2025-08-18 22:48:53 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:49:05 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:49:05 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] 30 frames saved to temp_videos/fc606044-d1d2-4eba-9137-1c30c3e7ef03
2025-08-18 22:49:06 - INFO - Prompt token length: 2276
2025-08-18 22:49:19 - INFO - Tokens per second: 8.777664788366206, Peak GPU memory MB: 4498.375
2025-08-18 22:49:19 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Inference time: 26.16 seconds, CPU usage: 96.7%, CPU core utilization: [96.2, 97.1, 96.3, 97.3]
2025-08-18 22:49:19 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Cleaned up temporary file: temp_videos/fc606044-d1d2-4eba-9137-1c30c3e7ef03.mp4
2025-08-18 22:49:19 - INFO - [fc606044-d1d2-4eba-9137-1c30c3e7ef03] Cleaned up temporary frame directory: temp_videos/fc606044-d1d2-4eba-9137-1c30c3e7ef03
2025-08-18 22:49:19 - INFO - [435b0218-2980-4933-b072-761122b930a7] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_012.mp4'
2025-08-18 22:49:19 - INFO - [435b0218-2980-4933-b072-761122b930a7] Video saved to temporary file: temp_videos/435b0218-2980-4933-b072-761122b930a7.mp4
2025-08-18 22:49:19 - INFO - [435b0218-2980-4933-b072-761122b930a7] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:49:29 - INFO - [435b0218-2980-4933-b072-761122b930a7] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:49:29 - INFO - [435b0218-2980-4933-b072-761122b930a7] 30 frames saved to temp_videos/435b0218-2980-4933-b072-761122b930a7
2025-08-18 22:49:30 - INFO - Prompt token length: 2276
2025-08-18 22:49:38 - INFO - Tokens per second: 9.52422650849717, Peak GPU memory MB: 4498.375
2025-08-18 22:49:38 - INFO - [435b0218-2980-4933-b072-761122b930a7] Inference time: 18.76 seconds, CPU usage: 85.4%, CPU core utilization: [81.5, 84.7, 88.4, 86.7]
2025-08-18 22:49:38 - INFO - [435b0218-2980-4933-b072-761122b930a7] Cleaned up temporary file: temp_videos/435b0218-2980-4933-b072-761122b930a7.mp4
2025-08-18 22:49:38 - INFO - [435b0218-2980-4933-b072-761122b930a7] Cleaned up temporary frame directory: temp_videos/435b0218-2980-4933-b072-761122b930a7
2025-08-18 22:49:38 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_013.mp4'
2025-08-18 22:49:38 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Video saved to temporary file: temp_videos/664241e4-f4dd-46d0-836e-383061784629.mp4
2025-08-18 22:49:38 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:49:43 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:49:43 - INFO - [664241e4-f4dd-46d0-836e-383061784629] 30 frames saved to temp_videos/664241e4-f4dd-46d0-836e-383061784629
2025-08-18 22:49:43 - INFO - Prompt token length: 2276
2025-08-18 22:49:50 - INFO - Tokens per second: 10.458143876674457, Peak GPU memory MB: 4498.375
2025-08-18 22:49:50 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Inference time: 12.46 seconds, CPU usage: 57.1%, CPU core utilization: [44.0, 81.0, 48.2, 55.0]
2025-08-18 22:49:50 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Cleaned up temporary file: temp_videos/664241e4-f4dd-46d0-836e-383061784629.mp4
2025-08-18 22:49:50 - INFO - [664241e4-f4dd-46d0-836e-383061784629] Cleaned up temporary frame directory: temp_videos/664241e4-f4dd-46d0-836e-383061784629
2025-08-18 22:49:50 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_014.mp4'
2025-08-18 22:49:50 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Video saved to temporary file: temp_videos/c88b94a9-9488-4175-a650-dec5a8b21b8a.mp4
2025-08-18 22:49:50 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:49:55 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:49:55 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] 30 frames saved to temp_videos/c88b94a9-9488-4175-a650-dec5a8b21b8a
2025-08-18 22:49:55 - INFO - Prompt token length: 2276
2025-08-18 22:50:03 - INFO - Tokens per second: 11.021376017625661, Peak GPU memory MB: 4498.375
2025-08-18 22:50:03 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Inference time: 12.68 seconds, CPU usage: 53.1%, CPU core utilization: [51.2, 46.7, 78.5, 36.4]
2025-08-18 22:50:03 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Cleaned up temporary file: temp_videos/c88b94a9-9488-4175-a650-dec5a8b21b8a.mp4
2025-08-18 22:50:03 - INFO - [c88b94a9-9488-4175-a650-dec5a8b21b8a] Cleaned up temporary frame directory: temp_videos/c88b94a9-9488-4175-a650-dec5a8b21b8a
2025-08-18 22:50:03 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_015.mp4'
2025-08-18 22:50:03 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Video saved to temporary file: temp_videos/5c899150-18ab-4cba-a79a-751c212374f8.mp4
2025-08-18 22:50:03 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:50:08 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:50:08 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] 30 frames saved to temp_videos/5c899150-18ab-4cba-a79a-751c212374f8
2025-08-18 22:50:09 - INFO - Prompt token length: 2276
2025-08-18 22:50:17 - INFO - Tokens per second: 11.233124536609099, Peak GPU memory MB: 4498.375
2025-08-18 22:50:17 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Inference time: 13.79 seconds, CPU usage: 54.9%, CPU core utilization: [53.5, 52.3, 67.9, 45.9]
2025-08-18 22:50:17 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Cleaned up temporary file: temp_videos/5c899150-18ab-4cba-a79a-751c212374f8.mp4
2025-08-18 22:50:17 - INFO - [5c899150-18ab-4cba-a79a-751c212374f8] Cleaned up temporary frame directory: temp_videos/5c899150-18ab-4cba-a79a-751c212374f8
2025-08-18 22:50:17 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_016.mp4'
2025-08-18 22:50:17 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Video saved to temporary file: temp_videos/ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9.mp4
2025-08-18 22:50:17 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:50:21 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:50:21 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] 30 frames saved to temp_videos/ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9
2025-08-18 22:50:22 - INFO - Prompt token length: 2276
2025-08-18 22:50:29 - INFO - Tokens per second: 11.011243446779766, Peak GPU memory MB: 4498.375
2025-08-18 22:50:29 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Inference time: 12.41 seconds, CPU usage: 51.2%, CPU core utilization: [33.8, 74.0, 58.5, 38.3]
2025-08-18 22:50:29 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Cleaned up temporary file: temp_videos/ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9.mp4
2025-08-18 22:50:29 - INFO - [ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9] Cleaned up temporary frame directory: temp_videos/ab528d2a-bc83-4257-bf9f-ebfb9c47bfa9
2025-08-18 22:50:29 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_017.mp4'
2025-08-18 22:50:29 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Video saved to temporary file: temp_videos/60125b02-d360-48c0-a0a5-a95d75617096.mp4
2025-08-18 22:50:29 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:50:35 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:50:35 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] 30 frames saved to temp_videos/60125b02-d360-48c0-a0a5-a95d75617096
2025-08-18 22:50:36 - INFO - Prompt token length: 2276
2025-08-18 22:50:54 - INFO - Tokens per second: 13.381462815949803, Peak GPU memory MB: 4498.375
2025-08-18 22:50:54 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Inference time: 24.94 seconds, CPU usage: 46.1%, CPU core utilization: [30.6, 30.3, 31.0, 92.3]
2025-08-18 22:50:54 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Cleaned up temporary file: temp_videos/60125b02-d360-48c0-a0a5-a95d75617096.mp4
2025-08-18 22:50:54 - INFO - [60125b02-d360-48c0-a0a5-a95d75617096] Cleaned up temporary frame directory: temp_videos/60125b02-d360-48c0-a0a5-a95d75617096
2025-08-18 22:50:54 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_018.mp4'
2025-08-18 22:50:54 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Video saved to temporary file: temp_videos/426c70a1-950a-43e3-a6a9-a2c6f1c28bfb.mp4
2025-08-18 22:50:54 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:50:59 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:50:59 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] 30 frames saved to temp_videos/426c70a1-950a-43e3-a6a9-a2c6f1c28bfb
2025-08-18 22:51:00 - INFO - Prompt token length: 2276
2025-08-18 22:51:19 - INFO - Tokens per second: 13.132389275625835, Peak GPU memory MB: 4498.375
2025-08-18 22:51:19 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Inference time: 24.58 seconds, CPU usage: 47.9%, CPU core utilization: [38.8, 32.2, 37.2, 83.5]
2025-08-18 22:51:19 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Cleaned up temporary file: temp_videos/426c70a1-950a-43e3-a6a9-a2c6f1c28bfb.mp4
2025-08-18 22:51:19 - INFO - [426c70a1-950a-43e3-a6a9-a2c6f1c28bfb] Cleaned up temporary frame directory: temp_videos/426c70a1-950a-43e3-a6a9-a2c6f1c28bfb
2025-08-18 22:51:19 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_019.mp4'
2025-08-18 22:51:19 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Video saved to temporary file: temp_videos/109dd4ed-ffb9-4b81-8053-2fa832f05e49.mp4
2025-08-18 22:51:19 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:51:25 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:51:25 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] 30 frames saved to temp_videos/109dd4ed-ffb9-4b81-8053-2fa832f05e49
2025-08-18 22:51:25 - INFO - Prompt token length: 2276
2025-08-18 22:51:31 - INFO - Tokens per second: 9.361486629055515, Peak GPU memory MB: 4498.375
2025-08-18 22:51:31 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Inference time: 11.82 seconds, CPU usage: 59.5%, CPU core utilization: [80.9, 50.5, 53.4, 53.4]
2025-08-18 22:51:31 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Cleaned up temporary file: temp_videos/109dd4ed-ffb9-4b81-8053-2fa832f05e49.mp4
2025-08-18 22:51:31 - INFO - [109dd4ed-ffb9-4b81-8053-2fa832f05e49] Cleaned up temporary frame directory: temp_videos/109dd4ed-ffb9-4b81-8053-2fa832f05e49
2025-08-18 22:51:31 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_020.mp4'
2025-08-18 22:51:31 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Video saved to temporary file: temp_videos/5260ac0f-2fcf-48dd-a03f-d5c943c4e758.mp4
2025-08-18 22:51:31 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:51:36 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:51:36 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] 30 frames saved to temp_videos/5260ac0f-2fcf-48dd-a03f-d5c943c4e758
2025-08-18 22:51:36 - INFO - Prompt token length: 2276
2025-08-18 22:51:43 - INFO - Tokens per second: 10.609050771309763, Peak GPU memory MB: 4498.375
2025-08-18 22:51:43 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Inference time: 12.48 seconds, CPU usage: 54.3%, CPU core utilization: [43.7, 54.5, 44.5, 74.7]
2025-08-18 22:51:43 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Cleaned up temporary file: temp_videos/5260ac0f-2fcf-48dd-a03f-d5c943c4e758.mp4
2025-08-18 22:51:43 - INFO - [5260ac0f-2fcf-48dd-a03f-d5c943c4e758] Cleaned up temporary frame directory: temp_videos/5260ac0f-2fcf-48dd-a03f-d5c943c4e758
2025-08-18 22:51:43 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_021.mp4'
2025-08-18 22:51:43 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Video saved to temporary file: temp_videos/accfb971-034b-4c14-809b-daf433dbfbb8.mp4
2025-08-18 22:51:43 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:51:49 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:51:49 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] 30 frames saved to temp_videos/accfb971-034b-4c14-809b-daf433dbfbb8
2025-08-18 22:51:49 - INFO - Prompt token length: 2276
2025-08-18 22:52:08 - INFO - Tokens per second: 13.340801969764685, Peak GPU memory MB: 4498.375
2025-08-18 22:52:08 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Inference time: 24.81 seconds, CPU usage: 45.7%, CPU core utilization: [51.6, 35.5, 27.5, 68.1]
2025-08-18 22:52:08 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Cleaned up temporary file: temp_videos/accfb971-034b-4c14-809b-daf433dbfbb8.mp4
2025-08-18 22:52:08 - INFO - [accfb971-034b-4c14-809b-daf433dbfbb8] Cleaned up temporary frame directory: temp_videos/accfb971-034b-4c14-809b-daf433dbfbb8
2025-08-18 22:52:08 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_022.mp4'
2025-08-18 22:52:08 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Video saved to temporary file: temp_videos/b2836d31-8645-4311-9b90-888c14e5e3bc.mp4
2025-08-18 22:52:08 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:52:13 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:52:13 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] 30 frames saved to temp_videos/b2836d31-8645-4311-9b90-888c14e5e3bc
2025-08-18 22:52:14 - INFO - Prompt token length: 2276
2025-08-18 22:52:32 - INFO - Tokens per second: 13.607361563257028, Peak GPU memory MB: 4498.375
2025-08-18 22:52:32 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Inference time: 24.13 seconds, CPU usage: 42.3%, CPU core utilization: [59.0, 29.3, 51.7, 29.4]
2025-08-18 22:52:32 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Cleaned up temporary file: temp_videos/b2836d31-8645-4311-9b90-888c14e5e3bc.mp4
2025-08-18 22:52:32 - INFO - [b2836d31-8645-4311-9b90-888c14e5e3bc] Cleaned up temporary frame directory: temp_videos/b2836d31-8645-4311-9b90-888c14e5e3bc
2025-08-18 22:52:32 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_023.mp4'
2025-08-18 22:52:32 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Video saved to temporary file: temp_videos/b0803029-6b9a-4e0d-9511-87bf9871abcc.mp4
2025-08-18 22:52:32 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:52:38 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:52:38 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] 30 frames saved to temp_videos/b0803029-6b9a-4e0d-9511-87bf9871abcc
2025-08-18 22:52:38 - INFO - Prompt token length: 2276
2025-08-18 22:52:48 - INFO - Tokens per second: 11.106636903428864, Peak GPU memory MB: 4498.375
2025-08-18 22:52:48 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Inference time: 15.97 seconds, CPU usage: 65.9%, CPU core utilization: [55.3, 59.6, 60.6, 87.8]
2025-08-18 22:52:48 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Cleaned up temporary file: temp_videos/b0803029-6b9a-4e0d-9511-87bf9871abcc.mp4
2025-08-18 22:52:48 - INFO - [b0803029-6b9a-4e0d-9511-87bf9871abcc] Cleaned up temporary frame directory: temp_videos/b0803029-6b9a-4e0d-9511-87bf9871abcc
2025-08-18 22:52:48 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_024.mp4'
2025-08-18 22:52:48 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Video saved to temporary file: temp_videos/78840bfa-ea30-4212-8d30-e30b757eb356.mp4
2025-08-18 22:52:48 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:52:53 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:52:53 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] 30 frames saved to temp_videos/78840bfa-ea30-4212-8d30-e30b757eb356
2025-08-18 22:52:54 - INFO - Prompt token length: 2276
2025-08-18 22:53:02 - INFO - Tokens per second: 11.590113251233504, Peak GPU memory MB: 4498.375
2025-08-18 22:53:02 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Inference time: 13.96 seconds, CPU usage: 52.1%, CPU core utilization: [44.3, 43.5, 79.6, 40.9]
2025-08-18 22:53:02 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Cleaned up temporary file: temp_videos/78840bfa-ea30-4212-8d30-e30b757eb356.mp4
2025-08-18 22:53:02 - INFO - [78840bfa-ea30-4212-8d30-e30b757eb356] Cleaned up temporary frame directory: temp_videos/78840bfa-ea30-4212-8d30-e30b757eb356
2025-08-18 22:53:02 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_025.mp4'
2025-08-18 22:53:02 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Video saved to temporary file: temp_videos/5022338d-3173-4d0b-8b39-c5ae03c77f1f.mp4
2025-08-18 22:53:02 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:53:08 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:53:08 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] 30 frames saved to temp_videos/5022338d-3173-4d0b-8b39-c5ae03c77f1f
2025-08-18 22:53:08 - INFO - Prompt token length: 2276
2025-08-18 22:53:14 - INFO - Tokens per second: 10.033342008096056, Peak GPU memory MB: 4498.375
2025-08-18 22:53:14 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Inference time: 12.19 seconds, CPU usage: 58.1%, CPU core utilization: [49.8, 47.9, 44.3, 90.4]
2025-08-18 22:53:14 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Cleaned up temporary file: temp_videos/5022338d-3173-4d0b-8b39-c5ae03c77f1f.mp4
2025-08-18 22:53:14 - INFO - [5022338d-3173-4d0b-8b39-c5ae03c77f1f] Cleaned up temporary frame directory: temp_videos/5022338d-3173-4d0b-8b39-c5ae03c77f1f
2025-08-18 22:53:14 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_026.mp4'
2025-08-18 22:53:14 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Video saved to temporary file: temp_videos/19f73586-9c57-4a25-bff3-ecc9a54a2151.mp4
2025-08-18 22:53:14 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:53:20 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:53:20 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] 30 frames saved to temp_videos/19f73586-9c57-4a25-bff3-ecc9a54a2151
2025-08-18 22:53:20 - INFO - Prompt token length: 2276
2025-08-18 22:53:29 - INFO - Tokens per second: 11.728915252837204, Peak GPU memory MB: 4498.375
2025-08-18 22:53:29 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Inference time: 14.87 seconds, CPU usage: 51.6%, CPU core utilization: [47.1, 61.9, 47.1, 50.4]
2025-08-18 22:53:29 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Cleaned up temporary file: temp_videos/19f73586-9c57-4a25-bff3-ecc9a54a2151.mp4
2025-08-18 22:53:29 - INFO - [19f73586-9c57-4a25-bff3-ecc9a54a2151] Cleaned up temporary frame directory: temp_videos/19f73586-9c57-4a25-bff3-ecc9a54a2151
2025-08-18 22:53:29 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_027.mp4'
2025-08-18 22:53:29 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Video saved to temporary file: temp_videos/ecc5736c-a500-4670-97f5-2c7c84068d5c.mp4
2025-08-18 22:53:29 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:53:34 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:53:34 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] 30 frames saved to temp_videos/ecc5736c-a500-4670-97f5-2c7c84068d5c
2025-08-18 22:53:35 - INFO - Prompt token length: 2276
2025-08-18 22:53:45 - INFO - Tokens per second: 12.103293187102274, Peak GPU memory MB: 4498.375
2025-08-18 22:53:45 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Inference time: 15.81 seconds, CPU usage: 47.9%, CPU core utilization: [41.1, 89.1, 33.4, 27.8]
2025-08-18 22:53:45 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Cleaned up temporary file: temp_videos/ecc5736c-a500-4670-97f5-2c7c84068d5c.mp4
2025-08-18 22:53:45 - INFO - [ecc5736c-a500-4670-97f5-2c7c84068d5c] Cleaned up temporary frame directory: temp_videos/ecc5736c-a500-4670-97f5-2c7c84068d5c
2025-08-18 22:53:45 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_028.mp4'
2025-08-18 22:53:45 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Video saved to temporary file: temp_videos/31d523f9-edb8-42ba-a6a9-577444e3d7a5.mp4
2025-08-18 22:53:45 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:53:50 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:53:51 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] 30 frames saved to temp_videos/31d523f9-edb8-42ba-a6a9-577444e3d7a5
2025-08-18 22:53:51 - INFO - Prompt token length: 2276
2025-08-18 22:53:59 - INFO - Tokens per second: 11.55616894095496, Peak GPU memory MB: 4498.375
2025-08-18 22:53:59 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Inference time: 14.27 seconds, CPU usage: 53.3%, CPU core utilization: [53.1, 37.3, 77.1, 45.7]
2025-08-18 22:53:59 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Cleaned up temporary file: temp_videos/31d523f9-edb8-42ba-a6a9-577444e3d7a5.mp4
2025-08-18 22:53:59 - INFO - [31d523f9-edb8-42ba-a6a9-577444e3d7a5] Cleaned up temporary frame directory: temp_videos/31d523f9-edb8-42ba-a6a9-577444e3d7a5
2025-08-18 22:54:00 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_029.mp4'
2025-08-18 22:54:00 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Video saved to temporary file: temp_videos/16ba2ba0-02d8-45b0-a45a-439f87dc04aa.mp4
2025-08-18 22:54:00 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:54:05 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:54:05 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] 30 frames saved to temp_videos/16ba2ba0-02d8-45b0-a45a-439f87dc04aa
2025-08-18 22:54:05 - INFO - Prompt token length: 2276
2025-08-18 22:54:12 - INFO - Tokens per second: 10.1662890855494, Peak GPU memory MB: 4498.375
2025-08-18 22:54:12 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Inference time: 12.25 seconds, CPU usage: 58.0%, CPU core utilization: [46.4, 67.0, 46.7, 71.7]
2025-08-18 22:54:12 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Cleaned up temporary file: temp_videos/16ba2ba0-02d8-45b0-a45a-439f87dc04aa.mp4
2025-08-18 22:54:12 - INFO - [16ba2ba0-02d8-45b0-a45a-439f87dc04aa] Cleaned up temporary frame directory: temp_videos/16ba2ba0-02d8-45b0-a45a-439f87dc04aa
2025-08-18 22:54:12 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_030.mp4'
2025-08-18 22:54:12 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Video saved to temporary file: temp_videos/fe59bbbc-ba47-4676-8cd7-6fd88c752075.mp4
2025-08-18 22:54:12 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:54:18 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:54:18 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] 30 frames saved to temp_videos/fe59bbbc-ba47-4676-8cd7-6fd88c752075
2025-08-18 22:54:18 - INFO - Prompt token length: 2276
2025-08-18 22:54:25 - INFO - Tokens per second: 10.61298795535298, Peak GPU memory MB: 4498.375
2025-08-18 22:54:25 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Inference time: 13.25 seconds, CPU usage: 57.6%, CPU core utilization: [65.5, 77.1, 44.8, 43.3]
2025-08-18 22:54:25 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Cleaned up temporary file: temp_videos/fe59bbbc-ba47-4676-8cd7-6fd88c752075.mp4
2025-08-18 22:54:25 - INFO - [fe59bbbc-ba47-4676-8cd7-6fd88c752075] Cleaned up temporary frame directory: temp_videos/fe59bbbc-ba47-4676-8cd7-6fd88c752075
2025-08-18 22:54:25 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_031.mp4'
2025-08-18 22:54:25 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Video saved to temporary file: temp_videos/df7e5a2b-938d-4cb0-91fd-cc7b435c6b11.mp4
2025-08-18 22:54:25 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:54:30 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:54:31 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] 30 frames saved to temp_videos/df7e5a2b-938d-4cb0-91fd-cc7b435c6b11
2025-08-18 22:54:31 - INFO - Prompt token length: 2276
2025-08-18 22:54:38 - INFO - Tokens per second: 10.523895968014092, Peak GPU memory MB: 4498.375
2025-08-18 22:54:38 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Inference time: 12.69 seconds, CPU usage: 56.1%, CPU core utilization: [39.5, 45.7, 92.6, 46.4]
2025-08-18 22:54:38 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Cleaned up temporary file: temp_videos/df7e5a2b-938d-4cb0-91fd-cc7b435c6b11.mp4
2025-08-18 22:54:38 - INFO - [df7e5a2b-938d-4cb0-91fd-cc7b435c6b11] Cleaned up temporary frame directory: temp_videos/df7e5a2b-938d-4cb0-91fd-cc7b435c6b11
2025-08-18 22:54:38 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_032.mp4'
2025-08-18 22:54:38 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Video saved to temporary file: temp_videos/65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28.mp4
2025-08-18 22:54:38 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:54:43 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:54:44 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] 30 frames saved to temp_videos/65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28
2025-08-18 22:54:44 - INFO - Prompt token length: 2276
2025-08-18 22:54:51 - INFO - Tokens per second: 10.668539079165651, Peak GPU memory MB: 4498.375
2025-08-18 22:54:51 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Inference time: 13.17 seconds, CPU usage: 56.8%, CPU core utilization: [43.8, 81.1, 46.1, 56.2]
2025-08-18 22:54:51 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Cleaned up temporary file: temp_videos/65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28.mp4
2025-08-18 22:54:51 - INFO - [65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28] Cleaned up temporary frame directory: temp_videos/65f43bb3-e8f2-4eb6-aaa3-89b1e4b66d28
2025-08-18 22:54:51 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_033.mp4'
2025-08-18 22:54:51 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Video saved to temporary file: temp_videos/c3623f82-9912-42a6-8cb3-d157dfe0d1ce.mp4
2025-08-18 22:54:51 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:54:56 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:54:56 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] 30 frames saved to temp_videos/c3623f82-9912-42a6-8cb3-d157dfe0d1ce
2025-08-18 22:54:57 - INFO - Prompt token length: 2276
2025-08-18 22:55:15 - INFO - Tokens per second: 13.537389723016279, Peak GPU memory MB: 4498.375
2025-08-18 22:55:15 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Inference time: 24.00 seconds, CPU usage: 41.7%, CPU core utilization: [31.5, 26.5, 85.6, 23.1]
2025-08-18 22:55:15 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Cleaned up temporary file: temp_videos/c3623f82-9912-42a6-8cb3-d157dfe0d1ce.mp4
2025-08-18 22:55:15 - INFO - [c3623f82-9912-42a6-8cb3-d157dfe0d1ce] Cleaned up temporary frame directory: temp_videos/c3623f82-9912-42a6-8cb3-d157dfe0d1ce
2025-08-18 22:55:15 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_034.mp4'
2025-08-18 22:55:15 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Video saved to temporary file: temp_videos/d948b84f-015d-4fb8-bde7-63dc8a399e73.mp4
2025-08-18 22:55:15 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:55:20 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:55:21 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] 30 frames saved to temp_videos/d948b84f-015d-4fb8-bde7-63dc8a399e73
2025-08-18 22:55:21 - INFO - Prompt token length: 2276
2025-08-18 22:55:39 - INFO - Tokens per second: 13.678692848425554, Peak GPU memory MB: 4498.375
2025-08-18 22:55:39 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Inference time: 24.14 seconds, CPU usage: 42.8%, CPU core utilization: [61.6, 24.0, 56.6, 29.1]
2025-08-18 22:55:39 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Cleaned up temporary file: temp_videos/d948b84f-015d-4fb8-bde7-63dc8a399e73.mp4
2025-08-18 22:55:39 - INFO - [d948b84f-015d-4fb8-bde7-63dc8a399e73] Cleaned up temporary frame directory: temp_videos/d948b84f-015d-4fb8-bde7-63dc8a399e73
2025-08-18 22:55:39 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_035.mp4'
2025-08-18 22:55:39 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Video saved to temporary file: temp_videos/fc53496d-7086-4b4d-802b-604559f57e61.mp4
2025-08-18 22:55:39 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:55:44 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:55:44 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] 30 frames saved to temp_videos/fc53496d-7086-4b4d-802b-604559f57e61
2025-08-18 22:55:45 - INFO - Prompt token length: 2276
2025-08-18 22:56:03 - INFO - Tokens per second: 13.376309732887606, Peak GPU memory MB: 4498.375
2025-08-18 22:56:03 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Inference time: 23.93 seconds, CPU usage: 42.1%, CPU core utilization: [28.9, 48.0, 23.0, 68.5]
2025-08-18 22:56:03 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Cleaned up temporary file: temp_videos/fc53496d-7086-4b4d-802b-604559f57e61.mp4
2025-08-18 22:56:03 - INFO - [fc53496d-7086-4b4d-802b-604559f57e61] Cleaned up temporary frame directory: temp_videos/fc53496d-7086-4b4d-802b-604559f57e61
2025-08-18 22:56:03 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_036.mp4'
2025-08-18 22:56:03 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Video saved to temporary file: temp_videos/cd17d03e-624a-4214-b0cc-016302f516b5.mp4
2025-08-18 22:56:03 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:56:08 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:56:09 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] 30 frames saved to temp_videos/cd17d03e-624a-4214-b0cc-016302f516b5
2025-08-18 22:56:09 - INFO - Prompt token length: 2276
2025-08-18 22:56:27 - INFO - Tokens per second: 13.62507043215766, Peak GPU memory MB: 4498.375
2025-08-18 22:56:27 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Inference time: 24.01 seconds, CPU usage: 42.7%, CPU core utilization: [46.8, 22.9, 71.1, 30.0]
2025-08-18 22:56:27 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Cleaned up temporary file: temp_videos/cd17d03e-624a-4214-b0cc-016302f516b5.mp4
2025-08-18 22:56:27 - INFO - [cd17d03e-624a-4214-b0cc-016302f516b5] Cleaned up temporary frame directory: temp_videos/cd17d03e-624a-4214-b0cc-016302f516b5
2025-08-18 22:56:27 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_037.mp4'
2025-08-18 22:56:27 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Video saved to temporary file: temp_videos/6ace4d11-5e88-4f8b-a1f2-4ed9802584ab.mp4
2025-08-18 22:56:27 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:56:33 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:56:33 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] 30 frames saved to temp_videos/6ace4d11-5e88-4f8b-a1f2-4ed9802584ab
2025-08-18 22:56:33 - INFO - Prompt token length: 2276
2025-08-18 22:56:42 - INFO - Tokens per second: 11.276273877237807, Peak GPU memory MB: 4498.375
2025-08-18 22:56:42 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Inference time: 14.25 seconds, CPU usage: 52.6%, CPU core utilization: [40.0, 75.7, 38.8, 56.0]
2025-08-18 22:56:42 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Cleaned up temporary file: temp_videos/6ace4d11-5e88-4f8b-a1f2-4ed9802584ab.mp4
2025-08-18 22:56:42 - INFO - [6ace4d11-5e88-4f8b-a1f2-4ed9802584ab] Cleaned up temporary frame directory: temp_videos/6ace4d11-5e88-4f8b-a1f2-4ed9802584ab
2025-08-18 22:56:42 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_038.mp4'
2025-08-18 22:56:42 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Video saved to temporary file: temp_videos/799ee65c-3f65-4208-aa08-e3e74c3eab46.mp4
2025-08-18 22:56:42 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:56:47 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:56:47 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] 30 frames saved to temp_videos/799ee65c-3f65-4208-aa08-e3e74c3eab46
2025-08-18 22:56:47 - INFO - Prompt token length: 2276
2025-08-18 22:57:06 - INFO - Tokens per second: 13.497013928697614, Peak GPU memory MB: 4498.375
2025-08-18 22:57:06 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Inference time: 24.17 seconds, CPU usage: 43.0%, CPU core utilization: [26.9, 88.5, 26.0, 30.4]
2025-08-18 22:57:06 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Cleaned up temporary file: temp_videos/799ee65c-3f65-4208-aa08-e3e74c3eab46.mp4
2025-08-18 22:57:06 - INFO - [799ee65c-3f65-4208-aa08-e3e74c3eab46] Cleaned up temporary frame directory: temp_videos/799ee65c-3f65-4208-aa08-e3e74c3eab46
2025-08-18 22:57:06 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_039.mp4'
2025-08-18 22:57:06 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Video saved to temporary file: temp_videos/6b17b052-e042-40fb-bd52-89ab8c8a5b14.mp4
2025-08-18 22:57:06 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:57:12 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:57:12 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] 30 frames saved to temp_videos/6b17b052-e042-40fb-bd52-89ab8c8a5b14
2025-08-18 22:57:12 - INFO - Prompt token length: 2276
2025-08-18 22:57:19 - INFO - Tokens per second: 10.531527007366298, Peak GPU memory MB: 4498.375
2025-08-18 22:57:19 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Inference time: 13.09 seconds, CPU usage: 56.6%, CPU core utilization: [46.6, 92.1, 46.4, 41.0]
2025-08-18 22:57:19 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Cleaned up temporary file: temp_videos/6b17b052-e042-40fb-bd52-89ab8c8a5b14.mp4
2025-08-18 22:57:19 - INFO - [6b17b052-e042-40fb-bd52-89ab8c8a5b14] Cleaned up temporary frame directory: temp_videos/6b17b052-e042-40fb-bd52-89ab8c8a5b14
2025-08-18 22:57:19 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_040.mp4'
2025-08-18 22:57:19 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Video saved to temporary file: temp_videos/c7a0e52c-dc5a-4737-8588-3d4a61b2467a.mp4
2025-08-18 22:57:19 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:57:24 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:57:24 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] 30 frames saved to temp_videos/c7a0e52c-dc5a-4737-8588-3d4a61b2467a
2025-08-18 22:57:24 - INFO - Prompt token length: 2276
2025-08-18 22:57:43 - INFO - Tokens per second: 13.475227004241777, Peak GPU memory MB: 4498.375
2025-08-18 22:57:43 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Inference time: 23.81 seconds, CPU usage: 42.2%, CPU core utilization: [29.1, 37.1, 22.2, 80.2]
2025-08-18 22:57:43 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Cleaned up temporary file: temp_videos/c7a0e52c-dc5a-4737-8588-3d4a61b2467a.mp4
2025-08-18 22:57:43 - INFO - [c7a0e52c-dc5a-4737-8588-3d4a61b2467a] Cleaned up temporary frame directory: temp_videos/c7a0e52c-dc5a-4737-8588-3d4a61b2467a
2025-08-18 22:57:43 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_041.mp4'
2025-08-18 22:57:43 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Video saved to temporary file: temp_videos/5e3f5136-347c-4889-a332-2a48852a1973.mp4
2025-08-18 22:57:43 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:57:47 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:57:48 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] 30 frames saved to temp_videos/5e3f5136-347c-4889-a332-2a48852a1973
2025-08-18 22:57:48 - INFO - Prompt token length: 2276
2025-08-18 22:57:58 - INFO - Tokens per second: 11.916277351916051, Peak GPU memory MB: 4498.375
2025-08-18 22:57:58 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Inference time: 14.90 seconds, CPU usage: 47.7%, CPU core utilization: [44.8, 54.4, 56.9, 34.9]
2025-08-18 22:57:58 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Cleaned up temporary file: temp_videos/5e3f5136-347c-4889-a332-2a48852a1973.mp4
2025-08-18 22:57:58 - INFO - [5e3f5136-347c-4889-a332-2a48852a1973] Cleaned up temporary frame directory: temp_videos/5e3f5136-347c-4889-a332-2a48852a1973
2025-08-18 22:57:58 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_042.mp4'
2025-08-18 22:57:58 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Video saved to temporary file: temp_videos/e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76.mp4
2025-08-18 22:57:58 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:58:04 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:58:04 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] 30 frames saved to temp_videos/e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76
2025-08-18 22:58:04 - INFO - Prompt token length: 2276
2025-08-18 22:58:13 - INFO - Tokens per second: 11.492664443775725, Peak GPU memory MB: 4498.375
2025-08-18 22:58:13 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Inference time: 14.74 seconds, CPU usage: 54.2%, CPU core utilization: [49.6, 46.7, 78.2, 42.4]
2025-08-18 22:58:13 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Cleaned up temporary file: temp_videos/e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76.mp4
2025-08-18 22:58:13 - INFO - [e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76] Cleaned up temporary frame directory: temp_videos/e2dcfb3d-e7cc-4a08-acb3-90f7d5c15b76
2025-08-18 22:58:13 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_043.mp4'
2025-08-18 22:58:13 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Video saved to temporary file: temp_videos/244000f7-3e28-4e49-b380-f138b203cef2.mp4
2025-08-18 22:58:13 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:58:18 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:58:18 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] 30 frames saved to temp_videos/244000f7-3e28-4e49-b380-f138b203cef2
2025-08-18 22:58:19 - INFO - Prompt token length: 2276
2025-08-18 22:58:27 - INFO - Tokens per second: 11.568536648727322, Peak GPU memory MB: 4498.375
2025-08-18 22:58:27 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Inference time: 14.69 seconds, CPU usage: 53.3%, CPU core utilization: [58.4, 44.7, 72.1, 37.8]
2025-08-18 22:58:27 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Cleaned up temporary file: temp_videos/244000f7-3e28-4e49-b380-f138b203cef2.mp4
2025-08-18 22:58:27 - INFO - [244000f7-3e28-4e49-b380-f138b203cef2] Cleaned up temporary frame directory: temp_videos/244000f7-3e28-4e49-b380-f138b203cef2
2025-08-18 22:58:27 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_044.mp4'
2025-08-18 22:58:27 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Video saved to temporary file: temp_videos/d5f7483d-13fe-45b4-8c70-bb5ad2788078.mp4
2025-08-18 22:58:27 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:58:32 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:58:32 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] 30 frames saved to temp_videos/d5f7483d-13fe-45b4-8c70-bb5ad2788078
2025-08-18 22:58:33 - INFO - Prompt token length: 2276
2025-08-18 22:58:43 - INFO - Tokens per second: 12.110009497452609, Peak GPU memory MB: 4498.375
2025-08-18 22:58:43 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Inference time: 15.44 seconds, CPU usage: 48.5%, CPU core utilization: [45.0, 46.6, 70.6, 31.8]
2025-08-18 22:58:43 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Cleaned up temporary file: temp_videos/d5f7483d-13fe-45b4-8c70-bb5ad2788078.mp4
2025-08-18 22:58:43 - INFO - [d5f7483d-13fe-45b4-8c70-bb5ad2788078] Cleaned up temporary frame directory: temp_videos/d5f7483d-13fe-45b4-8c70-bb5ad2788078
2025-08-18 22:58:43 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_045.mp4'
2025-08-18 22:58:43 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Video saved to temporary file: temp_videos/04a58573-7af6-4a7d-a187-f79e7d87ecd2.mp4
2025-08-18 22:58:43 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:58:47 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:58:47 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] 30 frames saved to temp_videos/04a58573-7af6-4a7d-a187-f79e7d87ecd2
2025-08-18 22:58:48 - INFO - Prompt token length: 2276
2025-08-18 22:59:06 - INFO - Tokens per second: 13.585724473842552, Peak GPU memory MB: 4498.375
2025-08-18 22:59:06 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Inference time: 23.46 seconds, CPU usage: 42.3%, CPU core utilization: [23.5, 24.6, 93.4, 27.4]
2025-08-18 22:59:06 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Cleaned up temporary file: temp_videos/04a58573-7af6-4a7d-a187-f79e7d87ecd2.mp4
2025-08-18 22:59:06 - INFO - [04a58573-7af6-4a7d-a187-f79e7d87ecd2] Cleaned up temporary frame directory: temp_videos/04a58573-7af6-4a7d-a187-f79e7d87ecd2
2025-08-18 22:59:06 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_046.mp4'
2025-08-18 22:59:06 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Video saved to temporary file: temp_videos/51d14ff3-476b-402a-8025-b95f9074dcd6.mp4
2025-08-18 22:59:06 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:59:12 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:59:12 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] 30 frames saved to temp_videos/51d14ff3-476b-402a-8025-b95f9074dcd6
2025-08-18 22:59:12 - INFO - Prompt token length: 2276
2025-08-18 22:59:20 - INFO - Tokens per second: 11.270841311476088, Peak GPU memory MB: 4498.375
2025-08-18 22:59:20 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Inference time: 13.94 seconds, CPU usage: 54.2%, CPU core utilization: [57.3, 52.0, 42.5, 64.9]
2025-08-18 22:59:20 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Cleaned up temporary file: temp_videos/51d14ff3-476b-402a-8025-b95f9074dcd6.mp4
2025-08-18 22:59:20 - INFO - [51d14ff3-476b-402a-8025-b95f9074dcd6] Cleaned up temporary frame directory: temp_videos/51d14ff3-476b-402a-8025-b95f9074dcd6
2025-08-18 22:59:20 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_047.mp4'
2025-08-18 22:59:20 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Video saved to temporary file: temp_videos/3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a.mp4
2025-08-18 22:59:20 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:59:25 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:59:25 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] 30 frames saved to temp_videos/3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a
2025-08-18 22:59:26 - INFO - Prompt token length: 2276
2025-08-18 22:59:34 - INFO - Tokens per second: 11.372159490189508, Peak GPU memory MB: 4498.375
2025-08-18 22:59:34 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Inference time: 13.46 seconds, CPU usage: 52.4%, CPU core utilization: [53.7, 39.4, 78.4, 38.1]
2025-08-18 22:59:34 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Cleaned up temporary file: temp_videos/3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a.mp4
2025-08-18 22:59:34 - INFO - [3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a] Cleaned up temporary frame directory: temp_videos/3d84cabe-4bf5-4ce4-a8ef-c898865d9e9a
2025-08-18 22:59:34 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_048.mp4'
2025-08-18 22:59:34 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Video saved to temporary file: temp_videos/3b44f853-7199-409b-b9e5-bf43a71342ef.mp4
2025-08-18 22:59:34 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:59:39 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:59:39 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] 30 frames saved to temp_videos/3b44f853-7199-409b-b9e5-bf43a71342ef
2025-08-18 22:59:39 - INFO - Prompt token length: 2276
2025-08-18 22:59:48 - INFO - Tokens per second: 11.519826832960204, Peak GPU memory MB: 4498.375
2025-08-18 22:59:48 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Inference time: 14.11 seconds, CPU usage: 52.0%, CPU core utilization: [65.6, 37.9, 44.9, 59.6]
2025-08-18 22:59:48 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Cleaned up temporary file: temp_videos/3b44f853-7199-409b-b9e5-bf43a71342ef.mp4
2025-08-18 22:59:48 - INFO - [3b44f853-7199-409b-b9e5-bf43a71342ef] Cleaned up temporary frame directory: temp_videos/3b44f853-7199-409b-b9e5-bf43a71342ef
2025-08-18 22:59:48 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_049.mp4'
2025-08-18 22:59:48 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Video saved to temporary file: temp_videos/e944425e-5ba9-4dd4-acdf-79f0dfe1ba09.mp4
2025-08-18 22:59:48 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 22:59:53 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 22:59:53 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] 30 frames saved to temp_videos/e944425e-5ba9-4dd4-acdf-79f0dfe1ba09
2025-08-18 22:59:53 - INFO - Prompt token length: 2276
2025-08-18 23:00:00 - INFO - Tokens per second: 10.918856106314124, Peak GPU memory MB: 4498.375
2025-08-18 23:00:00 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Inference time: 12.41 seconds, CPU usage: 52.8%, CPU core utilization: [61.8, 51.0, 55.3, 43.1]
2025-08-18 23:00:00 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Cleaned up temporary file: temp_videos/e944425e-5ba9-4dd4-acdf-79f0dfe1ba09.mp4
2025-08-18 23:00:00 - INFO - [e944425e-5ba9-4dd4-acdf-79f0dfe1ba09] Cleaned up temporary frame directory: temp_videos/e944425e-5ba9-4dd4-acdf-79f0dfe1ba09
2025-08-18 23:00:00 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_050.mp4'
2025-08-18 23:00:00 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Video saved to temporary file: temp_videos/e071de33-f805-4530-8741-f62f3ad4bf46.mp4
2025-08-18 23:00:01 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:00:06 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:00:06 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] 30 frames saved to temp_videos/e071de33-f805-4530-8741-f62f3ad4bf46
2025-08-18 23:00:06 - INFO - Prompt token length: 2276
2025-08-18 23:00:14 - INFO - Tokens per second: 11.285178690107939, Peak GPU memory MB: 4498.375
2025-08-18 23:00:14 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Inference time: 13.93 seconds, CPU usage: 52.8%, CPU core utilization: [44.2, 38.7, 37.1, 90.9]
2025-08-18 23:00:14 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Cleaned up temporary file: temp_videos/e071de33-f805-4530-8741-f62f3ad4bf46.mp4
2025-08-18 23:00:14 - INFO - [e071de33-f805-4530-8741-f62f3ad4bf46] Cleaned up temporary frame directory: temp_videos/e071de33-f805-4530-8741-f62f3ad4bf46
2025-08-18 23:00:14 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_051.mp4'
2025-08-18 23:00:14 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Video saved to temporary file: temp_videos/86940c58-16cc-4771-b0ff-c1aa062432eb.mp4
2025-08-18 23:00:14 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:00:20 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:00:20 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] 30 frames saved to temp_videos/86940c58-16cc-4771-b0ff-c1aa062432eb
2025-08-18 23:00:20 - INFO - Prompt token length: 2276
2025-08-18 23:00:28 - INFO - Tokens per second: 10.676742482272044, Peak GPU memory MB: 4498.375
2025-08-18 23:00:28 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Inference time: 13.05 seconds, CPU usage: 55.0%, CPU core utilization: [40.6, 89.8, 44.2, 45.4]
2025-08-18 23:00:28 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Cleaned up temporary file: temp_videos/86940c58-16cc-4771-b0ff-c1aa062432eb.mp4
2025-08-18 23:00:28 - INFO - [86940c58-16cc-4771-b0ff-c1aa062432eb] Cleaned up temporary frame directory: temp_videos/86940c58-16cc-4771-b0ff-c1aa062432eb
2025-08-18 23:00:28 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_052.mp4'
2025-08-18 23:00:28 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Video saved to temporary file: temp_videos/81b94ac7-cac5-457f-bd20-59fd15f12943.mp4
2025-08-18 23:00:28 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:00:32 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:00:32 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] 30 frames saved to temp_videos/81b94ac7-cac5-457f-bd20-59fd15f12943
2025-08-18 23:00:33 - INFO - Prompt token length: 2276
2025-08-18 23:00:51 - INFO - Tokens per second: 13.622099739318918, Peak GPU memory MB: 4498.375
2025-08-18 23:00:51 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Inference time: 23.43 seconds, CPU usage: 42.2%, CPU core utilization: [31.3, 23.5, 85.9, 28.0]
2025-08-18 23:00:51 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Cleaned up temporary file: temp_videos/81b94ac7-cac5-457f-bd20-59fd15f12943.mp4
2025-08-18 23:00:51 - INFO - [81b94ac7-cac5-457f-bd20-59fd15f12943] Cleaned up temporary frame directory: temp_videos/81b94ac7-cac5-457f-bd20-59fd15f12943
2025-08-18 23:00:51 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_053.mp4'
2025-08-18 23:00:51 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Video saved to temporary file: temp_videos/efba522a-2522-43d4-a898-9dc8c3ed0e73.mp4
2025-08-18 23:00:51 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:00:56 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:00:56 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] 30 frames saved to temp_videos/efba522a-2522-43d4-a898-9dc8c3ed0e73
2025-08-18 23:00:57 - INFO - Prompt token length: 2276
2025-08-18 23:01:15 - INFO - Tokens per second: 13.347533319146407, Peak GPU memory MB: 4498.375
2025-08-18 23:01:15 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Inference time: 24.23 seconds, CPU usage: 42.6%, CPU core utilization: [62.2, 26.4, 56.8, 25.2]
2025-08-18 23:01:15 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Cleaned up temporary file: temp_videos/efba522a-2522-43d4-a898-9dc8c3ed0e73.mp4
2025-08-18 23:01:15 - INFO - [efba522a-2522-43d4-a898-9dc8c3ed0e73] Cleaned up temporary frame directory: temp_videos/efba522a-2522-43d4-a898-9dc8c3ed0e73
2025-08-18 23:01:15 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_054.mp4'
2025-08-18 23:01:15 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Video saved to temporary file: temp_videos/006b941e-077a-434b-9305-64ca8dafb004.mp4
2025-08-18 23:01:15 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:01:20 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:01:20 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] 30 frames saved to temp_videos/006b941e-077a-434b-9305-64ca8dafb004
2025-08-18 23:01:21 - INFO - Prompt token length: 2276
2025-08-18 23:01:28 - INFO - Tokens per second: 10.53785016721129, Peak GPU memory MB: 4498.375
2025-08-18 23:01:28 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Inference time: 12.31 seconds, CPU usage: 55.8%, CPU core utilization: [55.0, 50.0, 77.9, 40.5]
2025-08-18 23:01:28 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Cleaned up temporary file: temp_videos/006b941e-077a-434b-9305-64ca8dafb004.mp4
2025-08-18 23:01:28 - INFO - [006b941e-077a-434b-9305-64ca8dafb004] Cleaned up temporary frame directory: temp_videos/006b941e-077a-434b-9305-64ca8dafb004
2025-08-18 23:01:28 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_055.mp4'
2025-08-18 23:01:28 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Video saved to temporary file: temp_videos/d839ff80-6608-461e-ac9c-705a44262a2c.mp4
2025-08-18 23:01:28 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:01:33 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:01:33 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] 30 frames saved to temp_videos/d839ff80-6608-461e-ac9c-705a44262a2c
2025-08-18 23:01:34 - INFO - Prompt token length: 2276
2025-08-18 23:01:41 - INFO - Tokens per second: 10.75895843424124, Peak GPU memory MB: 4498.375
2025-08-18 23:01:41 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Inference time: 13.70 seconds, CPU usage: 55.6%, CPU core utilization: [54.4, 41.3, 79.8, 46.6]
2025-08-18 23:01:41 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Cleaned up temporary file: temp_videos/d839ff80-6608-461e-ac9c-705a44262a2c.mp4
2025-08-18 23:01:41 - INFO - [d839ff80-6608-461e-ac9c-705a44262a2c] Cleaned up temporary frame directory: temp_videos/d839ff80-6608-461e-ac9c-705a44262a2c
2025-08-18 23:01:41 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_056.mp4'
2025-08-18 23:01:41 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Video saved to temporary file: temp_videos/0eff5449-6a26-4685-951e-2d234d38afcd.mp4
2025-08-18 23:01:41 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:01:46 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:01:47 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] 30 frames saved to temp_videos/0eff5449-6a26-4685-951e-2d234d38afcd
2025-08-18 23:01:47 - INFO - Prompt token length: 2276
2025-08-18 23:01:54 - INFO - Tokens per second: 10.594214965012135, Peak GPU memory MB: 4498.375
2025-08-18 23:01:54 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Inference time: 12.68 seconds, CPU usage: 54.8%, CPU core utilization: [37.5, 42.0, 97.2, 42.3]
2025-08-18 23:01:54 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Cleaned up temporary file: temp_videos/0eff5449-6a26-4685-951e-2d234d38afcd.mp4
2025-08-18 23:01:54 - INFO - [0eff5449-6a26-4685-951e-2d234d38afcd] Cleaned up temporary frame directory: temp_videos/0eff5449-6a26-4685-951e-2d234d38afcd
2025-08-18 23:01:54 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_057.mp4'
2025-08-18 23:01:54 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Video saved to temporary file: temp_videos/49ff462d-dde1-4890-a70d-705c35a65ff5.mp4
2025-08-18 23:01:54 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:01:59 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:02:00 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] 30 frames saved to temp_videos/49ff462d-dde1-4890-a70d-705c35a65ff5
2025-08-18 23:02:00 - INFO - Prompt token length: 2276
2025-08-18 23:02:08 - INFO - Tokens per second: 11.269221613888531, Peak GPU memory MB: 4498.375
2025-08-18 23:02:08 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Inference time: 14.13 seconds, CPU usage: 53.3%, CPU core utilization: [66.9, 41.2, 64.7, 40.3]
2025-08-18 23:02:08 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Cleaned up temporary file: temp_videos/49ff462d-dde1-4890-a70d-705c35a65ff5.mp4
2025-08-18 23:02:08 - INFO - [49ff462d-dde1-4890-a70d-705c35a65ff5] Cleaned up temporary frame directory: temp_videos/49ff462d-dde1-4890-a70d-705c35a65ff5
2025-08-18 23:02:08 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_058.mp4'
2025-08-18 23:02:08 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Video saved to temporary file: temp_videos/f4304769-b360-4c33-824f-6bf090832808.mp4
2025-08-18 23:02:08 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:02:14 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:02:14 - INFO - [f4304769-b360-4c33-824f-6bf090832808] 30 frames saved to temp_videos/f4304769-b360-4c33-824f-6bf090832808
2025-08-18 23:02:14 - INFO - Prompt token length: 2276
2025-08-18 23:02:22 - INFO - Tokens per second: 11.04575295102091, Peak GPU memory MB: 4498.375
2025-08-18 23:02:22 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Inference time: 13.99 seconds, CPU usage: 55.2%, CPU core utilization: [42.7, 38.4, 42.4, 97.3]
2025-08-18 23:02:22 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Cleaned up temporary file: temp_videos/f4304769-b360-4c33-824f-6bf090832808.mp4
2025-08-18 23:02:22 - INFO - [f4304769-b360-4c33-824f-6bf090832808] Cleaned up temporary frame directory: temp_videos/f4304769-b360-4c33-824f-6bf090832808
2025-08-18 23:02:22 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_059.mp4'
2025-08-18 23:02:22 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Video saved to temporary file: temp_videos/d9c98683-0f98-4a8c-b7db-ecca0cecf48b.mp4
2025-08-18 23:02:22 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:02:28 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:02:28 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] 30 frames saved to temp_videos/d9c98683-0f98-4a8c-b7db-ecca0cecf48b
2025-08-18 23:02:29 - INFO - Prompt token length: 2276
2025-08-18 23:02:36 - INFO - Tokens per second: 10.727149599423456, Peak GPU memory MB: 4498.375
2025-08-18 23:02:36 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Inference time: 13.41 seconds, CPU usage: 56.3%, CPU core utilization: [40.9, 50.8, 47.5, 86.2]
2025-08-18 23:02:36 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Cleaned up temporary file: temp_videos/d9c98683-0f98-4a8c-b7db-ecca0cecf48b.mp4
2025-08-18 23:02:36 - INFO - [d9c98683-0f98-4a8c-b7db-ecca0cecf48b] Cleaned up temporary frame directory: temp_videos/d9c98683-0f98-4a8c-b7db-ecca0cecf48b
2025-08-18 23:02:36 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_060.mp4'
2025-08-18 23:02:36 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Video saved to temporary file: temp_videos/c515e67f-f312-4e56-9f76-63baafea18fe.mp4
2025-08-18 23:02:36 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:02:41 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:02:41 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] 30 frames saved to temp_videos/c515e67f-f312-4e56-9f76-63baafea18fe
2025-08-18 23:02:42 - INFO - Prompt token length: 2276
2025-08-18 23:02:48 - INFO - Tokens per second: 10.042450573700199, Peak GPU memory MB: 4498.375
2025-08-18 23:02:48 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Inference time: 12.22 seconds, CPU usage: 56.6%, CPU core utilization: [43.7, 55.8, 45.1, 81.6]
2025-08-18 23:02:48 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Cleaned up temporary file: temp_videos/c515e67f-f312-4e56-9f76-63baafea18fe.mp4
2025-08-18 23:02:48 - INFO - [c515e67f-f312-4e56-9f76-63baafea18fe] Cleaned up temporary frame directory: temp_videos/c515e67f-f312-4e56-9f76-63baafea18fe
2025-08-18 23:02:48 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_061.mp4'
2025-08-18 23:02:48 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Video saved to temporary file: temp_videos/7ef4adca-42f0-441a-934e-7a89de474185.mp4
2025-08-18 23:02:48 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:02:53 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:02:53 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] 30 frames saved to temp_videos/7ef4adca-42f0-441a-934e-7a89de474185
2025-08-18 23:02:54 - INFO - Prompt token length: 2276
2025-08-18 23:03:04 - INFO - Tokens per second: 11.836645817275972, Peak GPU memory MB: 4498.375
2025-08-18 23:03:04 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Inference time: 15.41 seconds, CPU usage: 50.4%, CPU core utilization: [76.2, 47.8, 45.2, 32.3]
2025-08-18 23:03:04 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Cleaned up temporary file: temp_videos/7ef4adca-42f0-441a-934e-7a89de474185.mp4
2025-08-18 23:03:04 - INFO - [7ef4adca-42f0-441a-934e-7a89de474185] Cleaned up temporary frame directory: temp_videos/7ef4adca-42f0-441a-934e-7a89de474185
2025-08-18 23:03:04 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_062.mp4'
2025-08-18 23:03:04 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Video saved to temporary file: temp_videos/1c90644f-f15e-4166-91ed-6cfd756f5345.mp4
2025-08-18 23:03:04 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:03:09 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:03:09 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] 30 frames saved to temp_videos/1c90644f-f15e-4166-91ed-6cfd756f5345
2025-08-18 23:03:10 - INFO - Prompt token length: 2276
2025-08-18 23:03:28 - INFO - Tokens per second: 13.51890528957401, Peak GPU memory MB: 4498.375
2025-08-18 23:03:28 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Inference time: 24.69 seconds, CPU usage: 43.4%, CPU core utilization: [66.1, 27.7, 50.8, 28.9]
2025-08-18 23:03:28 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Cleaned up temporary file: temp_videos/1c90644f-f15e-4166-91ed-6cfd756f5345.mp4
2025-08-18 23:03:28 - INFO - [1c90644f-f15e-4166-91ed-6cfd756f5345] Cleaned up temporary frame directory: temp_videos/1c90644f-f15e-4166-91ed-6cfd756f5345
2025-08-18 23:03:28 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_063.mp4'
2025-08-18 23:03:28 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Video saved to temporary file: temp_videos/8ecf1c91-baa7-4ad3-a045-af2055b234f0.mp4
2025-08-18 23:03:28 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:03:34 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:03:34 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] 30 frames saved to temp_videos/8ecf1c91-baa7-4ad3-a045-af2055b234f0
2025-08-18 23:03:35 - INFO - Prompt token length: 2276
2025-08-18 23:03:41 - INFO - Tokens per second: 10.470370255459905, Peak GPU memory MB: 4498.375
2025-08-18 23:03:41 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Inference time: 12.99 seconds, CPU usage: 57.5%, CPU core utilization: [89.5, 46.0, 50.2, 44.2]
2025-08-18 23:03:41 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Cleaned up temporary file: temp_videos/8ecf1c91-baa7-4ad3-a045-af2055b234f0.mp4
2025-08-18 23:03:41 - INFO - [8ecf1c91-baa7-4ad3-a045-af2055b234f0] Cleaned up temporary frame directory: temp_videos/8ecf1c91-baa7-4ad3-a045-af2055b234f0
2025-08-18 23:03:41 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_064.mp4'
2025-08-18 23:03:41 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Video saved to temporary file: temp_videos/768cf2db-998a-430b-a18c-cee0ce86f57a.mp4
2025-08-18 23:03:41 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:03:47 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:03:47 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] 30 frames saved to temp_videos/768cf2db-998a-430b-a18c-cee0ce86f57a
2025-08-18 23:03:47 - INFO - Prompt token length: 2276
2025-08-18 23:03:54 - INFO - Tokens per second: 10.637653036938566, Peak GPU memory MB: 4498.375
2025-08-18 23:03:54 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Inference time: 13.02 seconds, CPU usage: 54.6%, CPU core utilization: [60.0, 80.6, 40.0, 37.7]
2025-08-18 23:03:54 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Cleaned up temporary file: temp_videos/768cf2db-998a-430b-a18c-cee0ce86f57a.mp4
2025-08-18 23:03:54 - INFO - [768cf2db-998a-430b-a18c-cee0ce86f57a] Cleaned up temporary frame directory: temp_videos/768cf2db-998a-430b-a18c-cee0ce86f57a
2025-08-18 23:03:54 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_065.mp4'
2025-08-18 23:03:54 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Video saved to temporary file: temp_videos/aed264f9-f2d0-41ea-978b-dfa6b229d55c.mp4
2025-08-18 23:03:54 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:03:59 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:03:59 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] 30 frames saved to temp_videos/aed264f9-f2d0-41ea-978b-dfa6b229d55c
2025-08-18 23:04:00 - INFO - Prompt token length: 2276
2025-08-18 23:04:08 - INFO - Tokens per second: 11.118798321181488, Peak GPU memory MB: 4498.375
2025-08-18 23:04:08 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Inference time: 13.33 seconds, CPU usage: 53.2%, CPU core utilization: [36.3, 42.5, 92.8, 41.2]
2025-08-18 23:04:08 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Cleaned up temporary file: temp_videos/aed264f9-f2d0-41ea-978b-dfa6b229d55c.mp4
2025-08-18 23:04:08 - INFO - [aed264f9-f2d0-41ea-978b-dfa6b229d55c] Cleaned up temporary frame directory: temp_videos/aed264f9-f2d0-41ea-978b-dfa6b229d55c
2025-08-18 23:04:08 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_066.mp4'
2025-08-18 23:04:08 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Video saved to temporary file: temp_videos/1c61368d-28f5-4388-8f15-59e58db86810.mp4
2025-08-18 23:04:08 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:04:13 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:04:13 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] 30 frames saved to temp_videos/1c61368d-28f5-4388-8f15-59e58db86810
2025-08-18 23:04:14 - INFO - Prompt token length: 2276
2025-08-18 23:04:21 - INFO - Tokens per second: 11.046646657452769, Peak GPU memory MB: 4498.375
2025-08-18 23:04:21 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Inference time: 13.33 seconds, CPU usage: 54.8%, CPU core utilization: [41.8, 40.8, 92.8, 43.8]
2025-08-18 23:04:21 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Cleaned up temporary file: temp_videos/1c61368d-28f5-4388-8f15-59e58db86810.mp4
2025-08-18 23:04:21 - INFO - [1c61368d-28f5-4388-8f15-59e58db86810] Cleaned up temporary frame directory: temp_videos/1c61368d-28f5-4388-8f15-59e58db86810
2025-08-18 23:04:21 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_067.mp4'
2025-08-18 23:04:21 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Video saved to temporary file: temp_videos/e64444fd-c006-4d5f-ac89-6783a3a4f3db.mp4
2025-08-18 23:04:21 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:04:26 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:04:26 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] 30 frames saved to temp_videos/e64444fd-c006-4d5f-ac89-6783a3a4f3db
2025-08-18 23:04:27 - INFO - Prompt token length: 2276
2025-08-18 23:04:37 - INFO - Tokens per second: 12.171039547079923, Peak GPU memory MB: 4498.375
2025-08-18 23:04:37 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Inference time: 15.97 seconds, CPU usage: 47.4%, CPU core utilization: [41.1, 39.5, 76.6, 32.2]
2025-08-18 23:04:37 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Cleaned up temporary file: temp_videos/e64444fd-c006-4d5f-ac89-6783a3a4f3db.mp4
2025-08-18 23:04:37 - INFO - [e64444fd-c006-4d5f-ac89-6783a3a4f3db] Cleaned up temporary frame directory: temp_videos/e64444fd-c006-4d5f-ac89-6783a3a4f3db
2025-08-18 23:04:37 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_068.mp4'
2025-08-18 23:04:37 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Video saved to temporary file: temp_videos/cc94a1b4-298e-4960-aaaf-9c6f37c66226.mp4
2025-08-18 23:04:37 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:04:42 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:04:42 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] 30 frames saved to temp_videos/cc94a1b4-298e-4960-aaaf-9c6f37c66226
2025-08-18 23:04:43 - INFO - Prompt token length: 2276
2025-08-18 23:04:52 - INFO - Tokens per second: 11.776910119364178, Peak GPU memory MB: 4498.375
2025-08-18 23:04:52 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Inference time: 15.09 seconds, CPU usage: 50.9%, CPU core utilization: [43.8, 38.1, 85.2, 36.4]
2025-08-18 23:04:52 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Cleaned up temporary file: temp_videos/cc94a1b4-298e-4960-aaaf-9c6f37c66226.mp4
2025-08-18 23:04:52 - INFO - [cc94a1b4-298e-4960-aaaf-9c6f37c66226] Cleaned up temporary frame directory: temp_videos/cc94a1b4-298e-4960-aaaf-9c6f37c66226
2025-08-18 23:04:52 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_069.mp4'
2025-08-18 23:04:52 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Video saved to temporary file: temp_videos/be6ef8ed-4bde-40d6-a538-7b33950ca231.mp4
2025-08-18 23:04:52 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:04:58 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:04:58 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] 30 frames saved to temp_videos/be6ef8ed-4bde-40d6-a538-7b33950ca231
2025-08-18 23:04:59 - INFO - Prompt token length: 2276
2025-08-18 23:05:18 - INFO - Tokens per second: 13.303425856169165, Peak GPU memory MB: 4498.375
2025-08-18 23:05:18 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Inference time: 25.32 seconds, CPU usage: 44.9%, CPU core utilization: [28.9, 80.1, 28.4, 42.2]
2025-08-18 23:05:18 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Cleaned up temporary file: temp_videos/be6ef8ed-4bde-40d6-a538-7b33950ca231.mp4
2025-08-18 23:05:18 - INFO - [be6ef8ed-4bde-40d6-a538-7b33950ca231] Cleaned up temporary frame directory: temp_videos/be6ef8ed-4bde-40d6-a538-7b33950ca231
2025-08-18 23:05:18 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_070.mp4'
2025-08-18 23:05:18 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Video saved to temporary file: temp_videos/ae135513-64b0-4bed-a0a6-d3cf52df3956.mp4
2025-08-18 23:05:18 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:05:24 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:05:24 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] 30 frames saved to temp_videos/ae135513-64b0-4bed-a0a6-d3cf52df3956
2025-08-18 23:05:24 - INFO - Prompt token length: 2276
2025-08-18 23:05:35 - INFO - Tokens per second: 12.13954557764283, Peak GPU memory MB: 4498.375
2025-08-18 23:05:35 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Inference time: 17.38 seconds, CPU usage: 50.4%, CPU core utilization: [39.7, 58.8, 34.9, 68.0]
2025-08-18 23:05:35 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Cleaned up temporary file: temp_videos/ae135513-64b0-4bed-a0a6-d3cf52df3956.mp4
2025-08-18 23:05:35 - INFO - [ae135513-64b0-4bed-a0a6-d3cf52df3956] Cleaned up temporary frame directory: temp_videos/ae135513-64b0-4bed-a0a6-d3cf52df3956
2025-08-18 23:05:35 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_071.mp4'
2025-08-18 23:05:35 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Video saved to temporary file: temp_videos/16b10795-6ef8-4c60-bd25-b4d9be61a39a.mp4
2025-08-18 23:05:35 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:05:40 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:05:40 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] 30 frames saved to temp_videos/16b10795-6ef8-4c60-bd25-b4d9be61a39a
2025-08-18 23:05:40 - INFO - Prompt token length: 2276
2025-08-18 23:05:47 - INFO - Tokens per second: 10.414739116699462, Peak GPU memory MB: 4498.375
2025-08-18 23:05:47 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Inference time: 11.88 seconds, CPU usage: 55.1%, CPU core utilization: [92.1, 46.3, 42.3, 39.7]
2025-08-18 23:05:47 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Cleaned up temporary file: temp_videos/16b10795-6ef8-4c60-bd25-b4d9be61a39a.mp4
2025-08-18 23:05:47 - INFO - [16b10795-6ef8-4c60-bd25-b4d9be61a39a] Cleaned up temporary frame directory: temp_videos/16b10795-6ef8-4c60-bd25-b4d9be61a39a
2025-08-18 23:05:47 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_072.mp4'
2025-08-18 23:05:47 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Video saved to temporary file: temp_videos/5ce48b47-57b9-4a49-83be-c25ac282ed59.mp4
2025-08-18 23:05:47 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:05:52 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:05:52 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] 30 frames saved to temp_videos/5ce48b47-57b9-4a49-83be-c25ac282ed59
2025-08-18 23:05:52 - INFO - Prompt token length: 2276
2025-08-18 23:06:00 - INFO - Tokens per second: 10.734430101804195, Peak GPU memory MB: 4498.375
2025-08-18 23:06:00 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Inference time: 12.57 seconds, CPU usage: 52.9%, CPU core utilization: [40.4, 90.9, 42.6, 37.6]
2025-08-18 23:06:00 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Cleaned up temporary file: temp_videos/5ce48b47-57b9-4a49-83be-c25ac282ed59.mp4
2025-08-18 23:06:00 - INFO - [5ce48b47-57b9-4a49-83be-c25ac282ed59] Cleaned up temporary frame directory: temp_videos/5ce48b47-57b9-4a49-83be-c25ac282ed59
2025-08-18 23:06:00 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_073.mp4'
2025-08-18 23:06:00 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Video saved to temporary file: temp_videos/3d074499-8223-438b-b0fd-0226dd497cab.mp4
2025-08-18 23:06:00 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:06:04 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:06:05 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] 30 frames saved to temp_videos/3d074499-8223-438b-b0fd-0226dd497cab
2025-08-18 23:06:05 - INFO - Prompt token length: 2276
2025-08-18 23:06:14 - INFO - Tokens per second: 11.401038439752732, Peak GPU memory MB: 4498.375
2025-08-18 23:06:14 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Inference time: 13.87 seconds, CPU usage: 52.1%, CPU core utilization: [86.9, 42.0, 40.8, 38.7]
2025-08-18 23:06:14 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Cleaned up temporary file: temp_videos/3d074499-8223-438b-b0fd-0226dd497cab.mp4
2025-08-18 23:06:14 - INFO - [3d074499-8223-438b-b0fd-0226dd497cab] Cleaned up temporary frame directory: temp_videos/3d074499-8223-438b-b0fd-0226dd497cab
2025-08-18 23:06:14 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_074.mp4'
2025-08-18 23:06:14 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Video saved to temporary file: temp_videos/1cbc8704-d012-43d5-82c2-4e7078b12884.mp4
2025-08-18 23:06:14 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:06:19 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:06:19 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] 30 frames saved to temp_videos/1cbc8704-d012-43d5-82c2-4e7078b12884
2025-08-18 23:06:19 - INFO - Prompt token length: 2276
2025-08-18 23:06:28 - INFO - Tokens per second: 11.397912573524183, Peak GPU memory MB: 4498.375
2025-08-18 23:06:28 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Inference time: 14.49 seconds, CPU usage: 52.0%, CPU core utilization: [38.6, 45.3, 37.2, 87.1]
2025-08-18 23:06:28 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Cleaned up temporary file: temp_videos/1cbc8704-d012-43d5-82c2-4e7078b12884.mp4
2025-08-18 23:06:28 - INFO - [1cbc8704-d012-43d5-82c2-4e7078b12884] Cleaned up temporary frame directory: temp_videos/1cbc8704-d012-43d5-82c2-4e7078b12884
2025-08-18 23:06:28 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_075.mp4'
2025-08-18 23:06:28 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Video saved to temporary file: temp_videos/a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1.mp4
2025-08-18 23:06:28 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:06:33 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:06:33 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] 30 frames saved to temp_videos/a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1
2025-08-18 23:06:33 - INFO - Prompt token length: 2276
2025-08-18 23:06:39 - INFO - Tokens per second: 9.434509967080192, Peak GPU memory MB: 4498.375
2025-08-18 23:06:39 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Inference time: 10.79 seconds, CPU usage: 56.6%, CPU core utilization: [45.3, 62.0, 53.9, 65.1]
2025-08-18 23:06:39 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Cleaned up temporary file: temp_videos/a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1.mp4
2025-08-18 23:06:39 - INFO - [a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1] Cleaned up temporary frame directory: temp_videos/a8d8e6d3-2b55-4de6-bda2-7a1926e9c6b1
2025-08-18 23:06:39 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_076.mp4'
2025-08-18 23:06:39 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Video saved to temporary file: temp_videos/7be9c3e4-53a9-4702-a5d8-29fbdc22247a.mp4
2025-08-18 23:06:39 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:06:44 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:06:44 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] 30 frames saved to temp_videos/7be9c3e4-53a9-4702-a5d8-29fbdc22247a
2025-08-18 23:06:44 - INFO - Prompt token length: 2276
2025-08-18 23:06:52 - INFO - Tokens per second: 10.855564263704968, Peak GPU memory MB: 4498.375
2025-08-18 23:06:52 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Inference time: 12.64 seconds, CPU usage: 53.3%, CPU core utilization: [38.8, 70.7, 42.6, 61.1]
2025-08-18 23:06:52 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Cleaned up temporary file: temp_videos/7be9c3e4-53a9-4702-a5d8-29fbdc22247a.mp4
2025-08-18 23:06:52 - INFO - [7be9c3e4-53a9-4702-a5d8-29fbdc22247a] Cleaned up temporary frame directory: temp_videos/7be9c3e4-53a9-4702-a5d8-29fbdc22247a
2025-08-18 23:06:52 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_077.mp4'
2025-08-18 23:06:52 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Video saved to temporary file: temp_videos/6451a051-dd9d-46e6-abf2-66b46b1b503a.mp4
2025-08-18 23:06:52 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:06:57 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:06:57 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] 30 frames saved to temp_videos/6451a051-dd9d-46e6-abf2-66b46b1b503a
2025-08-18 23:06:58 - INFO - Prompt token length: 2276
2025-08-18 23:07:06 - INFO - Tokens per second: 11.264292443159409, Peak GPU memory MB: 4498.375
2025-08-18 23:07:06 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Inference time: 13.96 seconds, CPU usage: 53.6%, CPU core utilization: [70.2, 43.9, 59.9, 40.2]
2025-08-18 23:07:06 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Cleaned up temporary file: temp_videos/6451a051-dd9d-46e6-abf2-66b46b1b503a.mp4
2025-08-18 23:07:06 - INFO - [6451a051-dd9d-46e6-abf2-66b46b1b503a] Cleaned up temporary frame directory: temp_videos/6451a051-dd9d-46e6-abf2-66b46b1b503a
2025-08-18 23:07:06 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_078.mp4'
2025-08-18 23:07:06 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Video saved to temporary file: temp_videos/87ac276a-a3ea-4d34-91eb-4a24e4b0988b.mp4
2025-08-18 23:07:06 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:07:11 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:07:11 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] 30 frames saved to temp_videos/87ac276a-a3ea-4d34-91eb-4a24e4b0988b
2025-08-18 23:07:11 - INFO - Prompt token length: 2276
2025-08-18 23:07:20 - INFO - Tokens per second: 11.433634043968842, Peak GPU memory MB: 4498.375
2025-08-18 23:07:20 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Inference time: 13.98 seconds, CPU usage: 52.6%, CPU core utilization: [58.9, 63.0, 48.2, 40.3]
2025-08-18 23:07:20 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Cleaned up temporary file: temp_videos/87ac276a-a3ea-4d34-91eb-4a24e4b0988b.mp4
2025-08-18 23:07:20 - INFO - [87ac276a-a3ea-4d34-91eb-4a24e4b0988b] Cleaned up temporary frame directory: temp_videos/87ac276a-a3ea-4d34-91eb-4a24e4b0988b
2025-08-18 23:07:20 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_079.mp4'
2025-08-18 23:07:20 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Video saved to temporary file: temp_videos/eeff6f88-bdbc-42c4-af10-eadd111abd74.mp4
2025-08-18 23:07:20 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:07:26 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:07:26 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] 30 frames saved to temp_videos/eeff6f88-bdbc-42c4-af10-eadd111abd74
2025-08-18 23:07:26 - INFO - Prompt token length: 2276
2025-08-18 23:07:33 - INFO - Tokens per second: 10.660925176180571, Peak GPU memory MB: 4498.375
2025-08-18 23:07:33 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Inference time: 13.68 seconds, CPU usage: 57.1%, CPU core utilization: [44.6, 54.0, 67.4, 62.7]
2025-08-18 23:07:33 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Cleaned up temporary file: temp_videos/eeff6f88-bdbc-42c4-af10-eadd111abd74.mp4
2025-08-18 23:07:33 - INFO - [eeff6f88-bdbc-42c4-af10-eadd111abd74] Cleaned up temporary frame directory: temp_videos/eeff6f88-bdbc-42c4-af10-eadd111abd74
2025-08-18 23:07:33 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_080.mp4'
2025-08-18 23:07:33 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Video saved to temporary file: temp_videos/f5e44a0b-9490-41da-8fad-541a5189ddc2.mp4
2025-08-18 23:07:33 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:07:40 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:07:40 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] 30 frames saved to temp_videos/f5e44a0b-9490-41da-8fad-541a5189ddc2
2025-08-18 23:07:40 - INFO - Prompt token length: 2276
2025-08-18 23:07:59 - INFO - Tokens per second: 13.453729274975233, Peak GPU memory MB: 4498.375
2025-08-18 23:07:59 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Inference time: 25.35 seconds, CPU usage: 45.7%, CPU core utilization: [26.3, 30.9, 94.7, 30.6]
2025-08-18 23:07:59 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Cleaned up temporary file: temp_videos/f5e44a0b-9490-41da-8fad-541a5189ddc2.mp4
2025-08-18 23:07:59 - INFO - [f5e44a0b-9490-41da-8fad-541a5189ddc2] Cleaned up temporary frame directory: temp_videos/f5e44a0b-9490-41da-8fad-541a5189ddc2
2025-08-18 23:07:59 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_081.mp4'
2025-08-18 23:07:59 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Video saved to temporary file: temp_videos/7adc3909-1397-4a36-b2dd-edd998aae077.mp4
2025-08-18 23:07:59 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:08:04 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:08:04 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] 30 frames saved to temp_videos/7adc3909-1397-4a36-b2dd-edd998aae077
2025-08-18 23:08:04 - INFO - Prompt token length: 2276
2025-08-18 23:08:23 - INFO - Tokens per second: 13.213590696537448, Peak GPU memory MB: 4498.375
2025-08-18 23:08:23 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Inference time: 24.29 seconds, CPU usage: 42.8%, CPU core utilization: [28.2, 39.4, 23.7, 79.7]
2025-08-18 23:08:23 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Cleaned up temporary file: temp_videos/7adc3909-1397-4a36-b2dd-edd998aae077.mp4
2025-08-18 23:08:23 - INFO - [7adc3909-1397-4a36-b2dd-edd998aae077] Cleaned up temporary frame directory: temp_videos/7adc3909-1397-4a36-b2dd-edd998aae077
2025-08-18 23:08:23 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_082.mp4'
2025-08-18 23:08:23 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Video saved to temporary file: temp_videos/4b02a42f-ea2a-48f9-982a-52300d9dd936.mp4
2025-08-18 23:08:23 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:08:28 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:08:28 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] 30 frames saved to temp_videos/4b02a42f-ea2a-48f9-982a-52300d9dd936
2025-08-18 23:08:29 - INFO - Prompt token length: 2276
2025-08-18 23:08:37 - INFO - Tokens per second: 11.255230746577219, Peak GPU memory MB: 4498.375
2025-08-18 23:08:37 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Inference time: 13.97 seconds, CPU usage: 51.9%, CPU core utilization: [37.6, 34.3, 42.3, 93.3]
2025-08-18 23:08:37 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Cleaned up temporary file: temp_videos/4b02a42f-ea2a-48f9-982a-52300d9dd936.mp4
2025-08-18 23:08:37 - INFO - [4b02a42f-ea2a-48f9-982a-52300d9dd936] Cleaned up temporary frame directory: temp_videos/4b02a42f-ea2a-48f9-982a-52300d9dd936
2025-08-18 23:08:37 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_083.mp4'
2025-08-18 23:08:37 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Video saved to temporary file: temp_videos/42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1.mp4
2025-08-18 23:08:37 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:08:42 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:08:42 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] 30 frames saved to temp_videos/42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1
2025-08-18 23:08:43 - INFO - Prompt token length: 2276
2025-08-18 23:08:53 - INFO - Tokens per second: 12.089796796705802, Peak GPU memory MB: 4498.375
2025-08-18 23:08:53 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Inference time: 16.04 seconds, CPU usage: 49.5%, CPU core utilization: [74.8, 38.0, 46.3, 39.0]
2025-08-18 23:08:53 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Cleaned up temporary file: temp_videos/42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1.mp4
2025-08-18 23:08:53 - INFO - [42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1] Cleaned up temporary frame directory: temp_videos/42a5f0a1-e4c8-4bd0-aec9-1dc8f805a3b1
2025-08-18 23:08:53 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_084.mp4'
2025-08-18 23:08:53 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Video saved to temporary file: temp_videos/5629ae35-2cf2-416d-bf4a-e92d95d9db54.mp4
2025-08-18 23:08:53 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:08:58 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:08:59 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] 30 frames saved to temp_videos/5629ae35-2cf2-416d-bf4a-e92d95d9db54
2025-08-18 23:08:59 - INFO - Prompt token length: 2276
2025-08-18 23:09:07 - INFO - Tokens per second: 10.951788067871178, Peak GPU memory MB: 4498.375
2025-08-18 23:09:07 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Inference time: 13.59 seconds, CPU usage: 53.6%, CPU core utilization: [42.3, 83.1, 39.1, 49.7]
2025-08-18 23:09:07 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Cleaned up temporary file: temp_videos/5629ae35-2cf2-416d-bf4a-e92d95d9db54.mp4
2025-08-18 23:09:07 - INFO - [5629ae35-2cf2-416d-bf4a-e92d95d9db54] Cleaned up temporary frame directory: temp_videos/5629ae35-2cf2-416d-bf4a-e92d95d9db54
2025-08-18 23:09:07 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_085.mp4'
2025-08-18 23:09:07 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Video saved to temporary file: temp_videos/841ca3fb-9bf0-4a03-8226-ef5c4f17975f.mp4
2025-08-18 23:09:07 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:09:12 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:09:13 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] 30 frames saved to temp_videos/841ca3fb-9bf0-4a03-8226-ef5c4f17975f
2025-08-18 23:09:13 - INFO - Prompt token length: 2276
2025-08-18 23:09:20 - INFO - Tokens per second: 10.650609352241108, Peak GPU memory MB: 4498.375
2025-08-18 23:09:20 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Inference time: 13.29 seconds, CPU usage: 56.2%, CPU core utilization: [48.6, 52.6, 55.3, 68.2]
2025-08-18 23:09:20 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Cleaned up temporary file: temp_videos/841ca3fb-9bf0-4a03-8226-ef5c4f17975f.mp4
2025-08-18 23:09:20 - INFO - [841ca3fb-9bf0-4a03-8226-ef5c4f17975f] Cleaned up temporary frame directory: temp_videos/841ca3fb-9bf0-4a03-8226-ef5c4f17975f
2025-08-18 23:09:20 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_086.mp4'
2025-08-18 23:09:20 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Video saved to temporary file: temp_videos/987a4569-c7d9-4188-9e20-c82653bc42a0.mp4
2025-08-18 23:09:20 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:09:26 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:09:26 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] 30 frames saved to temp_videos/987a4569-c7d9-4188-9e20-c82653bc42a0
2025-08-18 23:09:26 - INFO - Prompt token length: 2276
2025-08-18 23:09:33 - INFO - Tokens per second: 10.625347178131712, Peak GPU memory MB: 4498.375
2025-08-18 23:09:33 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Inference time: 13.10 seconds, CPU usage: 55.1%, CPU core utilization: [45.7, 59.9, 41.6, 73.2]
2025-08-18 23:09:33 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Cleaned up temporary file: temp_videos/987a4569-c7d9-4188-9e20-c82653bc42a0.mp4
2025-08-18 23:09:33 - INFO - [987a4569-c7d9-4188-9e20-c82653bc42a0] Cleaned up temporary frame directory: temp_videos/987a4569-c7d9-4188-9e20-c82653bc42a0
2025-08-18 23:09:33 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_087.mp4'
2025-08-18 23:09:33 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Video saved to temporary file: temp_videos/0dc8e783-7808-4514-8744-cc61187ff2e3.mp4
2025-08-18 23:09:33 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:09:39 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:09:39 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] 30 frames saved to temp_videos/0dc8e783-7808-4514-8744-cc61187ff2e3
2025-08-18 23:09:40 - INFO - Prompt token length: 2276
2025-08-18 23:09:58 - INFO - Tokens per second: 13.438866702473879, Peak GPU memory MB: 4498.375
2025-08-18 23:09:58 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Inference time: 25.00 seconds, CPU usage: 44.4%, CPU core utilization: [31.1, 25.6, 89.8, 31.1]
2025-08-18 23:09:58 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Cleaned up temporary file: temp_videos/0dc8e783-7808-4514-8744-cc61187ff2e3.mp4
2025-08-18 23:09:58 - INFO - [0dc8e783-7808-4514-8744-cc61187ff2e3] Cleaned up temporary frame directory: temp_videos/0dc8e783-7808-4514-8744-cc61187ff2e3
2025-08-18 23:09:58 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_088.mp4'
2025-08-18 23:09:58 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Video saved to temporary file: temp_videos/e7161349-7c02-4f5b-909c-387cf63d58ee.mp4
2025-08-18 23:09:58 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:10:04 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:10:04 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] 30 frames saved to temp_videos/e7161349-7c02-4f5b-909c-387cf63d58ee
2025-08-18 23:10:05 - INFO - Prompt token length: 2276
2025-08-18 23:10:11 - INFO - Tokens per second: 10.261336029912457, Peak GPU memory MB: 4498.375
2025-08-18 23:10:11 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Inference time: 12.51 seconds, CPU usage: 57.7%, CPU core utilization: [46.2, 51.0, 43.7, 90.0]
2025-08-18 23:10:11 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Cleaned up temporary file: temp_videos/e7161349-7c02-4f5b-909c-387cf63d58ee.mp4
2025-08-18 23:10:11 - INFO - [e7161349-7c02-4f5b-909c-387cf63d58ee] Cleaned up temporary frame directory: temp_videos/e7161349-7c02-4f5b-909c-387cf63d58ee
2025-08-18 23:10:11 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_089.mp4'
2025-08-18 23:10:11 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Video saved to temporary file: temp_videos/0a62e439-75c5-4c37-97d8-1f4c87867626.mp4
2025-08-18 23:10:11 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:10:16 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:10:16 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] 30 frames saved to temp_videos/0a62e439-75c5-4c37-97d8-1f4c87867626
2025-08-18 23:10:16 - INFO - Prompt token length: 2276
2025-08-18 23:10:24 - INFO - Tokens per second: 10.88756330840412, Peak GPU memory MB: 4498.375
2025-08-18 23:10:24 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Inference time: 12.64 seconds, CPU usage: 52.4%, CPU core utilization: [45.3, 41.2, 83.7, 39.1]
2025-08-18 23:10:24 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Cleaned up temporary file: temp_videos/0a62e439-75c5-4c37-97d8-1f4c87867626.mp4
2025-08-18 23:10:24 - INFO - [0a62e439-75c5-4c37-97d8-1f4c87867626] Cleaned up temporary frame directory: temp_videos/0a62e439-75c5-4c37-97d8-1f4c87867626
2025-08-18 23:10:24 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_090.mp4'
2025-08-18 23:10:24 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Video saved to temporary file: temp_videos/30dd0fcd-6bae-4ceb-a580-d2a23f37b672.mp4
2025-08-18 23:10:24 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:10:29 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:10:29 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] 30 frames saved to temp_videos/30dd0fcd-6bae-4ceb-a580-d2a23f37b672
2025-08-18 23:10:30 - INFO - Prompt token length: 2276
2025-08-18 23:10:37 - INFO - Tokens per second: 10.733051985105094, Peak GPU memory MB: 4498.375
2025-08-18 23:10:37 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Inference time: 13.56 seconds, CPU usage: 54.8%, CPU core utilization: [45.4, 90.9, 39.9, 43.1]
2025-08-18 23:10:37 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Cleaned up temporary file: temp_videos/30dd0fcd-6bae-4ceb-a580-d2a23f37b672.mp4
2025-08-18 23:10:37 - INFO - [30dd0fcd-6bae-4ceb-a580-d2a23f37b672] Cleaned up temporary frame directory: temp_videos/30dd0fcd-6bae-4ceb-a580-d2a23f37b672
2025-08-18 23:10:37 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_091.mp4'
2025-08-18 23:10:37 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Video saved to temporary file: temp_videos/98416dc3-19c1-4d77-9236-f16070503b1d.mp4
2025-08-18 23:10:37 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:10:42 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:10:42 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] 30 frames saved to temp_videos/98416dc3-19c1-4d77-9236-f16070503b1d
2025-08-18 23:10:43 - INFO - Prompt token length: 2276
2025-08-18 23:10:49 - INFO - Tokens per second: 9.848084413506196, Peak GPU memory MB: 4498.375
2025-08-18 23:10:49 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Inference time: 11.43 seconds, CPU usage: 54.7%, CPU core utilization: [43.7, 43.7, 40.6, 90.8]
2025-08-18 23:10:49 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Cleaned up temporary file: temp_videos/98416dc3-19c1-4d77-9236-f16070503b1d.mp4
2025-08-18 23:10:49 - INFO - [98416dc3-19c1-4d77-9236-f16070503b1d] Cleaned up temporary frame directory: temp_videos/98416dc3-19c1-4d77-9236-f16070503b1d
2025-08-18 23:10:49 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_092.mp4'
2025-08-18 23:10:49 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Video saved to temporary file: temp_videos/c58fb2f2-4526-478d-8960-a52745cae97c.mp4
2025-08-18 23:10:49 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:10:53 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:10:53 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] 30 frames saved to temp_videos/c58fb2f2-4526-478d-8960-a52745cae97c
2025-08-18 23:10:53 - INFO - Prompt token length: 2276
2025-08-18 23:10:58 - INFO - Tokens per second: 8.88533753629756, Peak GPU memory MB: 4498.375
2025-08-18 23:10:58 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Inference time: 9.65 seconds, CPU usage: 54.6%, CPU core utilization: [46.9, 76.8, 39.4, 55.5]
2025-08-18 23:10:58 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Cleaned up temporary file: temp_videos/c58fb2f2-4526-478d-8960-a52745cae97c.mp4
2025-08-18 23:10:58 - INFO - [c58fb2f2-4526-478d-8960-a52745cae97c] Cleaned up temporary frame directory: temp_videos/c58fb2f2-4526-478d-8960-a52745cae97c
2025-08-18 23:10:58 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_093.mp4'
2025-08-18 23:10:58 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Video saved to temporary file: temp_videos/5361da2b-9bc7-43d8-b8ad-da59241eeb55.mp4
2025-08-18 23:10:58 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:11:01 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:11:01 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] 30 frames saved to temp_videos/5361da2b-9bc7-43d8-b8ad-da59241eeb55
2025-08-18 23:11:01 - INFO - Prompt token length: 2276
2025-08-18 23:11:09 - INFO - Tokens per second: 10.976556836391119, Peak GPU memory MB: 4498.375
2025-08-18 23:11:09 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Inference time: 10.78 seconds, CPU usage: 42.7%, CPU core utilization: [26.9, 33.6, 30.2, 79.9]
2025-08-18 23:11:09 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Cleaned up temporary file: temp_videos/5361da2b-9bc7-43d8-b8ad-da59241eeb55.mp4
2025-08-18 23:11:09 - INFO - [5361da2b-9bc7-43d8-b8ad-da59241eeb55] Cleaned up temporary frame directory: temp_videos/5361da2b-9bc7-43d8-b8ad-da59241eeb55
2025-08-18 23:11:09 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_094.mp4'
2025-08-18 23:11:09 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Video saved to temporary file: temp_videos/69ad63b6-b325-40ad-a235-3ffb0f44b107.mp4
2025-08-18 23:11:09 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:11:11 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:11:11 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] 30 frames saved to temp_videos/69ad63b6-b325-40ad-a235-3ffb0f44b107
2025-08-18 23:11:12 - INFO - Prompt token length: 2276
2025-08-18 23:11:20 - INFO - Tokens per second: 11.347500730261487, Peak GPU memory MB: 4498.375
2025-08-18 23:11:20 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Inference time: 10.68 seconds, CPU usage: 41.4%, CPU core utilization: [36.0, 22.7, 76.2, 30.7]
2025-08-18 23:11:20 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Cleaned up temporary file: temp_videos/69ad63b6-b325-40ad-a235-3ffb0f44b107.mp4
2025-08-18 23:11:20 - INFO - [69ad63b6-b325-40ad-a235-3ffb0f44b107] Cleaned up temporary frame directory: temp_videos/69ad63b6-b325-40ad-a235-3ffb0f44b107
2025-08-18 23:11:20 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_001.mp4'
2025-08-18 23:11:20 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Video saved to temporary file: temp_videos/2c58f485-d411-4796-b1a2-4992c0058b9c.mp4
2025-08-18 23:11:20 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:11:24 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:11:24 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] 30 frames saved to temp_videos/2c58f485-d411-4796-b1a2-4992c0058b9c
2025-08-18 23:11:24 - INFO - Prompt token length: 2276
2025-08-18 23:11:43 - INFO - Tokens per second: 13.40059383147904, Peak GPU memory MB: 4498.375
2025-08-18 23:11:43 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Inference time: 22.91 seconds, CPU usage: 39.6%, CPU core utilization: [45.6, 27.3, 30.7, 54.9]
2025-08-18 23:11:43 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Cleaned up temporary file: temp_videos/2c58f485-d411-4796-b1a2-4992c0058b9c.mp4
2025-08-18 23:11:43 - INFO - [2c58f485-d411-4796-b1a2-4992c0058b9c] Cleaned up temporary frame directory: temp_videos/2c58f485-d411-4796-b1a2-4992c0058b9c
2025-08-18 23:11:43 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_002.mp4'
2025-08-18 23:11:43 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Video saved to temporary file: temp_videos/77ae1bc5-c6bf-4876-8f52-328824af2913.mp4
2025-08-18 23:11:43 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:11:49 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:11:49 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] 30 frames saved to temp_videos/77ae1bc5-c6bf-4876-8f52-328824af2913
2025-08-18 23:11:50 - INFO - Prompt token length: 2276
2025-08-18 23:11:56 - INFO - Tokens per second: 10.05763431796692, Peak GPU memory MB: 4498.375
2025-08-18 23:11:56 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Inference time: 12.75 seconds, CPU usage: 58.9%, CPU core utilization: [57.3, 49.5, 77.4, 51.4]
2025-08-18 23:11:56 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Cleaned up temporary file: temp_videos/77ae1bc5-c6bf-4876-8f52-328824af2913.mp4
2025-08-18 23:11:56 - INFO - [77ae1bc5-c6bf-4876-8f52-328824af2913] Cleaned up temporary frame directory: temp_videos/77ae1bc5-c6bf-4876-8f52-328824af2913
2025-08-18 23:11:56 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_003.mp4'
2025-08-18 23:11:56 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Video saved to temporary file: temp_videos/7beb0d6c-4fd9-4da6-b736-2f72a5a6565f.mp4
2025-08-18 23:11:56 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:12:01 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:12:01 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] 30 frames saved to temp_videos/7beb0d6c-4fd9-4da6-b736-2f72a5a6565f
2025-08-18 23:12:02 - INFO - Prompt token length: 2276
2025-08-18 23:12:08 - INFO - Tokens per second: 10.362352898648883, Peak GPU memory MB: 4498.375
2025-08-18 23:12:08 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Inference time: 12.63 seconds, CPU usage: 55.6%, CPU core utilization: [45.3, 41.0, 40.3, 95.7]
2025-08-18 23:12:08 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Cleaned up temporary file: temp_videos/7beb0d6c-4fd9-4da6-b736-2f72a5a6565f.mp4
2025-08-18 23:12:08 - INFO - [7beb0d6c-4fd9-4da6-b736-2f72a5a6565f] Cleaned up temporary frame directory: temp_videos/7beb0d6c-4fd9-4da6-b736-2f72a5a6565f
2025-08-18 23:12:09 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_004.mp4'
2025-08-18 23:12:09 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Video saved to temporary file: temp_videos/7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3.mp4
2025-08-18 23:12:09 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:12:14 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:12:14 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] 30 frames saved to temp_videos/7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3
2025-08-18 23:12:14 - INFO - Prompt token length: 2276
2025-08-18 23:12:33 - INFO - Tokens per second: 13.296233255859406, Peak GPU memory MB: 4498.375
2025-08-18 23:12:33 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Inference time: 24.65 seconds, CPU usage: 42.4%, CPU core utilization: [26.8, 21.9, 30.7, 90.2]
2025-08-18 23:12:33 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Cleaned up temporary file: temp_videos/7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3.mp4
2025-08-18 23:12:33 - INFO - [7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3] Cleaned up temporary frame directory: temp_videos/7ad52cc1-a4bc-4a7d-b9cd-a3010ea235b3
2025-08-18 23:12:33 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_005.mp4'
2025-08-18 23:12:33 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Video saved to temporary file: temp_videos/c16b56c5-6d8e-41b3-94cd-7af1f316e289.mp4
2025-08-18 23:12:33 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:12:38 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:12:38 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] 30 frames saved to temp_videos/c16b56c5-6d8e-41b3-94cd-7af1f316e289
2025-08-18 23:12:39 - INFO - Prompt token length: 2276
2025-08-18 23:12:47 - INFO - Tokens per second: 10.711200379469911, Peak GPU memory MB: 4498.375
2025-08-18 23:12:47 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Inference time: 13.55 seconds, CPU usage: 55.0%, CPU core utilization: [41.9, 41.9, 43.0, 92.8]
2025-08-18 23:12:47 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Cleaned up temporary file: temp_videos/c16b56c5-6d8e-41b3-94cd-7af1f316e289.mp4
2025-08-18 23:12:47 - INFO - [c16b56c5-6d8e-41b3-94cd-7af1f316e289] Cleaned up temporary frame directory: temp_videos/c16b56c5-6d8e-41b3-94cd-7af1f316e289
2025-08-18 23:12:47 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_006.mp4'
2025-08-18 23:12:47 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Video saved to temporary file: temp_videos/8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e.mp4
2025-08-18 23:12:47 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:12:53 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:12:53 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] 30 frames saved to temp_videos/8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e
2025-08-18 23:12:54 - INFO - Prompt token length: 2276
2025-08-18 23:13:01 - INFO - Tokens per second: 10.554908172002714, Peak GPU memory MB: 4498.375
2025-08-18 23:13:01 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Inference time: 14.00 seconds, CPU usage: 58.1%, CPU core utilization: [53.2, 60.0, 44.6, 74.4]
2025-08-18 23:13:01 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Cleaned up temporary file: temp_videos/8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e.mp4
2025-08-18 23:13:01 - INFO - [8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e] Cleaned up temporary frame directory: temp_videos/8f69bcd2-297f-4a0b-bd3b-4bbe15bb738e
2025-08-18 23:13:01 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_007.mp4'
2025-08-18 23:13:01 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Video saved to temporary file: temp_videos/070c47c1-530d-48c4-aa90-2074ecf4740c.mp4
2025-08-18 23:13:01 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:13:06 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:13:07 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] 30 frames saved to temp_videos/070c47c1-530d-48c4-aa90-2074ecf4740c
2025-08-18 23:13:07 - INFO - Prompt token length: 2276
2025-08-18 23:13:14 - INFO - Tokens per second: 8.628679137685621, Peak GPU memory MB: 4498.375
2025-08-18 23:13:14 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Inference time: 12.56 seconds, CPU usage: 74.4%, CPU core utilization: [67.5, 68.4, 67.8, 94.0]
2025-08-18 23:13:14 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Cleaned up temporary file: temp_videos/070c47c1-530d-48c4-aa90-2074ecf4740c.mp4
2025-08-18 23:13:14 - INFO - [070c47c1-530d-48c4-aa90-2074ecf4740c] Cleaned up temporary frame directory: temp_videos/070c47c1-530d-48c4-aa90-2074ecf4740c
2025-08-18 23:13:14 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_008.mp4'
2025-08-18 23:13:14 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Video saved to temporary file: temp_videos/8ab3be6f-5e8f-4019-bd95-7b134abba037.mp4
2025-08-18 23:13:14 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:13:19 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:13:19 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] 30 frames saved to temp_videos/8ab3be6f-5e8f-4019-bd95-7b134abba037
2025-08-18 23:13:20 - INFO - Prompt token length: 2276
2025-08-18 23:13:25 - INFO - Tokens per second: 9.15227998451498, Peak GPU memory MB: 4498.375
2025-08-18 23:13:25 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Inference time: 11.11 seconds, CPU usage: 60.6%, CPU core utilization: [65.4, 50.8, 73.7, 52.5]
2025-08-18 23:13:25 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Cleaned up temporary file: temp_videos/8ab3be6f-5e8f-4019-bd95-7b134abba037.mp4
2025-08-18 23:13:25 - INFO - [8ab3be6f-5e8f-4019-bd95-7b134abba037] Cleaned up temporary frame directory: temp_videos/8ab3be6f-5e8f-4019-bd95-7b134abba037
2025-08-18 23:13:25 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_009.mp4'
2025-08-18 23:13:25 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Video saved to temporary file: temp_videos/ec016550-cc85-48d7-b4dc-ba7c5c941861.mp4
2025-08-18 23:13:25 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:13:30 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:13:30 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] 30 frames saved to temp_videos/ec016550-cc85-48d7-b4dc-ba7c5c941861
2025-08-18 23:13:31 - INFO - Prompt token length: 2276
2025-08-18 23:13:38 - INFO - Tokens per second: 10.469246141743787, Peak GPU memory MB: 4498.375
2025-08-18 23:13:38 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Inference time: 12.91 seconds, CPU usage: 56.9%, CPU core utilization: [51.9, 50.0, 82.6, 43.0]
2025-08-18 23:13:38 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Cleaned up temporary file: temp_videos/ec016550-cc85-48d7-b4dc-ba7c5c941861.mp4
2025-08-18 23:13:38 - INFO - [ec016550-cc85-48d7-b4dc-ba7c5c941861] Cleaned up temporary frame directory: temp_videos/ec016550-cc85-48d7-b4dc-ba7c5c941861
2025-08-18 23:13:38 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_010.mp4'
2025-08-18 23:13:38 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Video saved to temporary file: temp_videos/6ce9f890-2260-4d17-b801-b3f9567d0639.mp4
2025-08-18 23:13:38 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:13:43 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:13:43 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] 30 frames saved to temp_videos/6ce9f890-2260-4d17-b801-b3f9567d0639
2025-08-18 23:13:44 - INFO - Prompt token length: 2276
2025-08-18 23:14:02 - INFO - Tokens per second: 13.449126642449913, Peak GPU memory MB: 4498.375
2025-08-18 23:14:02 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Inference time: 24.43 seconds, CPU usage: 42.5%, CPU core utilization: [33.7, 26.9, 85.1, 24.2]
2025-08-18 23:14:02 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Cleaned up temporary file: temp_videos/6ce9f890-2260-4d17-b801-b3f9567d0639.mp4
2025-08-18 23:14:02 - INFO - [6ce9f890-2260-4d17-b801-b3f9567d0639] Cleaned up temporary frame directory: temp_videos/6ce9f890-2260-4d17-b801-b3f9567d0639
2025-08-18 23:14:02 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_011.mp4'
2025-08-18 23:14:02 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Video saved to temporary file: temp_videos/9f0cf22e-856c-4854-9c51-08e35282949b.mp4
2025-08-18 23:14:02 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:14:08 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:14:08 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] 30 frames saved to temp_videos/9f0cf22e-856c-4854-9c51-08e35282949b
2025-08-18 23:14:08 - INFO - Prompt token length: 2276
2025-08-18 23:14:16 - INFO - Tokens per second: 10.74788200235932, Peak GPU memory MB: 4498.375
2025-08-18 23:14:16 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Inference time: 13.56 seconds, CPU usage: 54.7%, CPU core utilization: [41.7, 38.4, 43.0, 95.6]
2025-08-18 23:14:16 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Cleaned up temporary file: temp_videos/9f0cf22e-856c-4854-9c51-08e35282949b.mp4
2025-08-18 23:14:16 - INFO - [9f0cf22e-856c-4854-9c51-08e35282949b] Cleaned up temporary frame directory: temp_videos/9f0cf22e-856c-4854-9c51-08e35282949b
2025-08-18 23:14:16 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_012.mp4'
2025-08-18 23:14:16 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Video saved to temporary file: temp_videos/f0f7ad76-3281-4018-aef1-04b65f01e985.mp4
2025-08-18 23:14:16 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:14:22 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:14:22 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] 30 frames saved to temp_videos/f0f7ad76-3281-4018-aef1-04b65f01e985
2025-08-18 23:14:22 - INFO - Prompt token length: 2276
2025-08-18 23:14:32 - INFO - Tokens per second: 11.649960463588755, Peak GPU memory MB: 4498.375
2025-08-18 23:14:32 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Inference time: 15.87 seconds, CPU usage: 51.9%, CPU core utilization: [50.2, 61.0, 37.1, 59.2]
2025-08-18 23:14:32 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Cleaned up temporary file: temp_videos/f0f7ad76-3281-4018-aef1-04b65f01e985.mp4
2025-08-18 23:14:32 - INFO - [f0f7ad76-3281-4018-aef1-04b65f01e985] Cleaned up temporary frame directory: temp_videos/f0f7ad76-3281-4018-aef1-04b65f01e985
2025-08-18 23:14:32 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_013.mp4'
2025-08-18 23:14:32 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Video saved to temporary file: temp_videos/4afe3f18-927c-4666-bf23-ce5a027f7e75.mp4
2025-08-18 23:14:32 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:14:37 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:14:37 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] 30 frames saved to temp_videos/4afe3f18-927c-4666-bf23-ce5a027f7e75
2025-08-18 23:14:38 - INFO - Prompt token length: 2276
2025-08-18 23:14:56 - INFO - Tokens per second: 13.434648062904184, Peak GPU memory MB: 4498.375
2025-08-18 23:14:56 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Inference time: 24.37 seconds, CPU usage: 43.2%, CPU core utilization: [36.8, 35.2, 67.0, 33.6]
2025-08-18 23:14:56 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Cleaned up temporary file: temp_videos/4afe3f18-927c-4666-bf23-ce5a027f7e75.mp4
2025-08-18 23:14:56 - INFO - [4afe3f18-927c-4666-bf23-ce5a027f7e75] Cleaned up temporary frame directory: temp_videos/4afe3f18-927c-4666-bf23-ce5a027f7e75
2025-08-18 23:14:56 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_014.mp4'
2025-08-18 23:14:56 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Video saved to temporary file: temp_videos/a58897f2-253f-4edb-8fb0-42e61d2983d3.mp4
2025-08-18 23:14:56 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:15:01 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:15:01 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] 30 frames saved to temp_videos/a58897f2-253f-4edb-8fb0-42e61d2983d3
2025-08-18 23:15:02 - INFO - Prompt token length: 2276
2025-08-18 23:15:20 - INFO - Tokens per second: 13.479950074027617, Peak GPU memory MB: 4498.375
2025-08-18 23:15:20 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Inference time: 24.03 seconds, CPU usage: 42.7%, CPU core utilization: [48.2, 24.3, 70.2, 28.1]
2025-08-18 23:15:20 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Cleaned up temporary file: temp_videos/a58897f2-253f-4edb-8fb0-42e61d2983d3.mp4
2025-08-18 23:15:20 - INFO - [a58897f2-253f-4edb-8fb0-42e61d2983d3] Cleaned up temporary frame directory: temp_videos/a58897f2-253f-4edb-8fb0-42e61d2983d3
2025-08-18 23:15:20 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_015.mp4'
2025-08-18 23:15:20 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Video saved to temporary file: temp_videos/b1fcd7a6-a728-473c-a23c-39e959e4fd97.mp4
2025-08-18 23:15:20 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:15:26 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:15:26 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] 30 frames saved to temp_videos/b1fcd7a6-a728-473c-a23c-39e959e4fd97
2025-08-18 23:15:27 - INFO - Prompt token length: 2276
2025-08-18 23:15:36 - INFO - Tokens per second: 11.640350568059489, Peak GPU memory MB: 4498.375
2025-08-18 23:15:36 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Inference time: 15.76 seconds, CPU usage: 52.7%, CPU core utilization: [42.0, 34.5, 36.8, 97.4]
2025-08-18 23:15:36 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Cleaned up temporary file: temp_videos/b1fcd7a6-a728-473c-a23c-39e959e4fd97.mp4
2025-08-18 23:15:36 - INFO - [b1fcd7a6-a728-473c-a23c-39e959e4fd97] Cleaned up temporary frame directory: temp_videos/b1fcd7a6-a728-473c-a23c-39e959e4fd97
2025-08-18 23:15:36 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_016.mp4'
2025-08-18 23:15:36 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Video saved to temporary file: temp_videos/a52d66d8-a802-4df3-95c1-769f488a71ba.mp4
2025-08-18 23:15:36 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:15:42 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:15:42 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] 30 frames saved to temp_videos/a52d66d8-a802-4df3-95c1-769f488a71ba
2025-08-18 23:15:42 - INFO - Prompt token length: 2276
2025-08-18 23:15:50 - INFO - Tokens per second: 11.043868658200097, Peak GPU memory MB: 4498.375
2025-08-18 23:15:50 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Inference time: 14.13 seconds, CPU usage: 54.7%, CPU core utilization: [43.8, 72.0, 41.7, 61.5]
2025-08-18 23:15:50 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Cleaned up temporary file: temp_videos/a52d66d8-a802-4df3-95c1-769f488a71ba.mp4
2025-08-18 23:15:50 - INFO - [a52d66d8-a802-4df3-95c1-769f488a71ba] Cleaned up temporary frame directory: temp_videos/a52d66d8-a802-4df3-95c1-769f488a71ba
2025-08-18 23:15:50 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_017.mp4'
2025-08-18 23:15:50 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Video saved to temporary file: temp_videos/f8bef2f4-f05a-42bc-8d22-ac61ace04740.mp4
2025-08-18 23:15:50 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:15:56 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:15:56 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] 30 frames saved to temp_videos/f8bef2f4-f05a-42bc-8d22-ac61ace04740
2025-08-18 23:15:57 - INFO - Prompt token length: 2276
2025-08-18 23:16:04 - INFO - Tokens per second: 10.51133078300418, Peak GPU memory MB: 4498.375
2025-08-18 23:16:04 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Inference time: 13.23 seconds, CPU usage: 54.4%, CPU core utilization: [44.0, 48.0, 42.7, 82.8]
2025-08-18 23:16:04 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Cleaned up temporary file: temp_videos/f8bef2f4-f05a-42bc-8d22-ac61ace04740.mp4
2025-08-18 23:16:04 - INFO - [f8bef2f4-f05a-42bc-8d22-ac61ace04740] Cleaned up temporary frame directory: temp_videos/f8bef2f4-f05a-42bc-8d22-ac61ace04740
2025-08-18 23:16:04 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_018.mp4'
2025-08-18 23:16:04 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Video saved to temporary file: temp_videos/c34da43d-575f-4b66-8d40-e83079b38c77.mp4
2025-08-18 23:16:04 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:16:09 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:16:09 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] 30 frames saved to temp_videos/c34da43d-575f-4b66-8d40-e83079b38c77
2025-08-18 23:16:09 - INFO - Prompt token length: 2276
2025-08-18 23:16:17 - INFO - Tokens per second: 10.98742027777536, Peak GPU memory MB: 4498.375
2025-08-18 23:16:17 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Inference time: 13.31 seconds, CPU usage: 53.7%, CPU core utilization: [42.9, 47.3, 39.1, 85.5]
2025-08-18 23:16:17 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Cleaned up temporary file: temp_videos/c34da43d-575f-4b66-8d40-e83079b38c77.mp4
2025-08-18 23:16:17 - INFO - [c34da43d-575f-4b66-8d40-e83079b38c77] Cleaned up temporary frame directory: temp_videos/c34da43d-575f-4b66-8d40-e83079b38c77
2025-08-18 23:16:17 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_019.mp4'
2025-08-18 23:16:17 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Video saved to temporary file: temp_videos/1ebe2e39-e0ef-480c-bc3b-0913c92da0b2.mp4
2025-08-18 23:16:17 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:16:23 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:16:23 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] 30 frames saved to temp_videos/1ebe2e39-e0ef-480c-bc3b-0913c92da0b2
2025-08-18 23:16:23 - INFO - Prompt token length: 2276
2025-08-18 23:16:31 - INFO - Tokens per second: 10.921069856446843, Peak GPU memory MB: 4498.375
2025-08-18 23:16:31 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Inference time: 13.78 seconds, CPU usage: 54.9%, CPU core utilization: [90.6, 49.1, 41.1, 38.6]
2025-08-18 23:16:31 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Cleaned up temporary file: temp_videos/1ebe2e39-e0ef-480c-bc3b-0913c92da0b2.mp4
2025-08-18 23:16:31 - INFO - [1ebe2e39-e0ef-480c-bc3b-0913c92da0b2] Cleaned up temporary frame directory: temp_videos/1ebe2e39-e0ef-480c-bc3b-0913c92da0b2
2025-08-18 23:16:31 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_020.mp4'
2025-08-18 23:16:31 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Video saved to temporary file: temp_videos/47b39fc3-3bcb-4adb-8a5c-48892b8d8282.mp4
2025-08-18 23:16:31 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:16:36 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:16:36 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] 30 frames saved to temp_videos/47b39fc3-3bcb-4adb-8a5c-48892b8d8282
2025-08-18 23:16:37 - INFO - Prompt token length: 2276
2025-08-18 23:16:55 - INFO - Tokens per second: 13.491381583278928, Peak GPU memory MB: 4498.375
2025-08-18 23:16:55 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Inference time: 24.34 seconds, CPU usage: 43.2%, CPU core utilization: [40.0, 25.3, 79.9, 27.6]
2025-08-18 23:16:55 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Cleaned up temporary file: temp_videos/47b39fc3-3bcb-4adb-8a5c-48892b8d8282.mp4
2025-08-18 23:16:55 - INFO - [47b39fc3-3bcb-4adb-8a5c-48892b8d8282] Cleaned up temporary frame directory: temp_videos/47b39fc3-3bcb-4adb-8a5c-48892b8d8282
2025-08-18 23:16:55 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_021.mp4'
2025-08-18 23:16:55 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Video saved to temporary file: temp_videos/5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c.mp4
2025-08-18 23:16:55 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:17:01 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:17:01 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] 30 frames saved to temp_videos/5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c
2025-08-18 23:17:01 - INFO - Prompt token length: 2276
2025-08-18 23:17:09 - INFO - Tokens per second: 10.918759797926471, Peak GPU memory MB: 4498.375
2025-08-18 23:17:09 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Inference time: 13.62 seconds, CPU usage: 53.1%, CPU core utilization: [84.7, 43.6, 46.6, 37.5]
2025-08-18 23:17:09 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Cleaned up temporary file: temp_videos/5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c.mp4
2025-08-18 23:17:09 - INFO - [5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c] Cleaned up temporary frame directory: temp_videos/5a18f5db-72b7-4032-8c8d-8b4cca9f8e0c
2025-08-18 23:17:09 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_022.mp4'
2025-08-18 23:17:09 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Video saved to temporary file: temp_videos/e867080e-8bdb-4121-950e-dfc53806cefa.mp4
2025-08-18 23:17:09 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:17:14 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:17:14 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] 30 frames saved to temp_videos/e867080e-8bdb-4121-950e-dfc53806cefa
2025-08-18 23:17:15 - INFO - Prompt token length: 2276
2025-08-18 23:17:22 - INFO - Tokens per second: 10.866962165814611, Peak GPU memory MB: 4498.375
2025-08-18 23:17:22 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Inference time: 12.84 seconds, CPU usage: 54.1%, CPU core utilization: [52.7, 52.2, 63.9, 47.9]
2025-08-18 23:17:22 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Cleaned up temporary file: temp_videos/e867080e-8bdb-4121-950e-dfc53806cefa.mp4
2025-08-18 23:17:22 - INFO - [e867080e-8bdb-4121-950e-dfc53806cefa] Cleaned up temporary frame directory: temp_videos/e867080e-8bdb-4121-950e-dfc53806cefa
2025-08-18 23:17:22 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_023.mp4'
2025-08-18 23:17:22 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Video saved to temporary file: temp_videos/a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b.mp4
2025-08-18 23:17:22 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:17:27 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:17:27 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] 30 frames saved to temp_videos/a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b
2025-08-18 23:17:27 - INFO - Prompt token length: 2276
2025-08-18 23:17:38 - INFO - Tokens per second: 12.056567900835331, Peak GPU memory MB: 4498.375
2025-08-18 23:17:38 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Inference time: 16.07 seconds, CPU usage: 48.6%, CPU core utilization: [50.8, 76.4, 33.9, 33.1]
2025-08-18 23:17:38 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Cleaned up temporary file: temp_videos/a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b.mp4
2025-08-18 23:17:38 - INFO - [a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b] Cleaned up temporary frame directory: temp_videos/a33cdf5e-d2a0-4fbc-b02d-2cf19938ef2b
2025-08-18 23:17:38 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_024.mp4'
2025-08-18 23:17:38 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Video saved to temporary file: temp_videos/2c7eb728-fd3b-4979-abff-ded2bcfc9498.mp4
2025-08-18 23:17:38 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:17:44 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:17:44 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] 30 frames saved to temp_videos/2c7eb728-fd3b-4979-abff-ded2bcfc9498
2025-08-18 23:17:44 - INFO - Prompt token length: 2276
2025-08-18 23:18:03 - INFO - Tokens per second: 13.381210503864766, Peak GPU memory MB: 4498.375
2025-08-18 23:18:03 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Inference time: 24.63 seconds, CPU usage: 43.7%, CPU core utilization: [27.6, 45.4, 28.2, 73.7]
2025-08-18 23:18:03 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Cleaned up temporary file: temp_videos/2c7eb728-fd3b-4979-abff-ded2bcfc9498.mp4
2025-08-18 23:18:03 - INFO - [2c7eb728-fd3b-4979-abff-ded2bcfc9498] Cleaned up temporary frame directory: temp_videos/2c7eb728-fd3b-4979-abff-ded2bcfc9498
2025-08-18 23:18:03 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_025.mp4'
2025-08-18 23:18:03 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Video saved to temporary file: temp_videos/cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc.mp4
2025-08-18 23:18:03 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:18:08 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:18:09 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] 30 frames saved to temp_videos/cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc
2025-08-18 23:18:09 - INFO - Prompt token length: 2276
2025-08-18 23:18:18 - INFO - Tokens per second: 11.34225179666489, Peak GPU memory MB: 4498.375
2025-08-18 23:18:18 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Inference time: 14.62 seconds, CPU usage: 54.3%, CPU core utilization: [39.2, 45.2, 91.6, 41.1]
2025-08-18 23:18:18 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Cleaned up temporary file: temp_videos/cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc.mp4
2025-08-18 23:18:18 - INFO - [cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc] Cleaned up temporary frame directory: temp_videos/cfd937d8-7e9e-4e1f-b7a8-12dda7c9a0fc
2025-08-18 23:18:18 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_026.mp4'
2025-08-18 23:18:18 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Video saved to temporary file: temp_videos/81527b03-bb00-4863-acd0-a08fdf851919.mp4
2025-08-18 23:18:18 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:18:23 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:18:23 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] 30 frames saved to temp_videos/81527b03-bb00-4863-acd0-a08fdf851919
2025-08-18 23:18:24 - INFO - Prompt token length: 2276
2025-08-18 23:18:30 - INFO - Tokens per second: 10.428299716256006, Peak GPU memory MB: 4498.375
2025-08-18 23:18:30 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Inference time: 12.61 seconds, CPU usage: 57.1%, CPU core utilization: [71.9, 46.6, 61.8, 48.1]
2025-08-18 23:18:30 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Cleaned up temporary file: temp_videos/81527b03-bb00-4863-acd0-a08fdf851919.mp4
2025-08-18 23:18:30 - INFO - [81527b03-bb00-4863-acd0-a08fdf851919] Cleaned up temporary frame directory: temp_videos/81527b03-bb00-4863-acd0-a08fdf851919
2025-08-18 23:18:30 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_027.mp4'
2025-08-18 23:18:30 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Video saved to temporary file: temp_videos/e5e0067a-db6e-455c-a1f8-c473cdcecc0f.mp4
2025-08-18 23:18:30 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:18:36 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:18:36 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] 30 frames saved to temp_videos/e5e0067a-db6e-455c-a1f8-c473cdcecc0f
2025-08-18 23:18:36 - INFO - Prompt token length: 2276
2025-08-18 23:18:44 - INFO - Tokens per second: 10.689614725622825, Peak GPU memory MB: 4498.375
2025-08-18 23:18:44 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Inference time: 13.57 seconds, CPU usage: 56.5%, CPU core utilization: [41.5, 47.4, 49.0, 88.1]
2025-08-18 23:18:44 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Cleaned up temporary file: temp_videos/e5e0067a-db6e-455c-a1f8-c473cdcecc0f.mp4
2025-08-18 23:18:44 - INFO - [e5e0067a-db6e-455c-a1f8-c473cdcecc0f] Cleaned up temporary frame directory: temp_videos/e5e0067a-db6e-455c-a1f8-c473cdcecc0f
2025-08-18 23:18:44 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_028.mp4'
2025-08-18 23:18:44 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Video saved to temporary file: temp_videos/c8960966-5214-4ce4-ad51-a448df43cdd2.mp4
2025-08-18 23:18:44 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:18:50 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:18:50 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] 30 frames saved to temp_videos/c8960966-5214-4ce4-ad51-a448df43cdd2
2025-08-18 23:18:50 - INFO - Prompt token length: 2276
2025-08-18 23:19:09 - INFO - Tokens per second: 13.483402737231337, Peak GPU memory MB: 4498.375
2025-08-18 23:19:09 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Inference time: 24.66 seconds, CPU usage: 43.9%, CPU core utilization: [63.8, 27.2, 57.7, 27.0]
2025-08-18 23:19:09 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Cleaned up temporary file: temp_videos/c8960966-5214-4ce4-ad51-a448df43cdd2.mp4
2025-08-18 23:19:09 - INFO - [c8960966-5214-4ce4-ad51-a448df43cdd2] Cleaned up temporary frame directory: temp_videos/c8960966-5214-4ce4-ad51-a448df43cdd2
2025-08-18 23:19:09 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_029.mp4'
2025-08-18 23:19:09 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Video saved to temporary file: temp_videos/5e72c95d-a592-4347-99af-185f49d942cb.mp4
2025-08-18 23:19:09 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:19:14 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:19:14 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] 30 frames saved to temp_videos/5e72c95d-a592-4347-99af-185f49d942cb
2025-08-18 23:19:15 - INFO - Prompt token length: 2276
2025-08-18 23:19:21 - INFO - Tokens per second: 10.14359586210809, Peak GPU memory MB: 4498.375
2025-08-18 23:19:21 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Inference time: 12.20 seconds, CPU usage: 57.1%, CPU core utilization: [64.5, 58.1, 44.6, 61.3]
2025-08-18 23:19:21 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Cleaned up temporary file: temp_videos/5e72c95d-a592-4347-99af-185f49d942cb.mp4
2025-08-18 23:19:21 - INFO - [5e72c95d-a592-4347-99af-185f49d942cb] Cleaned up temporary frame directory: temp_videos/5e72c95d-a592-4347-99af-185f49d942cb
2025-08-18 23:19:21 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_030.mp4'
2025-08-18 23:19:21 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Video saved to temporary file: temp_videos/95cedc5c-e22d-4383-920b-43c033076cf1.mp4
2025-08-18 23:19:21 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:19:27 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:19:28 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] 30 frames saved to temp_videos/95cedc5c-e22d-4383-920b-43c033076cf1
2025-08-18 23:19:28 - INFO - Prompt token length: 2276
2025-08-18 23:19:36 - INFO - Tokens per second: 10.746648641485438, Peak GPU memory MB: 4498.375
2025-08-18 23:19:36 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Inference time: 14.55 seconds, CPU usage: 58.5%, CPU core utilization: [52.2, 82.8, 47.5, 51.5]
2025-08-18 23:19:36 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Cleaned up temporary file: temp_videos/95cedc5c-e22d-4383-920b-43c033076cf1.mp4
2025-08-18 23:19:36 - INFO - [95cedc5c-e22d-4383-920b-43c033076cf1] Cleaned up temporary frame directory: temp_videos/95cedc5c-e22d-4383-920b-43c033076cf1
2025-08-18 23:19:36 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_031.mp4'
2025-08-18 23:19:36 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Video saved to temporary file: temp_videos/26b3ebdf-7333-440c-ab40-1395e2f8b4ac.mp4
2025-08-18 23:19:36 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:19:42 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:19:42 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] 30 frames saved to temp_videos/26b3ebdf-7333-440c-ab40-1395e2f8b4ac
2025-08-18 23:19:42 - INFO - Prompt token length: 2276
2025-08-18 23:19:49 - INFO - Tokens per second: 10.552761688015028, Peak GPU memory MB: 4498.375
2025-08-18 23:19:49 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Inference time: 13.73 seconds, CPU usage: 57.5%, CPU core utilization: [85.1, 49.1, 51.1, 44.8]
2025-08-18 23:19:49 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Cleaned up temporary file: temp_videos/26b3ebdf-7333-440c-ab40-1395e2f8b4ac.mp4
2025-08-18 23:19:49 - INFO - [26b3ebdf-7333-440c-ab40-1395e2f8b4ac] Cleaned up temporary frame directory: temp_videos/26b3ebdf-7333-440c-ab40-1395e2f8b4ac
2025-08-18 23:19:49 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_032.mp4'
2025-08-18 23:19:49 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Video saved to temporary file: temp_videos/e6be423e-a8f1-4c32-af6c-53d343f2f396.mp4
2025-08-18 23:19:49 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:19:55 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:19:55 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] 30 frames saved to temp_videos/e6be423e-a8f1-4c32-af6c-53d343f2f396
2025-08-18 23:19:56 - INFO - Prompt token length: 2276
2025-08-18 23:20:14 - INFO - Tokens per second: 13.374680716381132, Peak GPU memory MB: 4498.375
2025-08-18 23:20:14 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Inference time: 24.96 seconds, CPU usage: 44.3%, CPU core utilization: [25.3, 23.5, 32.3, 96.0]
2025-08-18 23:20:14 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Cleaned up temporary file: temp_videos/e6be423e-a8f1-4c32-af6c-53d343f2f396.mp4
2025-08-18 23:20:14 - INFO - [e6be423e-a8f1-4c32-af6c-53d343f2f396] Cleaned up temporary frame directory: temp_videos/e6be423e-a8f1-4c32-af6c-53d343f2f396
2025-08-18 23:20:14 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_033.mp4'
2025-08-18 23:20:14 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Video saved to temporary file: temp_videos/2ac6b08b-e900-43c1-ae17-ff2ecc5892a4.mp4
2025-08-18 23:20:14 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:20:19 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:20:19 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] 30 frames saved to temp_videos/2ac6b08b-e900-43c1-ae17-ff2ecc5892a4
2025-08-18 23:20:20 - INFO - Prompt token length: 2276
2025-08-18 23:20:25 - INFO - Tokens per second: 8.750997375438747, Peak GPU memory MB: 4498.375
2025-08-18 23:20:25 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Inference time: 10.46 seconds, CPU usage: 59.6%, CPU core utilization: [47.0, 86.9, 54.7, 49.6]
2025-08-18 23:20:25 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Cleaned up temporary file: temp_videos/2ac6b08b-e900-43c1-ae17-ff2ecc5892a4.mp4
2025-08-18 23:20:25 - INFO - [2ac6b08b-e900-43c1-ae17-ff2ecc5892a4] Cleaned up temporary frame directory: temp_videos/2ac6b08b-e900-43c1-ae17-ff2ecc5892a4
2025-08-18 23:20:25 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_034.mp4'
2025-08-18 23:20:25 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Video saved to temporary file: temp_videos/b89a7d28-3953-4062-b0ab-66fded3cf1c3.mp4
2025-08-18 23:20:25 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:20:30 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:20:30 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] 30 frames saved to temp_videos/b89a7d28-3953-4062-b0ab-66fded3cf1c3
2025-08-18 23:20:31 - INFO - Prompt token length: 2276
2025-08-18 23:20:40 - INFO - Tokens per second: 11.600796413969313, Peak GPU memory MB: 4498.375
2025-08-18 23:20:40 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Inference time: 14.61 seconds, CPU usage: 50.2%, CPU core utilization: [37.3, 59.9, 38.3, 65.4]
2025-08-18 23:20:40 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Cleaned up temporary file: temp_videos/b89a7d28-3953-4062-b0ab-66fded3cf1c3.mp4
2025-08-18 23:20:40 - INFO - [b89a7d28-3953-4062-b0ab-66fded3cf1c3] Cleaned up temporary frame directory: temp_videos/b89a7d28-3953-4062-b0ab-66fded3cf1c3
2025-08-18 23:20:40 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_035.mp4'
2025-08-18 23:20:40 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Video saved to temporary file: temp_videos/fa74f0b2-3f33-423b-a4f7-8608c214c4b7.mp4
2025-08-18 23:20:40 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:20:46 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:20:46 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] 30 frames saved to temp_videos/fa74f0b2-3f33-423b-a4f7-8608c214c4b7
2025-08-18 23:20:46 - INFO - Prompt token length: 2276
2025-08-18 23:21:05 - INFO - Tokens per second: 13.475444822957598, Peak GPU memory MB: 4498.375
2025-08-18 23:21:05 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Inference time: 25.26 seconds, CPU usage: 45.0%, CPU core utilization: [57.4, 30.4, 64.5, 27.5]
2025-08-18 23:21:05 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Cleaned up temporary file: temp_videos/fa74f0b2-3f33-423b-a4f7-8608c214c4b7.mp4
2025-08-18 23:21:05 - INFO - [fa74f0b2-3f33-423b-a4f7-8608c214c4b7] Cleaned up temporary frame directory: temp_videos/fa74f0b2-3f33-423b-a4f7-8608c214c4b7
2025-08-18 23:21:05 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_036.mp4'
2025-08-18 23:21:05 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Video saved to temporary file: temp_videos/ece00724-8ed0-4af0-95be-793a15dc9c21.mp4
2025-08-18 23:21:05 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:21:10 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:21:10 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] 30 frames saved to temp_videos/ece00724-8ed0-4af0-95be-793a15dc9c21
2025-08-18 23:21:11 - INFO - Prompt token length: 2276
2025-08-18 23:21:17 - INFO - Tokens per second: 10.181369513872784, Peak GPU memory MB: 4498.375
2025-08-18 23:21:17 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Inference time: 11.77 seconds, CPU usage: 56.8%, CPU core utilization: [41.9, 41.8, 92.1, 50.9]
2025-08-18 23:21:17 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Cleaned up temporary file: temp_videos/ece00724-8ed0-4af0-95be-793a15dc9c21.mp4
2025-08-18 23:21:17 - INFO - [ece00724-8ed0-4af0-95be-793a15dc9c21] Cleaned up temporary frame directory: temp_videos/ece00724-8ed0-4af0-95be-793a15dc9c21
2025-08-18 23:21:17 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_037.mp4'
2025-08-18 23:21:17 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Video saved to temporary file: temp_videos/6c0391c7-6b90-48b0-aa61-208a38f34896.mp4
2025-08-18 23:21:17 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:21:22 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:21:22 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] 30 frames saved to temp_videos/6c0391c7-6b90-48b0-aa61-208a38f34896
2025-08-18 23:21:22 - INFO - Prompt token length: 2276
2025-08-18 23:21:41 - INFO - Tokens per second: 13.31561753455536, Peak GPU memory MB: 4498.375
2025-08-18 23:21:41 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Inference time: 24.41 seconds, CPU usage: 42.8%, CPU core utilization: [24.5, 26.3, 27.6, 92.7]
2025-08-18 23:21:41 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Cleaned up temporary file: temp_videos/6c0391c7-6b90-48b0-aa61-208a38f34896.mp4
2025-08-18 23:21:41 - INFO - [6c0391c7-6b90-48b0-aa61-208a38f34896] Cleaned up temporary frame directory: temp_videos/6c0391c7-6b90-48b0-aa61-208a38f34896
2025-08-18 23:21:41 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_038.mp4'
2025-08-18 23:21:41 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Video saved to temporary file: temp_videos/5c94a1b3-c973-49ff-ba0c-0064649ef96a.mp4
2025-08-18 23:21:41 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:21:46 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:21:46 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] 30 frames saved to temp_videos/5c94a1b3-c973-49ff-ba0c-0064649ef96a
2025-08-18 23:21:46 - INFO - Prompt token length: 2276
2025-08-18 23:22:05 - INFO - Tokens per second: 13.391948929733484, Peak GPU memory MB: 4498.375
2025-08-18 23:22:05 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Inference time: 23.62 seconds, CPU usage: 41.4%, CPU core utilization: [26.0, 21.7, 23.0, 95.0]
2025-08-18 23:22:05 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Cleaned up temporary file: temp_videos/5c94a1b3-c973-49ff-ba0c-0064649ef96a.mp4
2025-08-18 23:22:05 - INFO - [5c94a1b3-c973-49ff-ba0c-0064649ef96a] Cleaned up temporary frame directory: temp_videos/5c94a1b3-c973-49ff-ba0c-0064649ef96a
2025-08-18 23:22:05 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_039.mp4'
2025-08-18 23:22:05 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Video saved to temporary file: temp_videos/5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f.mp4
2025-08-18 23:22:05 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:22:11 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:22:11 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] 30 frames saved to temp_videos/5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f
2025-08-18 23:22:11 - INFO - Prompt token length: 2276
2025-08-18 23:22:30 - INFO - Tokens per second: 13.257980068291804, Peak GPU memory MB: 4498.375
2025-08-18 23:22:30 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Inference time: 24.98 seconds, CPU usage: 44.0%, CPU core utilization: [30.0, 85.9, 27.0, 33.1]
2025-08-18 23:22:30 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Cleaned up temporary file: temp_videos/5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f.mp4
2025-08-18 23:22:30 - INFO - [5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f] Cleaned up temporary frame directory: temp_videos/5f4b1eea-01e8-4e1b-aa03-89b029ebcd0f
2025-08-18 23:22:30 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_040.mp4'
2025-08-18 23:22:30 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Video saved to temporary file: temp_videos/160706cc-ca43-47e3-888a-b3980e406009.mp4
2025-08-18 23:22:30 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:22:36 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:22:36 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] 30 frames saved to temp_videos/160706cc-ca43-47e3-888a-b3980e406009
2025-08-18 23:22:37 - INFO - Prompt token length: 2276
2025-08-18 23:22:55 - INFO - Tokens per second: 13.47823802494779, Peak GPU memory MB: 4498.375
2025-08-18 23:22:55 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Inference time: 25.22 seconds, CPU usage: 45.0%, CPU core utilization: [59.7, 42.4, 48.5, 29.5]
2025-08-18 23:22:55 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Cleaned up temporary file: temp_videos/160706cc-ca43-47e3-888a-b3980e406009.mp4
2025-08-18 23:22:55 - INFO - [160706cc-ca43-47e3-888a-b3980e406009] Cleaned up temporary frame directory: temp_videos/160706cc-ca43-47e3-888a-b3980e406009
2025-08-18 23:22:55 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_041.mp4'
2025-08-18 23:22:55 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Video saved to temporary file: temp_videos/b72c2383-0bd4-47c1-8045-c4ce316a5528.mp4
2025-08-18 23:22:55 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:23:00 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:23:00 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] 30 frames saved to temp_videos/b72c2383-0bd4-47c1-8045-c4ce316a5528
2025-08-18 23:23:01 - INFO - Prompt token length: 2276
2025-08-18 23:23:06 - INFO - Tokens per second: 9.739024302972952, Peak GPU memory MB: 4498.375
2025-08-18 23:23:06 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Inference time: 10.98 seconds, CPU usage: 57.1%, CPU core utilization: [41.5, 45.6, 92.8, 48.6]
2025-08-18 23:23:06 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Cleaned up temporary file: temp_videos/b72c2383-0bd4-47c1-8045-c4ce316a5528.mp4
2025-08-18 23:23:06 - INFO - [b72c2383-0bd4-47c1-8045-c4ce316a5528] Cleaned up temporary frame directory: temp_videos/b72c2383-0bd4-47c1-8045-c4ce316a5528
2025-08-18 23:23:06 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_042.mp4'
2025-08-18 23:23:06 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Video saved to temporary file: temp_videos/21b335d9-e432-4a1e-b7ed-cd619a6f97c5.mp4
2025-08-18 23:23:06 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:23:12 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:23:12 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] 30 frames saved to temp_videos/21b335d9-e432-4a1e-b7ed-cd619a6f97c5
2025-08-18 23:23:13 - INFO - Prompt token length: 2276
2025-08-18 23:23:31 - INFO - Tokens per second: 13.462089064329856, Peak GPU memory MB: 4498.375
2025-08-18 23:23:31 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Inference time: 24.58 seconds, CPU usage: 43.8%, CPU core utilization: [36.6, 25.6, 82.1, 30.8]
2025-08-18 23:23:31 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Cleaned up temporary file: temp_videos/21b335d9-e432-4a1e-b7ed-cd619a6f97c5.mp4
2025-08-18 23:23:31 - INFO - [21b335d9-e432-4a1e-b7ed-cd619a6f97c5] Cleaned up temporary frame directory: temp_videos/21b335d9-e432-4a1e-b7ed-cd619a6f97c5
2025-08-18 23:23:31 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_043.mp4'
2025-08-18 23:23:31 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Video saved to temporary file: temp_videos/cf57af90-5f0c-4981-a92e-ac1f84763e53.mp4
2025-08-18 23:23:31 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:23:37 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:23:38 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] 30 frames saved to temp_videos/cf57af90-5f0c-4981-a92e-ac1f84763e53
2025-08-18 23:23:38 - INFO - Prompt token length: 2276
2025-08-18 23:23:44 - INFO - Tokens per second: 10.093422721507519, Peak GPU memory MB: 4498.375
2025-08-18 23:23:44 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Inference time: 13.12 seconds, CPU usage: 59.8%, CPU core utilization: [88.6, 48.6, 49.1, 52.8]
2025-08-18 23:23:44 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Cleaned up temporary file: temp_videos/cf57af90-5f0c-4981-a92e-ac1f84763e53.mp4
2025-08-18 23:23:44 - INFO - [cf57af90-5f0c-4981-a92e-ac1f84763e53] Cleaned up temporary frame directory: temp_videos/cf57af90-5f0c-4981-a92e-ac1f84763e53
2025-08-18 23:23:44 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_044.mp4'
2025-08-18 23:23:44 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Video saved to temporary file: temp_videos/65e78a63-a0ee-429e-b30c-b1a284f71bcb.mp4
2025-08-18 23:23:44 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:23:50 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:23:51 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] 30 frames saved to temp_videos/65e78a63-a0ee-429e-b30c-b1a284f71bcb
2025-08-18 23:23:51 - INFO - Prompt token length: 2276
2025-08-18 23:23:58 - INFO - Tokens per second: 10.718624704506539, Peak GPU memory MB: 4498.375
2025-08-18 23:23:58 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Inference time: 14.04 seconds, CPU usage: 57.9%, CPU core utilization: [49.1, 82.8, 46.4, 53.1]
2025-08-18 23:23:58 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Cleaned up temporary file: temp_videos/65e78a63-a0ee-429e-b30c-b1a284f71bcb.mp4
2025-08-18 23:23:58 - INFO - [65e78a63-a0ee-429e-b30c-b1a284f71bcb] Cleaned up temporary frame directory: temp_videos/65e78a63-a0ee-429e-b30c-b1a284f71bcb
2025-08-18 23:23:58 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_045.mp4'
2025-08-18 23:23:58 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Video saved to temporary file: temp_videos/132ebe35-6429-4e7f-a194-8641fbdb9516.mp4
2025-08-18 23:23:58 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:24:03 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:24:03 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] 30 frames saved to temp_videos/132ebe35-6429-4e7f-a194-8641fbdb9516
2025-08-18 23:24:04 - INFO - Prompt token length: 2276
2025-08-18 23:24:12 - INFO - Tokens per second: 11.17376621816953, Peak GPU memory MB: 4498.375
2025-08-18 23:24:12 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Inference time: 13.78 seconds, CPU usage: 51.4%, CPU core utilization: [35.8, 78.6, 39.3, 52.0]
2025-08-18 23:24:12 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Cleaned up temporary file: temp_videos/132ebe35-6429-4e7f-a194-8641fbdb9516.mp4
2025-08-18 23:24:12 - INFO - [132ebe35-6429-4e7f-a194-8641fbdb9516] Cleaned up temporary frame directory: temp_videos/132ebe35-6429-4e7f-a194-8641fbdb9516
2025-08-18 23:24:12 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_046.mp4'
2025-08-18 23:24:12 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Video saved to temporary file: temp_videos/966cd606-8ad8-4bc5-bb51-1c38cb64d84c.mp4
2025-08-18 23:24:12 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:24:17 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:24:17 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] 30 frames saved to temp_videos/966cd606-8ad8-4bc5-bb51-1c38cb64d84c
2025-08-18 23:24:18 - INFO - Prompt token length: 2276
2025-08-18 23:24:22 - INFO - Tokens per second: 8.889578335077823, Peak GPU memory MB: 4498.375
2025-08-18 23:24:22 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Inference time: 10.13 seconds, CPU usage: 57.5%, CPU core utilization: [86.8, 47.6, 52.0, 43.7]
2025-08-18 23:24:22 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Cleaned up temporary file: temp_videos/966cd606-8ad8-4bc5-bb51-1c38cb64d84c.mp4
2025-08-18 23:24:22 - INFO - [966cd606-8ad8-4bc5-bb51-1c38cb64d84c] Cleaned up temporary frame directory: temp_videos/966cd606-8ad8-4bc5-bb51-1c38cb64d84c
2025-08-18 23:24:22 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Received new video inference request. Prompt: 'Please describe the video.', Video: 'messi_part_047.mp4'
2025-08-18 23:24:22 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Video saved to temporary file: temp_videos/cc533dcc-5c04-4d7a-b6fc-cd0127815c18.mp4
2025-08-18 23:24:22 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Extracting frames using method: uniform, rate/threshold: 30
2025-08-18 23:24:25 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Extracted 30 frames successfully. Saving to temporary files...
2025-08-18 23:24:25 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] 30 frames saved to temp_videos/cc533dcc-5c04-4d7a-b6fc-cd0127815c18
2025-08-18 23:24:25 - INFO - Prompt token length: 2276
2025-08-18 23:24:32 - INFO - Tokens per second: 10.1511797285819, Peak GPU memory MB: 4498.375
2025-08-18 23:24:32 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Inference time: 9.24 seconds, CPU usage: 46.0%, CPU core utilization: [36.6, 28.2, 86.3, 32.9]
2025-08-18 23:24:32 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Cleaned up temporary file: temp_videos/cc533dcc-5c04-4d7a-b6fc-cd0127815c18.mp4
2025-08-18 23:24:32 - INFO - [cc533dcc-5c04-4d7a-b6fc-cd0127815c18] Cleaned up temporary frame directory: temp_videos/cc533dcc-5c04-4d7a-b6fc-cd0127815c18
|