-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
36 lines (36 loc) · 1.21 KB
/
package.json
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
{
"name": "ke-rtsp",
"version": "1.0.1",
"description": "一种基于Media Source Extensions(简称MSE)技术实现的html5实时视频直播方案。Node.js调用ffmpeg包装rtsp流,然后通过socket.io转发包装后的流,前端html5获取流数据并通过MSE把流一点一点喂给video标签进行视频播放。能够支持谷歌浏览器、火狐浏览器、Edge浏览器、安卓原生浏览器,不支持IE。高性能,支持同时转发多路视频,占用硬件资源不多。低延时,延时1s。",
"main": "./dist/Index.js",
"types": "./dist/Index.d.ts",
"typings": "./dist/Index.d.ts",
"scripts": {
"build": "tsc",
"sample": "node ./sample/index.js"
},
"keywords": [
"media source extensions",
"mse",
"ffmpeg",
"socket.io"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kekeqy/ke-rtsp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kekeqy/ke-rtsp/issues"
},
"homepage": "https://github.com/kekeqy/ke-rtsp#readme",
"devDependencies": {
"@types/node": "^10.12.9",
"@types/socket.io": "^2.1.0",
"typescript": "^3.1.6"
},
"dependencies": {
"socket.io": "^2.1.1"
}
}