Mixing Gstreamer and Gunicorn
por Noe Misael Nieto Arroyo
el día 03/05/2011 23:35
|
Permalink (Enlace permanente)
I came across the idea to make a fake IP Camera that spits out MJPEG. This is how I did it.
Why?
Because I'm working on my thesis, and it is a surveillance software, and I don't want to buy an IP camera just for this.
How?
The plan is to generate fake data with videotestsrc, cast, modify and adapt this fake data to a MJPEG stream, and throw it into a appsink element; then take this data (which will be MJPEG frames), and encapsulate it into HTTP multipart stream. I will use gunicorn to do that because I wanted to gain some experience with a WSGI server.
