Hi,
I am logging a list of images and a list of videos using:
wandb_videos = [wandb.Video(np.stack([v]*3, 1), fps=max(1, int(50 / video_duration)))
for i, v in enumerate(videos)]
wandb.log({f"train_videos/subj_{subj_id}": wandb_videos}, step=self.current_epoch)
This code worked fine up until earlier today.
I recall one of my runs print red wandb warnings on my console, but I can’t recall exactly what. Since my media was not being displayed in the browser, I reran my script to see if it solved the issue. None of my runs are displaying videos despite the media being visibly saved in my offline wandb directory.
One the run’s debug-internal.log I spotted no errors, but the following warning keep appearing every once in a while under different ‘Step <’ values:
2025-07-01 01:12:07,328 WARNING HandlerThread:226515 [handler.py:handle_request_partial_history():551] Step 0 < 5. Dropping entry: {'train_videos/subj_4190762': {'_type': 'videos', 'count': 14, 'videos': [{'_type': 'video-file', 'sha256': '2b2a8ae794a5ff43adfa7b988cc402aef199695360330d04112e4844baa77362', 'size': 659937, 'path': 'media/videos/train_videos/subj_4190762_5_2b2a8ae794a5ff43adfa.gif', 'width': 208, 'height': 420, 'caption': 'Slice:0, PSNR:14.72'}, ... .
There is also the following warning early during the log file, but unsure if related:
2025-07-01 01:10:07,122 WARNING SenderThread:226515 [sender.py:send_metric():1329] Seen metric with glob (shouldn't happen)
Why could this be happening? It is rather annoying to not be able to access my media anymore on the browser. I have not changed anything in the logging side of the code.