blob: 73bb8bad236a3ea50df39ec8199f89751fe18d09 (
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
|
##############################
## 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"
|