summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-06-18 10:25:33 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-06-18 10:25:33 +0200
commit92acb8a9318c3010ecc4d7bd6cd1aa8460fb191e (patch)
tree968b24b2c9728a5e25c359191723404a7519e560 /etc
parentf52e97fbaad787ea3077958449cba80eb05b7ba1 (diff)
Split server/client config files.
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile.am16
-rw-r--r--etc/miav.conf44
-rw-r--r--etc/miavd.conf48
3 files changed, 63 insertions, 45 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am
index 1e4ee34..507c8e1 100644
--- a/etc/Makefile.am
+++ b/etc/Makefile.am
@@ -1,9 +1,19 @@
EXTRA_DIST = \
miav.conf \
+ miavd.conf \
multicast.conf
sysconfdir=${prefix}/etc/miav
-dist_sysconf_DATA = \
- miav.conf \
- multicast.conf \ No newline at end of file
+dist_sysconf_DATA =
+
+if WITH_CLIENT
+dist_sysconf_DATA += \
+ miav.conf
+endif
+
+if WITH_SERVER
+dist_sysconf_DATA += \
+ miavd.conf \
+ multicast.conf
+endif
diff --git a/etc/miav.conf b/etc/miav.conf
index 40a8e18..4e05fc9 100644
--- a/etc/miav.conf
+++ b/etc/miav.conf
@@ -1,10 +1,9 @@
##############################
-## The MIaV configuration file
+## The MIaV client configuration file
##
# Log files of the server and the client
client_log_file = "/tmp/miav_client.log"
-server_log_file = "/tmp/miav_server.log"
# Cpr Database configuration
cpr_host = "cpr.j.auh.dk"
@@ -26,44 +25,5 @@ pixel_height = 768
player_skip_frames = 1
# How and where to connect to the miav server?
-server_addr = "192.168.0.10"
+server_addr = "127.0.0.1"
server_port = 18120
-
-# Run the server as the following user:
-server_user = "miav"
-server_group = "miav"
-
-# Where to store the files recieved by the server
-server_movie_root = "/home/miav/miav_movie_files"
-server_image_root = "/home/miav/miav_image_files"
-server_later = "/home/miav/miav_movie_files/deathrow"
-server_trash = "/home/miav/miav_movie_files/trash"
-
-# Defines the size of the multicasted upd packages (1500 is normal)
-udp_packet_size = 1500
-
-# Video output controls. A sequence of I and P, where I is keyframes
-# which is fast to create, but uses a lot of discspace.
-# B uses changes since last frame, is more cpu intensive, but uses a
-# lot less diskspace than I frames
-frame_sequence = "IPPPIPPIP"
-
-# quality in % - 100% is best quality
-video_quality = 85
-
-# bitrate in kbytes pr. second (0 == vbr)
-video_bitrate = 0
-
-# mp3 encoding quality settings
-mp3_quality = 3
-mp3_bitrate = 112
-
-# The number of threads started for parallel encoding on the server
-# (for multiprocessor systems)
-encoding_threads = 1
-
-# Codec is one of the following:
-# "mpeg1" For use with mpeg1 encoding.
-# "mpeg4" for use with mpeg4 encoding
-# default is "mpeg1"
-encoding_codec = "mpeg1"
diff --git a/etc/miavd.conf b/etc/miavd.conf
new file mode 100644
index 0000000..73bb8ba
--- /dev/null
+++ b/etc/miavd.conf
@@ -0,0 +1,48 @@
+##############################
+## The MIaV server configuration file
+##
+
+# Log files of the server and the client
+server_log_file = "/tmp/miav_server.log"
+
+# Which port to listen on?
+server_port = 18120
+
+# Run the server as the following user:
+server_user = "miav"
+server_group = "miav"
+
+# Where to store the files recieved by the server
+server_movie_root = "/home/miav/miav_movie_files"
+server_image_root = "/home/miav/miav_image_files"
+server_later = "/home/miav/miav_movie_files/deathrow"
+server_trash = "/home/miav/miav_movie_files/trash"
+
+# Defines the size of the multicasted upd packages (1500 is normal)
+udp_packet_size = 1500
+
+# Video output controls. A sequence of I and P, where I is keyframes
+# which is fast to create, but uses a lot of discspace.
+# B uses changes since last frame, is more cpu intensive, but uses a
+# lot less diskspace than I frames
+frame_sequence = "IPPPIPPIP"
+
+# quality in % - 100% is best quality
+video_quality = 85
+
+# bitrate in kbytes pr. second (0 == vbr)
+video_bitrate = 0
+
+# mp3 encoding quality settings
+mp3_quality = 3
+mp3_bitrate = 112
+
+# The number of threads started for parallel encoding on the server
+# (for multiprocessor systems)
+encoding_threads = 1
+
+# Codec is one of the following:
+# "mpeg1" For use with mpeg1 encoding.
+# "mpeg4" for use with mpeg4 encoding
+# default is "mpeg1"
+encoding_codec = "mpeg1"