diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-01-12 20:20:36 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-01-12 20:20:36 +0000 |
commit | b157845a66dbb60b9239da9a05c3894a96e564da (patch) | |
tree | 34b168e8c30900ad25e248e12766096a67cb5a00 | |
parent | 6c81ffe59f9326e03ee931dc773aca5b37152cfb (diff) | |
download | xine-lib-b157845a66dbb60b9239da9a05c3894a96e564da.tar.gz xine-lib-b157845a66dbb60b9239da9a05c3894a96e564da.tar.bz2 |
add a little howto on setting up mp1e as a streaming server
CVS patchset: 1394
CVS date: 2002/01/12 20:20:36
-rw-r--r-- | src/input/input_net.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/input/input_net.c b/src/input/input_net.c index 107b9d18e..381bcebdb 100644 --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -19,6 +19,20 @@ * * Read from a tcp network stream over a lan (put a tweaked mp1e encoder the * other end and you can watch tv anywhere in the house ..) + * + * how to set up mp1e for use with this plugin: + * + * use mp1 to capture the live stream, e.g. + * mp1e -b 1200 -R 4,32 -a 0 -B 160 -v >live.mpg + * + * add an extra service "xine" to /etc/services and /etc/inetd.conf, e.g.: + * /etc/services: + * xine 1025/tcp + * /etc/inetd.conf: + * xine stream tcp nowait bartscgr /usr/sbin/tcpd /usr/bin/tail -f /home/bartscgr/Projects/inf.misc/live.mpg + * + * now restart inetd and you can use xine to watch the live stream, e.g.: + * xine tcp://192.168.0.43:1025.mpg */ #ifdef HAVE_CONFIG_H |