JAVA-WVP+ZLMediaKit+MediaServerUI实现摄像头 GB28181推流播放录制
整个视频请求的流程图
一.流程图
二. 通信流程图
三.流程概括图
四. gb28181 在线文档
http://www.gb688.cn/bzgk/gb/newGbInfo?hcno=469659DC56B9B8187671FF08748CEC89 link
准备工作
1.服务运行环境,Linux / OS X / Windows 均可,但推荐 Linux
2.海康云台摄像头一个
3.运行流媒体服务 ZLMediaKit https://github.com/xiongziliang/ZLMediaKit link
4.运行 sip 服务 WVP https://gitee.com/18010473990/wvp-GB28181 link
运行流媒体服务 ZLMediaKit (windows版本
)
https://github.com/648540858/ZLM-build.git link
配置config.ini
// 配置描述
; auto-generated by mINI class {
[api]
apiDebug=1
defaultSnap=./www/logo.png
secret=035c73f7-bb6b-4889-a715-d9eb2d1925cc
snapRoot=./www/snap/
[ffmpeg]
bin=E:\rtsp2rtmp\ffmpeg\bin\ffmpeg.exe
cmd=%s -fflags nobuffer -rtsp_transport tcp -i %s -c:a aac -strict -2 -ar 44100 -ab 48k -c:v libx264 -f flv %s
log=./ffmpeg/ffmpeg.log
snap=%s -i %s -y -f mjpeg -t 0.001 %s
[general]
addMuteAudio=1
enableVhost=0
flowThreshold=1024
fmp4_demand=0
hls_demand=0
maxStreamWaitMS=15000
mediaServerId=ADGKNQTX036adgjn
mergeWriteMS=0
modifyStamp=0
publishToHls=1
publishToMP4=0
resetWhenRePlay=1
rtmp_demand=0
rtsp_demand=0
streamNoneReaderDelayMS=38000
ts_demand=0
[hls]
broadcastRecordTs=0
fileBufSize=65536
filePath=./www
segDur=2
segNum=3
segRetain=5
[hook]
admin_params=secret=035c73f7-bb6b-4889-a715-d9eb2d1925cc
enable=1
on_flow_report=
on_http_access=
on_play=http://172.16.209.29:18080/index/hook/on_play
on_publish=http://172.16.209.29:18080/index/hook/on_publish
on_record_mp4=
on_record_ts=
on_rtsp_auth=
on_rtsp_realm=
on_server_started=http://172.16.209.29:18080/index/hook/on_server_started
on_shell_login=http://172.16.209.29:18080/index/hook/on_shell_login
on_stream_changed=http://172.16.209.29:18080/index/hook/on_stream_changed
on_stream_none_reader=http://172.16.209.29:18080/index/hook/on_stream_none_reader
on_stream_not_found=http://172.16.209.29:18080/index/hook/on_stream_not_found
timeoutSec=20
[http]
charSet=gb2312
dirMenu=1
keepAliveSecond=15
maxReqSize=4096
notFound=<html><head><title>404 Not Found</title></head><body bgcolor="white"><center><h1>您访问的资源不存在!</h1></center><hr><center>ZLMediaKit-5.0(build in Mar 18 2021 17:07:55)</center></body></html>
port=8089
rootPath=./www
sendBufSize=65536
sslport=8088
[multicast]
addrMax=239.255.255.255
addrMin=239.0.0.0
udpTTL=64
[record]
appName=record
fastStart=0
fileBufSize=65536
filePath=./www
fileRepeat=0
fileSecond=3600
sampleMS=500
[rtmp]
handshakeSecond=15
keepAliveSecond=15
modifyStamp=0
port=1935
sslport=19350
[rtp]
audioMtuSize=600
clearCount=10
maxRtpCount=50
videoMtuSize=1400
[rtp_proxy]
dumpDir=
port=10000
timeoutSec=15
[rtsp]
authBasic=0
directProxy=1
handshakeSecond=15
keepAliveSecond=15
port=554
sslport=332
[shell]
maxReqSize=1024
port=9000
; } ---
启动成功zlm
运行流媒体服务 ZLMediaKit (linux版本
)
// 配置描述
cd /home/wtone/java-service/java/zlm/ZLMediaKit/
(采用windos拉取代码)
git clone --depth 1 https://gitee.com/xiahcu/ZLMediaKit
git submodule update --init
sudo yum -y install cmake
sudo yum -y install libssl-dev
sudo yum -y install libsdl-dev
sudo yum -y install libavcodec-dev
sudo yum -y install libavutil-dev
mkdir -p linux_build
rm -rf ./build
ln -s ./linux_build build
cd linux_build
cmake ..
cmake 报错 CMake Error at CMakeLists.txt:30 (cmake_minimum_required): CMake 3.8 or higher is requir
解决方案:https://blog.csdn.net/qq_23958451/article/details/100526699
端口被占用错误
配置config.ini
[http]
sslport=8088
1.启动
#以守护进程模式启动
./MediaServer -d &
2.查看进程
ps -ef|grep MediaServer
3.查看日志
logs
启动成功zlm
ZML后台推流日志
运行 WVP 服务
WVP 项目中将设备信息等存放在 Redis 中,所以需要安装 Redis,安装教程请自行搜索
首先安装 Redis
linux 安装 https://www.cnblogs.com/zuidongfeng/p/8032505.html link
拉取代码
1.安装依赖环境
安装nodejs
依赖: http://nodejs.cn/download/
安装dk
依赖: 自行百度, 请确保环境变量配置正确
安装maven
依赖: 自行百度, 请确保环境变量配置正确
安装git
依赖: 自行百度, 请确保环境变量配置正确
2.检出代码 cmd 运行:
d:git clone https://gitee.com/18010473990/wvp-GB28181.git
3.编译静态页面 cmd 运行:
d:cd wvp-GB28181\web_src
npm install
npm run build
编译如果报错, 一般都是网络问题, 导致的依赖包下载失败
编译完成后在src\main\resources
下出现static
目录
4.打包项目, 生成可执行jar
d:cd wvp-GB28181
mvn package
编译如果报错, 一般都是网络问题, 导致的依赖包下载失败
编译完成后在target目录下出现wvp-2.3.5.RELEASE.jar
5.运行wvp (编译好的项目,可以直接idea运行)
配置运行 SIP
// An highlighted block
spring:
# REDIS数据库配置
redis:
# [必须修改] Redis服务器IP, REDIS安装在本机的,使用127.0.0.1
host: 10.221.51.30
# [必须修改] 端口号
port: 6379
# [可选] 数据库 DB
database: 13
# [可选] 访问密码,若你的redis服务器没有设置密码,就不需要用密码去连接
password: xxxxxx
# [可选] 超时时间
timeout: 10000
# [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置
datasource:
name: wvp
url: jdbc:mysql://11.221.51.41:3306/wvp?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true
username: xxxxxx
password: xxxxxx
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
#name: eiot
#url: jdbc:sqlite::resource:wvp.sqlite
#username:
#password:
#type: com.alibaba.druid.pool.DruidDataSource
#driver-class-name: org.sqlite.JDBC
#max-active: 1
#min-idle: 1
# [可选] WVP监听的HTTP端口, 网页和接口调用都是这个端口
server:
port: 18080
# [可选] HTTPS配置, 默认不开启
ssl:
# [可选] 是否开启HTTPS访问
enabled: false
# [可选] 证书文件路径,放置在resource/目录下即可,修改xxx为文件名
key-store: classpath:xxx.jks
# [可选] 证书密码
key-password: password
# [可选] 证书类型, 默认为jks,根据实际修改
key-store-type: JKS
# 作为28181服务器的配置
sip:
# [必须修改] 本机的IP, 必须是网卡上的IP
ip: 11.221.41.118
# [可选] 28181服务监听的端口
port: 5060
# 根据国标6.1.2中规定,domain宜采用ID统一编码的前十位编码。国标附录D中定义前8位为中心编码(由省级、市级、区级、基层编号组成,参照GB/T 2260-2007)
# 后两位为行业编码,定义参照附录D.3
# 3701020049标识山东济南历下区 信息行业接入
# [可选]
domain: 44030550031322010002
# [可选]
id: 44030550031322010001
# [可选] 默认设备认证密码,后续扩展使用设备单独密码
password: admin123
#zlm服务器配置
media: #zlm服务器的ip与http端口, 重点: 这是http端口
# [必须修改] zlm服务器的内网IP
ip: 10.220.55.31
# [可选] zlm服务器的公网IP, 内网部署置空即可
wanIp:
# [可选] zlm服务器的hook所使用的IP, 默认使用sip.ip
hookIp:
# [必须修改] zlm服务器的http.port
httpPort: 8089
# [可选] zlm服务器的http.sslport, 置空使用zlm配置文件配置
httpSSlPort:
# [可选] zlm服务器的rtmp.port, 置空使用zlm配置文件配置
rtmpPort:
# [可选] zlm服务器的rtmp.sslport, 置空使用zlm配置文件配置
rtmpSSlPort:
# [可选] zlm服务器的 rtp_proxy.port, 置空使用zlm配置文件配置
rtpProxyPort:
# [可选] zlm服务器的 rtsp.port, 置空使用zlm配置文件配置
rtspPort:
# [可选] zlm服务器的 rtsp.sslport, 置空使用zlm配置文件配置
rtspSSLPort:
# [可选] 是否自动配置ZLM, 如果希望手动配置ZLM, 可以设为false, 不建议新接触的用户修改
autoConfig: true
# [可选] zlm服务器的hook.admin_params=secret
secret: 035c73f7-bb6b-4889-a715-d9eb2d1925cc
# [可选] zlm服务器的general.streamNoneReaderDelayMS
streamNoneReaderDelayMS: 38000 # 无人观看多久自动关闭流, -1表示永不自动关闭,即 关闭按需拉流
# 启用多端口模式, 多端口模式使用端口区分每路流,兼容性更好。 单端口使用流的ssrc区分, 点播超时建议使用多端口测试
rtp:
# [可选] 是否启用多端口模式, 开启后会在portRange范围内选择端口用于媒体流传输
enable: true
# [可选] 在此范围内选择端口用于媒体流传输,
portRange: 30000,30500 # 端口范围
# [可选] 日志配置, 一般不需要改
logging:
file:
name: logs/wvp.log
max-history: 30
max-size: 10MB
total-size-cap: 300MB
level:
com:
genersoft:
iot: info
# [根据业务需求配置]
userSettings:
# [可选] 自动点播, 使用固定流地址进行播放时,如果未点播则自动进行点播, 需要rtp.enable=true
autoApplyPlay: false
# [可选] 部分设备需要扩展SDP,需要打开此设置
seniorSdp: false
# 保存移动位置历史轨迹:true:保留历史数据,false:仅保留最后的位置(默认)
savePositionHistory: false
# 点播等待超时时间,单位:毫秒
playTimeout: 10000
# 等待音视频编码信息再返回, true: 可以根据编码选择合适的播放器,false: 可以更快点播
waitTrack: false
# 是否开启接口鉴权
interfaceAuthentication: true
# 在线文档: swagger-ui(生产环境建议关闭)
springfox:
documentation:
swagger-ui:
enabled: false
6.启动成功 (记得启动zlm服务器)
访问web端
127.0.0.1:18080
用户名:
admin
密码:
admin
- 首页
配置 海康-ipc与nvr 摄像头GB28181协议传输
// 配置描述
平台接入选择 28181;传输协议可自选,公网建议选择TCP;协议版本选择 GB/T28181-2016(目前WVP只支持这个协议,2011后面会适配)
SIP服务器ID 和 SIP服务器域,密码 要和 WVP 项目中配置的一致。
SIP服务器地址 填写 WVP 项目的地址,内网填写内网IP地址,云服务器填写公网IP,端口写配置文件中配置的端口。
因为摄像头平台接入配置好后,摄像头会请求 SIP 服务,所以这个一定要配置好。
配置完成后就可以运行项目了!如果 SIP 服务启动成功后,会看到这个日志 "Sip Server 启动成功":
配置 大华-ipc摄像头GB28181协议传输
注册成功,查看设备列表 -通道
预览->实时视频流
预览->回放视频
云台控制
拉流代理
以上总结全部是个人和网上经验总结,如有雷同,请谅解,欢迎大家研讨技术,点关注,后续继续更新…