-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.xml
93 lines (92 loc) · 2.5 KB
/
config.xml
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
<?xml version="1.0" encoding="utf-8"?>
<config>
<server_ip>127.0.0.1</server_ip>
<server_port>8080</server_port>
<http_max_users>16</http_max_users>
<https_enable>0</https_enable>
<need_auth>0</need_auth>
<log_enable>1</log_enable>
<information>
<Manufacturer>Happytimesoft</Manufacturer>
<Model>IP Camera</Model>
<FirmwareVersion>2.4</FirmwareVersion>
<SerialNumber>123456</SerialNumber>
<HardwareId>1.0</HardwareId>
</information>
<user>
<username>admin</username>
<password>admin</password>
<userlevel>Administrator</userlevel>
</user>
<user>
<username>test</username>
<password>123456</password>
<userlevel>User</userlevel>
</user>
<profile>
<video_source>
<width>352</width>
<height>640</height>
</video_source>
<video_encoder>
<width>352</width>
<height>640</height>
<quality>4</quality>
<session_timeout>10</session_timeout>
<framerate>25</framerate>
<encoding_interval>50</encoding_interval>
<bitrate_limit>2048</bitrate_limit>
<encoding>H264</encoding>
<h264>
<gov_length>50</gov_length>
<h264_profile>Main</h264_profile>
</h264>
</video_encoder>
<audio_source></audio_source>
<audio_encoder>
<session_timeout>10</session_timeout>
<sample_rate>8</sample_rate>
<bitrate>64</bitrate>
<encoding>G711</encoding>
</audio_encoder>
<stream_uri>rtsp://127.0.0.1:6554/test.flv</stream_uri>
</profile>
<profile>
<video_source>
<width>1280</width>
<height>720</height>
</video_source>
<video_encoder>
<width>640</width>
<height>480</height>
<quality>4</quality>
<session_timeout>10</session_timeout>
<framerate>25</framerate>
<encoding_interval>50</encoding_interval>
<bitrate_limit>2048</bitrate_limit>
<encoding>H264</encoding>
<h264>
<gov_length>50</gov_length>
<h264_profile>Main</h264_profile>
</h264>
</video_encoder>
<audio_source></audio_source>
<audio_encoder>
<session_timeout>10</session_timeout>
<sample_rate>8</sample_rate>
<bitrate>64</bitrate>
<encoding>G711</encoding>
</audio_encoder>
<stream_uri></stream_uri>
</profile>
<scope>onvif://www.onvif.org/Profile/Streaming</scope>
<scope>onvif://www.onvif.org/location/country/china</scope>
<scope>onvif://www.onvif.org/type/video_encoder</scope>
<scope>onvif://www.onvif.org/name/IP-Camera</scope>
<scope>onvif://www.onvif.org/hardware/HI3518C</scope>
<event>
<renew_interval>60</renew_interval>
<simulate_enable>1</simulate_enable>
<simulate_interval>30</simulate_interval>
</event>
</config>