blob: 3dc57ad8c4614ae1e2f7219a6429906866845c90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Sample vlc params suitable for running as a daemon
## --daemon detach from prompt
## --file-logging enable file logging
## --logfile logfile name/path
## -vvv verbose logging
## -I dummy disable X11 interface
## --sout PARAMS encoding parameters
## Do NOT quote 'PARAMS' otherwise shell expansions will broke vlc
VLC_OPTS="-vvv -I dummy alsa://hw:0,0 --daemon --file-logging --logfile /var/log/vlc.log --sout #transcode{acodec=mp3,ab=48,channels=1,samplerate=22050}:std{access=http,mux=ogg,dst=:8080}"
|