I've got an IP camera on a 3G modem. I need to fetch its stream from a landline server and re-stream it.

Right now the only cheap option seems to be FFserver (but feel free to suggest others), but I'm not really sure where to start... Does anyone have any experience using FFserver?

link|improve this question

60% accept rate
feedback

3 Answers

I did just about 1 day ago. ffmpeg can't really handle live feeds so you must make a pipe and stream through it. I guess you already have ffmpeg installed, also install mplayer.

Do this:

mkfifo somename.someext
ffmpeg -i somename.someext http://localhost:yourport/yourfeed

Open another terminal and do this:

mplayer -streamdump protocol://ipofcamera -dumpfile somename.someext

And... that's it.

link|improve this answer
feedback

You can also try vlc (they have good streaming howto) and if You need RTMP (for flash client) look here: http://stackoverflow.com/questions/1669308/best-way-for-live-rtmp-streaming-from-dv-camcorder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.