type
status
date
slug
summary
tags
category
icon
password
Language
Web端集成海康视频监控画面
海康NVR(Network Video Recorder)
海康威视(Hikvision)是一家全球领先的视频监控设备和解决方案提供商,其产品包括网络视频录像机(NVR)以及摄像头、监视器、存储设备、软件和其他安全监控相关的产品。
获取录像机RTSP视频流
- 取流格式
- 这里是通过录像机的ip取的RTSP流
RTSPtoWeb转化视频格式
下载RTSPtoWeb工程
- 安装GO环境
- 项目根目录编译RTSPtoWeb
go build
- 运行
./RTSPtoWeb
- 在海康威视录像机界面设置摄像头的编码格式
RTSPtoWEB添加通道
RTSPtoWEB页面效果
通过RTSPtoWeb的接口再次取流
RTSPtoWeb API
- 列出所有流
GET /streams
curl http://demo:demo@127.0.0.1:8083/streams
- 获取某个流信息
GET /stream/{STREAM_ID}/info
curl http://demo:demo@127.0.0.1:8083/stream/{STREAM_ID}/info
- HLS-LL视频接口
GET /stream/{STREAM_ID}/channel/{CHANNEL_ID}/hlsll/live/index.m3u8
curl http://127.0.0.1:8083/stream/{STREAM_ID}/channel/{CHANNEL_ID}/hlsll/live/index.m3u8
自定义HTML页面播放画面
效果
- 作者:何以问
- 链接:https://heyiwen.com/article/other-1
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。