I created a wpf application that works with multiple screens. In a specific scenario the second screen is away from the PC. So I want to capture everything that happens on the second screen (maybe as a video) and show it in a control of the main window.
I thought I had to take a screenshot of the screen every 30ms and show it as an image (in order to have a "30fps video"). But I would have to capture the screen, save the image (which takes up space on the pc) and show it. I'm not sure this is the best method. Maybe there are libraries that do this or a better way to do it?