Raspberry PI Video

August 5, 2015
  • Redirect video with VLC:
    raspivid -o – -t 99999 -hf -w 400 -h 300 -fps 25|sudo -u nico — cvlc -v – –noaudio –no-sout-audio –sout ‘#standard{access=http,mux=ts,dst=:8090}’ :demux=h264
  • Redirect video with netcat:
    while true; do raspivid -w 640 -h 480 -fps 25 -t 99999 -o – | nc -l -p 5001; sleep 1 ; done

posted in Linux, Raspberry Pi by nico