HTML realizes real-time monitoring function of Hikvision camera

HTML realizes real-time monitoring function of Hikvision camera

Recently the company has arranged to do some CCFA stuff, one of which is to make a web page to play the real-time monitoring of the camera. I searched Baidu for a long time online, and many of them are implemented directly using the VLC plug-in. However, the mainstream browsers currently no longer support the VLC plug-in, and I have not succeeded after a long time.

Most of the online implementations are as follows:

<object type='application/x-vlc-plugin' id='vlc' events='True' width="720" height="540"
pluginspage="http://www.videolan.org" codebase="http://downloads.videolan.org/pub/videolan/vlc-webplugins/2.0.6/npapi-vlc-2.0.6.tar.xz">
<param name='mrl' value=rtsp://[username]:[password]@[ip]:[port]/[codec]/[channel]/[subtype]/av_stream' />
<param name='volume' value='50' />
<param name='autoplay' value='true' />
<param name='loop' value='false' />
<param name='fullscreen' value='false' />
</object>

I accidentally found an article that said that you can use tools to push the stream, and then use <video> to play it on the web page.

The final effect diagram:

After testing, it was found that there would normally be a delay of about 2 seconds, which is still within an acceptable range.

Summarize

The above is the editor's introduction to HTML to realize the real-time monitoring function of Hikvision cameras. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Install ethereum/Ethereum from scratch under CentOS7

>>:  A brief discussion on front-end network, JavaScript optimization and development tips

Recommend

How to achieve the maximum number of connections in mysql

Table of contents What is the reason for the sudd...

Detailed steps to configure MySQL remote connection under Alibaba Cloud

Preface As we all know, by default, the MySQL ins...

my.cnf parameter configuration to optimize InnoDB engine performance

I have read countless my.cnf configurations on th...

What magical uses does CSS filter have

background Basic Concepts CSS filter property app...

W3C Tutorial (7): W3C XSL Activities

A style sheet describes how a document should be ...

win2008 server security settings deployment document (recommended)

I had been working on the project before the New ...

Implementation example of Vue+Element+Springboot image upload

Recently, I happened to be in touch with the vue+...

Steps to build MHA architecture deployment in MySQL

Table of contents MAH 1. Introduction to MAH Arch...

How to prevent computer slowdown when WIN10 has multiple databases installed

Enable the service when you need it, and disable ...

Analysis of the Neglected DOCTYPE Description

doctype is one of them: <!DOCTYPE HTML PUBLIC &...

An article to understand the execution process of MySQL query statements

Preface We need to retrieve certain data that mee...

Talk about implicit conversion in MySQL

In the course of work, you will encounter many ca...

Solve the problem that Mysql5.7.17 fails to install and start under Windows

Install MySQL for the first time on your machine....

What is TypeScript?

Table of contents 1. JavaScript issues 2. Advanta...