Raspberry Pi HDMI input & HDMI output for image processing

Have you thought of using Ethernet or USB to HDMI modules like this one : HDMI extender over lan


I've done similar projects for video editing (tried building a professional-level character generator.) Here's my 2 cents:

If you're just looking for something simple to overlay on top of an HDMI Signal, look at the Chumby NeTV. It's an 800mhz Marvel processor combined with a Spartan-6 FPGA that does all the heavy lifting with the signal, and it's $150 at Adafruit. You won't be able to process the input signal, since the signal could be HDCP encrypted, and even though the master key was found, it's still illegal to decrypt unless you have a license. The NeTV does some fancy stuff to inject it's signal into the existing stream.

If you're looking to do signal processing (i.e. add effects, adjust levels, chroma key, etc.) go with something more powerful than a Raspberry Pi 1/2. The BlackMagic ATEM Television Studio can do simple processing on multiple unencrypted HDMI signals, and has an API you can tie into (not easily, but doable.)

You could also use a strong computer with an HDMI capture card. I was using a computer to generate chroma-keyed overlays, and plugged the graphics card's output into a BlackMagic Intensity Shuttle connected to a second computer, which would then be processed by XSplit and dumped out a secondary video card.

As for processing video from an ethernet extender, there's people who have done it (see the Hack a Day link below), but it's along the same lines as using a capture card. The video stream is generally MJPEG, and the adapters send multicast packets (so your computer and the receiver would need to be on a segregated network.) The audio stream is separate, and you'd run the risk of things becoming out of sync. Personally, I was never able to get it working, as I was trying to send video out the transmitter, and couldn't get the initialization right.

http://hackaday.com/2014/01/25/reverse-engineering-an-hdmi-extender/