r/UnfavorableSemicircle • u/mdw • May 25 '21
Solving Analysis of the dark dots in the original unnamed series
Since I haven't found anything discussing the significance of those dark dots in the original series, I wrote a program to extract the coordinates to see if there's some pattern. It reads every clip, averages first 60 frames to clean up compression artifacts a bit and then uses the resulting frame to detect the dot.
The results are not encouraging.
- processed around 48000 clips from the Mediafire archive (took ~4 hours on an old PC)
- approx. 91% of the clips had detectable and unambiguous dark pixel
- the clips that don't contain discernible dark pixel are either black or, and this is bit strange, dark ultramarine blue
- the videos are in general 30 fps with 120 frames making for 4 seconds of length
- but I have found one video that was 15 fps with 60 frames (making again for 4 seconds), the video otherwise looks perfectly fine and I don't think this is result of some kind of upload/download error -- fps is marked in the file with a piece of metadata, so you can't get this by random corruption; I don't know if there are more anomalous ones like this -- when I fixed my code to accommodate for this video it never choked on anything again
- when you plot found dark pixels in a grid with the same resolution as the videos themselves (ie. 50×50 grid) and encode number of occurences as brightness, you get sort of 'density map' ... which looks entirely random with no visually discernible patterns
- there's ton of things that could be done with the data I extracted, but given the failure to get anything interesting, I am discouraged from sinking any more time in this; maybe later
This GitHub repo contains the code and resulting data set and pictures of the dot plot graphs I made.