How to grab a video stream from an IP-address?

G

Guest

Hi

Does anyone know how I can grab a video stream from an IP-address? There's a video web server for live image transmission in the Internet. Data transfer is accomplished via TCP/IP. The web cam that I am using is integrated into a network with fixed IP address. The streaming software is already there, so I have to go to this IP-address to see the live video stream.

How can I grab this video stream from an IP-address with an application programmed in C++ ??

Please help!

Thanks!
 
C

Carl Daniel [VC++ MVP]

K.H. said:
Hi!

Does anyone know how I can grab a video stream from an IP-address?
There's a video web server for live image transmission in the
Internet. Data transfer is accomplished via TCP/IP. The web cam that
I am using is integrated into a network with fixed IP address. The
streaming software is already there, so I have to go to this
IP-address to see the live video stream.

How can I grab this video stream from an IP-address with an
application programmed in C++ ??

1. Use Winsock API to receive data from a TCP port (that's the easy part).
2. Discover every detail about the streaming protocol & implement it or find
an existing library.
3. Discover every detail about the compression that's used & implement it or
find an existing library.
4. Use Direct-X or Win32 GDI to display frames of video on the screen.

In short, how to access TCP is the least of your worries.

-cd
 
G

Guest

----- Carl Daniel [VC++ MVP] wrote: ----

K.H. wrote
Hi
There's a video web server for live image transmission in th
Internet. Data transfer is accomplished via TCP/IP. The web cam tha
I am using is integrated into a network with fixed IP address. Th
streaming software is already there, so I have to go to thi
IP-address to see the live video stream
application programmed in C++ ?

1. Use Winsock API to receive data from a TCP port (that's the easy part)
2. Discover every detail about the streaming protocol & implement it or fin
an existing library
3. Discover every detail about the compression that's used & implement it o
find an existing library
4. Use Direct-X or Win32 GDI to display frames of video on the screen

In short, how to access TCP is the least of your worries

-c

Thank you so much for answering!

The IP-videoserver use the "server push" - technology to stream images over http, using TCP/IP only. For the IE a Java-Applet or ActiveX-module is used to make the streaming visible

So what do I do next after the socket part?

Which classes and how to connect this to the image processing application?

Thank yo

K.H.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top