Hi all.
I've been working on this for the past few hours and, despite some success, have been unable to get it working. I now need to get back to work, so hopefully someone has a bright idea.
I'm doing the following:
raspivid -w 400 -h 300 -t 1000000 -o - | cvlc -vvv - --noaudio --no-sout-audio --sout '#standard{access=http,mux=ts,dst=:8090}'
Which *should* broadcast the video output from the camera on port 8090 and I should be able to then read that on my laptop by looking at http://<pi address>:8090
BUT, I'm getting the following error (ad nauseum) on the Pi:
[0x1f16f60] main input debug: Buffering 0%
It could be something to do with the way the standard input stuff works as the following _does_ work to stream a static file:
cvlc -vvv test.h264 --sout '#standard{access=http,mux=ts,dst=:8090}'
Does anyone have any ideas? Cos I'm all out!