@backendsuraj/offline-ffprobe 8.0.1 → 8.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -1
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -37,7 +37,7 @@ fluentFfmpeg('input.mp4').ffprobe((err, data) => {
37
37
  ## Binary Details
38
38
  - **Source**: [BtbN/FFmpeg-Builds](https://github.com/BtbN/FFmpeg-Builds/releases)
39
39
  - **Version**: 8.0.0
40
- - **License**: LGPL 3.0
40
+ - **License**: GPL 3.0
41
41
 
42
42
  ## Supported Platforms
43
43
  | OS | Architecture | Status |
package/index.js CHANGED
@@ -30,4 +30,4 @@ if (!fs.existsSync(ffprobePath)) {
30
30
  }
31
31
 
32
32
  exports.path = ffprobePath;
33
- exports.version = '8.0.1';
33
+ exports.version = '8.0.2';
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@backendsuraj/offline-ffprobe",
3
- "version": "8.0.1",
3
+ "version": "8.0.2",
4
4
  "description": "Platform independent binary installer of FFprobe for node projects (Offline Friendly)",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "author": "Suraj",
8
- "license": "LGPL-3.0",
8
+ "license": "GPL-3.0",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "https://github.com/backendsuraj/offline-ffmpeg"
12
12
  },
13
13
  "optionalDependencies": {
14
- "@backendsuraj/offline-ffprobe-win32-x64": "8.0.1",
15
- "@backendsuraj/offline-ffprobe-linux-x64": "8.0.1"
14
+ "@backendsuraj/offline-ffprobe-win32-x64": "8.0.2",
15
+ "@backendsuraj/offline-ffprobe-linux-x64": "8.0.2"
16
16
  }
17
17
  }