forked from peterforgacs/ffmpeg-normalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 768 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 768 Bytes
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
37
38
{
"name": "ffmpeg-normalize",
"version": "1.6.0",
"description": "Audio normalization with ffmpeg.",
"license": "MIT",
"repository": "peterforgacs/ffmpeg-normalize",
"author": {
"name": "Peter Forgacs",
"email": "peter@sexybuddha.com",
"url": "https://peterforgacs.github.io"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "node_modules/.bin/tsc --lib es2015 src/normalizer.ts",
"test": "ava"
},
"files": [
"index.js",
"src/*.js"
],
"keywords": [
"ffmpeg-normalize",
"audio normalization",
"loudness normalization",
"ebu R128"
],
"dependencies": {
"ffmpeg-static": "2.2.1"
},
"devDependencies": {
"@types/ffmpeg-static": "^2.0.0",
"@types/node": "^10.12.27",
"ava": "^1.4.1",
"typescript": "^2.8.3"
}
}