rtsp streaming
in
Contributed Library Questions
•
1 year ago
Hello,
I recently have been experimenting with streaming a rtsp feed from an Edimax
IC-3005Wn ip camera using mpeg4 format video
|
:- |
import codeanticode.gsvideo.*; import processing.video.*; import codeanticode.syphon.*; Capture myCapture; |
GSPipeline pipe; |
void setup() { size(640,480, P3D); pipe = new GSPipeline(this, "rtspsrc location=rtsp://192.168.1.104/ipcam ! rtpmp4vdepay ! ffdec_mpeg4"); pipe.play(); } void draw() { if (pipe.available()) { pipe.read(); image(pipe, 0, 0);
} } The problem I am coming across is that there is a delay as the video feed is buffered. Is there a way of reducing the buffer time as I would like to use this camera to do some live, real time projections. Thank you. Rob |
1