forked from ValdikSS/aceproxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aceconfig.py
167 lines (164 loc) · 6.71 KB
/
aceconfig.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
'''
AceProxy configuration script
Edit this file.
'''
import logging
import acedefconfig
from aceclient.acemessages import AceConst
class AceConfig(acedefconfig.AceDefConfig):
# ----------------------------------------------------
# Ace Stream Engine configuration
# ----------------------------------------------------
#
# Spawn Ace Stream Engine automatically
acespawn = True
# Ace Stream cmd line (use `--log-file filepath` to write log)
# Autodetect for Windows
acecmd = "acestreamengine --client-console"
# Ace Stream API key
# You probably shouldn't touch this
acekey = 'n51LvQoTlJzNGaFxseRK-uvnvX-sD4Vm5Axwmc4UcoD-jruxmKsuJaH0eVgE'
# Ace Stream Engine host
# Change this if you use remote Ace Stream Engine
# Remember that by default Ace Stream Engine listens only
# Local host, so start it with --bind-all parameter
acehost = '127.0.0.1'
# Ace Stream Engine port (autodetect for Windows)
aceport = 62062
# Ace Stream age parameter (LT_13, 13_17, 18_24, 25_34, 35_44, 45_54,
# 55_64, GT_65)
aceage = AceConst.AGE_18_24
# Ace Stream sex parameter (MALE or FEMALE)
acesex = AceConst.SEX_MALE
# Ace Stream Engine startup timeout
# On Windows Ace Engine refreshes acestream.port file only after loading GUI
# Loading takes about ~10 seconds and we need to wait before taking port out of it
# Set this to 0 if you don't use proxy at startup or don't need to wait
# Only applies to Windows systems
acestartuptimeout = 10
# Ace Stream Engine connection timeout
aceconntimeout = 5
# Ace Stream Engine authentication result timeout
aceresulttimeout = 10
# Message level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
debug = logging.DEBUG
#
# ----------------------------------------------------
# AceProxy configuration
# ----------------------------------------------------
#
# HTTP Server host
httphost = '0.0.0.0'
# HTTP Server port
httpport = 8000
# If started as root, drop privileges to this user.
# Leave empty to disable.
aceproxyuser = ''
# Enable firewall
firewall = False
# Firewall mode. True for blackilst, False for whitelist
firewallblacklistmode = False
# Network ranges. Please don't forget about comma in the end
# of every range, especially if there is only one.
firewallnetranges = (
'127.0.0.1',
'192.168.0.0/16',
)
# Maximum concurrent connections (video clients)
maxconns = 10
# Logging to a file
loggingtoafile = False
# Path for logs, default is current directory. For example '/tmp/'
logpath = ''
#
# ----------------------------------------------------
# VLC configuration
# ----------------------------------------------------
#
# Use VideoLAN VLC Media Player
# I strongly recommend to use VLC, because it lags a lot without it
# And multiple clients can't watch one stream without it.
# That's Ace Stream Engine fault.
# To use this, you should install VLC first
# And run it with:
# vlc -I telnet --clock-jitter 0 --network-caching 500 --telnet-pass admin
vlcuse = False
# Use AceStream player that comes with engine
# If true than proxy will detect a path to ace_player.exe and ace_player.exe will be spawned
# It also will not check if vlc.exe is running, it will watch over ace_player.exe process
# This option applies only for Windows systems
# If set to true, you need to edit vlccmd like this:
# ace_player.exe -I telnet --clock-jitter -1 --network-caching -1 --sout-mux-caching 2000 --telnet-password admin
# to point ace_player.exe, not vlc.exe!!!
vlcuseaceplayer = False
# Spawn VLC automaticaly
vlcspawn = False
# VLC cmd line (use `--file-logging --logfile=filepath` to write log)
# Please use the full path to executable for Windows, for example - C:\\Program Files\\VideoLAN\\VLC\\vlc.exe
vlccmd = "vlc -I telnet --clock-jitter -1 --network-caching -1 --sout-mux-caching 2000 --telnet-password admin --telnet-port 4212"
# VLC spawn timeout
# Adjust this if you get error 'Cannot spawn VLC!'
vlcspawntimeout = 5
# VLC host
vlchost = '127.0.0.1'
# VLC telnet interface port
vlcport = 4212
# VLC streaming port (you shouldn't set it in VLC itself)
vlcoutport = 8081
# VLC telnet interface password
vlcpass = 'admin'
# Pre-access (HTTP) VLC parameters
# You can add transcode options here
# Something like #transcode{acodec=mpga,ab=128,channels=2,samplerate=44100}
vlcpreaccess = ''
# VLC muxer. You probably want one of these streamable muxers:
# ts, asf, flv, ogg, mkv
# You can use ffmpeg muxers too, if your VLC is built with it
# ffmpeg{mux=NAME} (i.e. ffmpeg{mux=mpegts})
# VLC's ts muxer sometimes can work badly, but that's the best choice for
# now.
vlcmux = 'ts'
# Force ffmpeg INPUT demuxer in VLC. Sometimes can help.
vlcforceffmpeg = False
# Stream start delay for dumb players (in seconds)
# !!!
# PLEASE set this to 0 if you use VLC
# !!!
videodelay = 2
# Obey PAUSE and RESUME commands from Engine
# (stops sending data to client, should prevent annoying buffering)
# !!!
# PLEASE set this to False if you use VLC
# !!!
videoobey = True
# Stream send delay after PAUSE/RESUME commands (works only if option
# above is enabled)
# !!!
# PLEASE set this to 0 if you use VLC
# !!!
videopausedelay = 2
# Seek back feature.
# Seeks stream back for specified amount of seconds.
# Greatly helps fighing AceSteam lags, but introduces
# video stream delay.
# Set it to 30 or so.
# Works only with the newest versions of AceEngine!
videoseekback = 0
# Delay before closing Ace Stream connection when client disconnects
# In seconds.
videodestroydelay = 3
# Pre-buffering timeout. In seconds.
videotimeout = 40
#
# Some video players (mostly STBs and Smart TVs) can generate dummy requests
# to detect MIME-type or something before playing which Ace Stream handles badly.
# We send them 200 OK and do nothing.
# We add their User-Agents here
fakeuas = ('Mozilla/5.0 IMC plugin Macintosh', )
#
# Some video players have very short timeout and can disconnect from the proxy
# before the headers sent.
# We send them 200 OK and MPEG MIME-type right after connection has been initiated
fakeheaderuas = ('HLS Client/2.0 (compatible; LG NetCast.TV-2012)',
'Mozilla/5.0 (DirectFB; Linux armv7l) AppleWebKit/534.26+ (KHTML, like Gecko) Version/5.0 Safari/534.26+ LG Browser/5.00.00(+mouse+3D+SCREEN+TUNER; LGE; 42LM670T-ZA; 04.41.03; 0x00000001;); LG NetCast.TV-2012 0'
)