I have a friend whose job is to watch a video and take note of times when something happens on the screen. Most of the time it's just a blue/white screen, so there is very little change. It is an outside video, so the color changes as the day goes by. It's also a snowy area, so there is little differentiation between sky and ground.
I'm wondering if there's a way to easily find when things are happening on the screen without sitting and watching it completely. I have thought of two methods for doing this.
The video is encoded as H.264, which uses delta compression. Is there a tool that graphs the amount of data used at a particular frame? The spikes in bitrate would indicate activity on the video. This would help find every point of activity in a quick scan.
Second, it would be possible to use a script program such as AutoIt to view the frame and get an average color, then sound an alert when a certain number of pixels fall outside a "tolerance level" near the average color. The video would still need to be played beginning to end, but it wouldn't be necessary to pay attention to the thing.
Is there such a tool available for #1? If necessary, I can code something for #2, I just thought I'd see what resources are available.