====== GardenCam ======
===== Overview =====
{{wiki:Vlcsnap-2010-01-06-00h36m16s197.png ?200|A snowy night-time shot taken by GardenCam}}
Garden Cam is a streaming video of our front garden, overlooking the front garden and parking space.
===== Stream info =====
The stream is accessible at rtp://garden-cam.sihnon.net:6874 (internal/vpn only). It is an h.264 encoded stream, running at ~500kb/s.
===== VLC Commands =====
==== Example 1 ====
=== Details ===
* H.264, CRF 24, 640x480, 15 FPS
* Output to HTTP stream
* Output to .avi file
* XviD, 300 kbps, 320x240, 5 FPS
* Output to HTTP stream
=== Command ===
vlc-wrapper -I dummy --sout="#duplicate{dst='transcode{vcodec=h264,crf=24,acodec=none,fps=15}:duplicate{dst=\'std{access=http,mux=ts,dst=0.0.0.0:6874}\',dst=\'std{access=file,mux=ts,dst=/net/multiverse/mnt/pool/media/videos/.gardencam/`date +%Y-%m-%d_%H-%M-%S`.avi}\//,dst='transcode{vcodec=xvid,vb=300,acodec=none,width=320,height=240,fps=5}:std{access=http,mux=ts,dst=0.0.0.0:6875}'}" v4l2:///dev/video0:width:640
=== Broken Down for Ease of Reading ===
vlc-wrapper -I dummy
--sout="
#duplicate{
dst='
transcode{vcodec=h264,crf=24,acodec=none,fps=15}:
duplicate{
dst=\'std{access=http,mux=ts,dst=0.0.0.0:6874}\',
dst=\'std{access=file,mux=ts,dst=/net/multiverse/mnt/pool/media/videos/.gardencam/`date +%Y-%m-%d_%H-%M-%S`.avi}\'
}
',
dst='
transcode{vcodec=xvid,vb=300,acodec=none,width=320,height=240,fps=5}:
std{access=http,mux=ts,dst=0.0.0.0:6875}
'
}"
v4l2:///dev/video0:width:640