Live video stream on server (PC) from images sent by robot through UDP

后端 未结 2 1080
礼貌的吻别
礼貌的吻别 2020-12-28 22:25

Hmm. I found this which seems promising:

http://sourceforge.net/projects/mjpg-streamer/


Ok. I will try to explain what I am trying to do clearly and in

相关标签:
2条回答
  • 2020-12-28 22:51

    Checking out your first question. Though the solution here uses a non-streaming set of pictures. It might help. The example uses pyMedia.

    • http://pymedia.org/tut/src/make_video.py.html

    Some along the lines of what you want.

    • http://code.google.com/p/mjpeg-stream-client/

    If you have a need to edit a binary stream:

    • http://bitbucket.org/haypo/hachoir/wiki/hachoir-parser
    0 讨论(0)
  • 2020-12-28 23:01

    Try pyffmpeg and test each available codec for the best performance. You probably need a very lightweight codec like Smoke or low profile H263 or x264, and you probably need to drop the resolution to 320x240.

    You have a trade off between latency of the video encoding and decoding and the bandwidth used, you might find dropping down to 160x120 with raw packets for a quick scene analysis and only periodically transmitting a full frame. You could also mix a raw, low latency, low resolution, high update feed with a high compressed, high latency, high resolution, low update feed.

    0 讨论(0)
提交回复
热议问题