-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
32 lines (32 loc) · 1.07 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
{
"name": "nodcam",
"version": "1.0.0",
"description": "Access and stream web camera in nodejs using ffmpeg, websockets and HTML5.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"express-server": "node index.js",
"streaming-server": "node stream.js 12345",
"ffmpeg": "ffmpeg -f vfwcap -video_size 640x480 -framerate 24 -i video='BisonCam, NB Pro':audio='Line In (2- High Definition Audio Device)' abc.mp4 -movflags faststart -framerate 15 -vcodec mpeg1video -preset veryfast -maxrate 3000k -bufsize 4000k -c:a aac -b:a 160k -ar 44100 -b:a 128k -f mpeg1video http://localhost:8082/12345/640/480"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tahaipek/Nodcam.git"
},
"keywords": [
"nodejs",
"webcam",
"camera",
"streaming"
],
"author": "Taha İPEK",
"license": "ISC",
"bugs": {
"url": "https://github.com/tahaipek/Nodcam/issues"
},
"homepage": "https://github.com/tahaipek/Nodcam#readme",
"dependencies": {
"express": "^4.14.0",
"ws": "^1.1.1"
}
}