Using the basic tutorial in this original post, http://www.raspberrypi.org/archives/3890 , I've been able to stream what I assume is h264 video from my raspi to my linux desktop on the local network with stunningly low bandwidth requirements.
My Linux Desktop (CLI 1):
Code: Select all
nc -l -p 5001 | mplayer -fps 11 -cache 1024 -
Code: Select all
ssh -X [email protected]
Code: Select all
raspivid -fps 10 -w 640 -h 360 -vf -hf -t 999999 -o - | nc MY.DESK.IP 5001
----
I want to get this same stream to tunnel through ssh when off my local network. (I can SSH into the RASPI from outside the network)
Piping raspivid's output to mplayer and relying on X forwarding works, but that uses too much bandwidth.
I want to tunnel the h264 through ssh.
Can anyone help with the proper ssh -L's or -D's to make this work?
Thanks in advance!