blob: c85cabcdf610de1e38db583878f89119678f88ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#
# Usage examples (VDR plugin)
#
# If no arguments are given, both X11 and framebuffer frontends are tried.
# First working frontend is used with best available video driver.
# Complete list of available command-line arguments can be obtained
# with "vdr --help".
#
# Only local frontend, X11/Xv video, alsa audio:
# _EXTRAOPTS="--local=sxfe --video=xv --audio=alsa --noremote"
#
# Only local frontend, (slow) X11 video, oss audio:
# _EXTRAOPTS="--local=sxfe --video=x11 --audio=oss --noremote"
#
# Only local frontend, DirectFB:
# _EXTRAOPTS="--local=fbfe --video=DirectFB --noremote"
#
# Only remote frontend(s):
# _EXTRAOPTS="--local=none --remote=37890"
#
# Local and remote frontends:
# _EXTRAOPTS="--local=sxfe --remote=37890"
# or
# _EXTRAOPTS="--local=fbfe --remote=37890"
#
#
_EXTRAOPTS="--local=none --remote=37890"
###################################################
# start sxfe remote frontend #
###################################################
#
# We do not add any start up paramaters by default
# Please refer for detailed info to
# media-plugins/vdr-xineliboutput README
# --> Using remote frontends
#
# Example:
# --display=:1.0 --silent --fullscreen --syslog --reconnect xvdr://localhost &>/dev/null
#
# init script --> vdr-frontend
#
# DEBUG: do we need sxfb support? feedback please!
#
# sxfb start parameter
# allowed values: see README
# default: no paramters given
#
#REMOTE_FRONTEND=""
|