+The address needs to be the address of the source. Note the backslash at the end.
+
+ vlc rtsp://192.168.1.54:8554/
+
+
+## VLC Remarks
+* Latency: The following options are said to reduce latency:
+
+ --network-caching=150 --clock-jitter=0 --clock-synchro=0
+
+* Duplicating a stream is nice for debugging:
+
+ cvlc -vv --sout '#duplicate{dst=display,dst="transcode{vcodec=h264,acodec=mpga,channels=2,vb=800,ab=128}:rtp{mux=ts,dst=239.255.12.42,sdp=sap,name=Geris Game}"}' GerisGame.mp4
+ cvlc rtp://239.255.12.42
+
+
+## HTTP
+The address at the source side has to be the external one of the local computer.
+
+### Source (server)
+ cvlc -vv --sout '#transcode{vcodec=mp4v,acodec=mpga,vb=800,ab=128}:standard{access=http,mux=ogg,dst=0.0.0.0:8080}' GerisGame.mp4
+
+# Player (client)
+
+ vlc http://192.168.1.54:8080