I have a cheap Chinese IP webcam that has a web interface featuring live video. The video looks like a sequence of jpeg images uploaded to the browser. If I point wget to the URL http: //my-ip-camera/video.cgi , I get a large piece of streaming data in the following format:
--ipcamera Content-Type: image/jpeg Content-Length: 46056 JFIF header data ... lots of data ...
this pattern is repeated for each βframeβ.
Is this a βstandardβ streaming format that I can play / transcode with something, or is it some kind of constituent collection of JPEG files stored in my browser that just makes them as fast as possible?
I tried using VLC but could not process the URL.
The software in my IP camera is pretty awful, so I want to capture this stream and process it on my Linux machine. Is there any collection of ffmpeg / mplayer tools that I can use for this?
source share