Thread: Streaming video from ip camera

  1. #1
    Registered User
    Join Date
    Oct 2007
    Posts
    1

    Streaming video from ip camera

    Could somebody give me some insight on how to program a live streaming feed from an ip camera in c++?

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    I have no idea, but what are the specs of the camera - what is the protocol [besides "IP"]? Does it do mpeg or some other streaming video protocol, or is it raw frames every time you request data, or what?

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  3. #3
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398
    This might be very difficult, because it probably requires proprietary information only known by the camera maufacturer.

    I think You need the driver interface specs. For example, when you are dealing with a "standard" hardware device (like a printer), the hardware manufacturer conforms to the Windows specs when he writes the Windows driver. In that case the application-to-driver interface is standardized, and any Windows application can write to the Windows driver. (And, you can use standard WinAPI functions if you want to write your own application.)

    In this case, the application is probably written by the camera manufacturer, and the driver interface information may not be public or standardized.

    If the camera works with 3rd-party applications, you chances of digging-up the driver interface information is much better.

    Or, if this is a "web cam", and you can view the output with any browser, then the format will be public and standardized.

    If you knew the format/structure of the IP data, you could write your own driver. But again, this information is usually proprietary. (i.e. Printer manufacturer's don't generally publish information on how to "talk to" their hardware either, so it's very difficult to write your own USB printer driver.)
    Last edited by DougDbug; 10-18-2007 at 03:12 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. camera rotation matrix
    By Vick jr in forum Game Programming
    Replies: 5
    Last Post: 05-26-2009, 08:16 AM
  2. ip camera
    By sgh in forum C# Programming
    Replies: 3
    Last Post: 03-12-2009, 01:50 PM
  3. Displaying Streaming Video on a Form
    By ejohns85 in forum C# Programming
    Replies: 3
    Last Post: 05-21-2007, 12:36 PM
  4. Camera rotation/movement in 3D world
    By tegwin in forum Game Programming
    Replies: 11
    Last Post: 01-24-2003, 01:43 PM