Initial commit
[libre-streamer.git] / params.sh
CommitLineData
af3a72cf
LMM
1#!/bin/bash
2
3# Gstreamer settings
4BRIGHTNESS=0
5CONTRAST=0.75
6HUE=0
7SATURATION=0.9
8SERVER=18.4.89.36
9PASSWORD=
10BUFFERSIZE=100000
11GST_DEBUG_DUMP_DOT_DIR=/tmp
12WIDTH=480
13HEIGHT=360
14FPS=6
15FPS1=1
16
17# Insure we are all using the same xauthurity files
18export XAUTHORITY=$HOME/.Xauthority
19
20# Common options
21CONFIG_FILE=config.xml
22
23# Autodetect USB soundcard
24SOUND="hw:"$(grep USB-Audio /proc/asound/cards|awk '{ print $1 }')",0"
25
26# Configuration for specific streaming points
27MOUNTPOINT="/example.ogv"
28MOUNTPOINTAUDIO="/example.oga"
29CONFIG_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