I have an IP camera. I need to get its videostream and, frame by frame, process it (also discard some frames). Once processed I want to join the frames again and deliver the stream to other clients.
Now my question is:
- How can I create a video stream from a frame sequence (which I already have)?
It's possible for example to create the stream from an URL with:
Code: Select all
libvlc_media_new_location (libvlc_instance_t *p_instance, const char *psz_mrl)
Code: Select all
libvlc_media_new_path (libvlc_instance_t *p_instance, const char *path)
Thanks in advance and sorry for my ignorance, I'm quite newbie here..