[www-doc] [Patch] Vod examples

Christophe Mutricy xtophe at nxtelevision.com
Fri Feb 4 17:01:18 CET 2005


Hey,

Attached a patch to add a few examples to the vod pages in streamming
howto.


-- 
Xtophe
-------------- next part --------------
Index: doc/streaming-howto/src/en/vlm-vod.xml
===================================================================
--- doc/streaming-howto/src/en/vlm-vod.xml	(revision 3018)
+++ doc/streaming-howto/src/en/vlm-vod.xml	(working copy)
@@ -316,11 +316,32 @@
 </sect3></sect2>
 
 <sect2><title>Video On Demand</title>
+<sect3><title> Basic Example</title>
 
 <programlisting>
+new Test vod my_video.mpg enabled
+</programlisting>
+<para>You can then access it at <emphasis>rtsp://my_server/Test</emphasis>. </para>
+</sect3>
+<sect3><title> Other Examples</title>
+<para>If VLC is not running with adninistrator rights, you will have to change the port by using the <command>--rtsp-host</command> option.</para>
 
+<screen>
+<prompt>% </prompt><userinput>vlc --intf telnet --rtsp-host my_server:4242/Video</userinput>
+</screen>
+<para>You can then access it at <emphasis>rtsp://my_server:4242/Video/Test</emphasis>. </para>
+<para>If you are experiencing problem with the images, try to remux it.</para>
+
+<programlisting>
+new Test vod my_video.mpg mux mp2t enabled
 </programlisting>
+<para>If your movie's codec is not supported by the rtsp module or the birate too high for your network, you can try to transcode it.</para>
+ 
+<programlisting>
+new Test vod my_video.mpg output #transcode{...}  enabled
+</programlisting>
 
+</sect3>
 </sect2>
 
 </sect1>


More information about the www-doc mailing list