[vlc] Re: [others] Re: Capturing messages output
Christopher Brooks
cab938 at mail.usask.ca
Wed Feb 28 21:14:31 CET 2007
So, I try something like this:
C:\Progra~1\VideoLAN\VLC\vlc --intf telnet --telnet-password 'grabage'
--vlm-conf encodeepiphan.vlm >> test.txt
This seems roughly analogous to what you have written. But I don't get
anything going to test.txt (though it gets created). The conf file works
fine though, and I get the captures etc. working great (at least 2 thirds of
the time).
Is there some magic I'm missing (sorry, not really a bash guy...)
Chris
> -----Original Message-----
> From: vlc-bounce at videolan.org [mailto:vlc-bounce at videolan.org] On
> Behalf Of Warren Young
> Sent: Tuesday, February 27, 2007 2:48 PM
> To: vlc at videolan.org
> Subject: [others] [vlc] Re: Capturing messages output
>
> Christopher Brooks wrote:
> >
> > Is there a way to send the messages output window to a text file or
> > something?
>
> Here's a wrapper script I wrote called vlm that does just that:
>
> #!/bin/sh
> if [ -z "$1" -o ! -r "$1" ]
> then
> echo usage: $0 vlm-cmd-file
> echo
> exit 1
> fi
>
> LOGFILE=/var/log/vlm
> echo ---------------------------------------------------- >> $LOGFILE
> echo Starting VLM at `date` >> $LOGFILE
> killall vlc > /dev/null 2>&1
> vlc -I telnet --telnet-password 'dontyouwish' --rtsp-host 0.0.0.0:5554
> \
> --vlm-conf $1 >> $LOGFILE 2>&1 &
>
>
> We have the log going to /var/log/vlm here, which you can change,
> naturally.
>
> The file name you pass to the vlm script is for a file containing VLM
> commands, as you'd type them into the telnet interface. Like this:
>
> new 175 vod enabled
> setup 175 input "/video/175.mpg"
>
> new 194 vod enabled
> setup 194 input "/video/194.mpg"
>
> ...
>
>
> --
> This is the vlc mailing-list, see http://www.videolan.org/vlc/
> To unsubscribe, please read http://www.videolan.org/support/lists.html
--
This is the vlc mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://www.videolan.org/support/lists.html
More information about the vlc
mailing list