I'd like to be able to apply a custom final shader to the HDMI output of my PC before its sent out to my monitor.
For example, let's say I'm watching a youtube video of an old documentary; I'd like to be able to apply a shader to the entire display to emulate the look of an old CRT tv. Does anyone have some pointers as to how I could achieve this solely through software?
I have a GeForce graphics card on Windows 10. I'd also like to be able to do this with MacOS if possible.
You don't have control over video at this presentation stage. When you are watching YouTube video, presumably via web browser, the browser applicaton renders the video and delivers it to the Desktop Window Manager, which combines data from applications and OS itself into a video frame to "send" to connected monitor over HDMI link. Windows does not offer you services to alter the composed image, so you cannot apply your shader at this stage, especially using OpenGL because why OpenGL.
You have a few options but none of then are really simple.
You can have YouTube stuff presented onto one monitor and then use Desktop Duplication API to capture back the composed look for the entire monitor, use it as an input texture for your shader, apply the effect and then display the output on another monitor in your player application.
Alternatively you can implement and media player yourself, which takes video from YouTube and then depending on API or library you are using you would modify the video frame sequence you are playing as you need. Having the picture ready you display the video in a player-like application.