Adding config file template (has to be renamed after LibrePlanet,
[libre-streamer.git] / params.sh
1 #!/bin/bash
2
3 # Gstreamer settings
4 BRIGHTNESS=0
5 CONTRAST=0.75
6 HUE=0
7 SATURATION=0.9
8 SERVER=18.4.89.36
9 PASSWORD=
10 BUFFERSIZE=100000
11 GST_DEBUG_DUMP_DOT_DIR=/tmp
12 WIDTH=480
13 HEIGHT=360
14 FPS=6
15 FPS1=1
16
17 # Insure we are all using the same xauthurity files
18 export XAUTHORITY=$HOME/.Xauthority
19
20 # Common options
21 CONFIG_FILE=config.xml
22
23 # Autodetect USB soundcard
24 SOUND="hw:"$(grep USB-Audio /proc/asound/cards|awk '{ print $1 }')",0"
25
26 # Configuration for specific streaming points
27 MOUNTPOINT="/example.ogv"
28 MOUNTPOINTAUDIO="/example.oga"
29 CONFIG_NET=net_config_example
30
31 # For multiple streaming points, uncomment and duplcaite the below if
32 # statements. Also you should comment out the above configs.
33 # Sorry its so hackish :/
34
35 #if [ "$(hostname)" = "host.example.com" ]; then
36 # MOUNTPOINT="/example.ogv"
37 # MOUNTPOINTAUDIO="/example.oga"
38 # CONFIG_NET=net_config_example
39 #fi