Desktop TCP Streaming (java)

前端 未结 2 1698
夕颜
夕颜 2021-01-22 08:06

I want to stream desktop screen captures using sockets. I don\'t know the exact way to do this, so I went with AWT\'s robot :)

Robot robot = ne         


        
2条回答
  •  一向
    一向 (楼主)
    2021-01-22 08:59

    How are HD video streams transferred?

    Typically as a video stream, which a 'group of images' is not. Video codecs often have clever ways to compress groups of images further, e.g. by only showing the part of the next frame that is different to the previous one.

    You might also want to look into encoding the images as a high compression JPEG.

    Having said that, I doubt you'll get a very good transfer rate at that size in pixels.

提交回复
热议问题