vue2.0接入海康威視控件包V3.3.0——海康威視攝像頭接入前端頁面(webSDK包)模式

在本文中,我們將探討如何使用 Vue 2.0 框架來集成海康威視的視頻監控設備,以及如何在 Web 應用程序的前端界面中實現對攝像頭的訪問和管理功能。我們還將介紹如何利用海康威視的 webSDK 包來實現這一目標。

準備工作

首先,我們需要確保開發環境已經準備就緒。這包括安裝必要的軟件工具,如 Node.js 和 npm(Node Package Manager),它們對於基於 Vue 的項目構建至關重要。此外,還需要下載或購買一個支持 RTSP(Real-Time Streaming Protocol)流媒體協議的海康威視攝像頭,以便進行測試和調試。

創建 Vue 應用

使用 `vue-cli` 腳手架工具快速搭建一個新的 Vue 項目:

npx vue create my-hikvision-app
cd my-hikvision-app
npm run serve

這將啓動一個本地服務器,您可以在瀏覽器中查看默認的 “Hello World” 頁面。接下來,我們可以開始添加一些額外的依賴項和組件來支持與海康威視設備的交互。

安裝依賴

爲了使我們的 Vue 應用能夠與海康威視的攝像頭通信,我們需要安裝兩個重要的庫:`hksdk` 和 `rtsp-stream`。這兩個庫都可以通過 NPM 輕鬆獲取:

npm install hksdk rtsp-stream --save

其中,`hksdk` 是海康威視官方提供的 SDK,它提供了豐富的接口用於控制和管理攝像頭;而 `rtsp-stream` 則是一個 JavaScript 庫,可以用來播放 RTSP 視頻流。

配置 HKSWK SDK

在您的項目中找到 `src/main.js` 文件,然後在該文件的頂部導入 `hksdk`:

import hksdk from 'hksdk';

接着,在適當的位置初始化 SDK,例如在 `created()` hook 中:

export default {
name: 'App',
data() {
return {}
},
mounted() {
// Initialize the HKSWK SDK here
const config = {
url: '' // Your camera's IP address or domain name
};
this.camera = new hksdk.Camera(config);
}
};

請注意,上述代碼中的 `url` 需要替換爲您自己的海康威視攝像頭的實際 URL。

加載攝像頭預覽

要顯示攝像頭實時圖像,我們需要在模板部分添加相應的 HTML 元素,並在 JavaScript 中處理數據綁定。以下是如何在一個新的組件中實現的示例:

components/HikvisionViewer.vue:

<template>
<div class="hikvision-viewer">
<video id="preview" autoplay playsinline muted></video>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { VideoStreamType } from 'rtsp-stream';
import axios from 'axios';

export default defineComponent({
props: ['deviceId'],
setup(props, context) {
let videoElement = null;
if (context.rootContext && context.rootContext.$refs['preview']) {
videoElement = context.rootContext.$refs['preview'] as HTMLVideoElement;
} else if (document.getElementById('preview')) {
videoElement = document.getElementById('preview') as HTMLVideoElement;
}

async function startPreview(deviceId) {
try {
await this.camera.connect();
console.log('Connected to camera');
this.camera.startPreview();

const streamOptions = await this.camera.getStreamUrl([{
type: VideoStreamType.Main,
subtype: 1,
width: 640,
height: 360
}]);

const stream = await axios.get(streamOptions[0], { responseType: 'blob' });
const url = window.URL.createObjectURL(new Blob([stream.data]));
videoElement?.src = url;
} catch (error) {
console.error(`Error starting preview for device ${deviceId}`, error);
}
}

function stopPreview() {
this.camera.stopPreview();
this.camera.disconnect();
}

return {
startPreview,
stopPreview
};
}
});
</script>

在這個組件中,我們定義了 `startPreview` 和 `stopPreview` 函數,分別用於開始和停止攝像頭預覽。這些函數將依賴於 `hksdk` 和 `rtsp-stream` 庫來執行實際的網絡操作。

整合到頁面佈局中

現在我們已經有了基本的組件,可以將它們集成到我們的應用程序的主頁面上。在 `src/views/Home.vue` 中,你可以這樣使用 `HikvisionViewer` 組件:

<template>
<div class="home">
<h1>Welcome to Your Vue.js + Hikvision App</h1>
<!-- Include our custom component -->
<HikvisionViewer :deviceId="selectedDeviceId" @update:deviceId="onUpdateDeviceId" />
<!-- Device selection input -->
<select v-model="selectedDeviceId">
<option disabled value="">Select a Camera</option>
<option v-for="(id, idx) in availableDevices" :key="idx" :value="id">{{ id }}</option>
</select>
<!-- Control buttons -->
<button @click="startPreview">Start Preview</button>
<button @click="stopPreview">Stop Preview</button>
</div>
</template>

<script lang="ts">
import { defineComponent, ref } from 'vue';
import HikvisionViewer from '@/components/HikvisionViewer.vue';

export default defineComponent({
components: {
HikvisionViewer
},
setup() {
const selectedDeviceId = ref('');
const onUpdateDeviceId = (deviceId: string) => {
selectedDeviceId.value = deviceId;
};

const startPreview = () => {
if (!selectedDeviceId.value) return;
console.log('Trying to start preview for', selectedDeviceId.value);
};

const stopPreview = () => {
console.log('Stopping preview');
};

return {
selectedDeviceId,
availableDevices: [], // TODO: Fetch list of devices from server
onUpdateDeviceId,
startPreview,
stopPreview
};
}
});
</script>

這個 `Home.vue` 組件負責管理攝像頭的選擇、狀態更新以及提供用戶界面來控制攝像頭預覽的啓動和停止。

七、總結

在這篇文章中,我們概述瞭如何使用 Vue 2.0 作爲前端框架來構建一個簡單的應用程序,該應用程序允許用戶從網頁上訪問和管理他們的海康威視攝像頭。儘管本文只覆蓋了一個基本的功能集,但它是進一步複雜化和擴展的基礎。在實際的項目中,你可能需要考慮更多的安全措施、錯誤處理、性能優化以及其他高級特性。

为您推荐