@backendsuraj/offline-ffmpeg 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
@@ -35,7 +35,7 @@ fluentFfmpeg('input.mp4').save('output.mp3');
35
35
  ## Binary Details
36
36
  - **Source**: [BtbN/FFmpeg-Builds](https://github.com/BtbN/FFmpeg-Builds/releases)
37
37
  - **Version**: 8.0.0
38
- - **License**: LGPL 3.0
38
+ - **License**: GPL 3.0
39
39
 
40
40
  ## Supported Platforms
41
41
  | OS | Architecture | Status |
package/index.js CHANGED
@@ -30,4 +30,4 @@ if (!fs.existsSync(ffmpegPath)) {
30
30
  }
31
31
 
32
32
  exports.path = ffmpegPath;
33
- exports.version = '8.0.1';
33
+ exports.version = '8.0.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backendsuraj/offline-ffmpeg",
3
- "version": "8.0.1",
3
+ "version": "8.0.2",
4
4
  "description": "Platform independent binary installer of FFmpeg for node projects (Offline Friendly)",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -8,13 +8,13 @@
8
8
  "test": "node test.js"
9
9
  },
10
10
  "author": "Suraj",
11
- "license": "LGPL-3.0",
11
+ "license": "GPL-3.0",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "https://github.com/backendsuraj/offline-ffmpeg"
15
15
  },
16
16
  "optionalDependencies": {
17
- "@backendsuraj/offline-ffmpeg-win32-x64": "8.0.1",
18
- "@backendsuraj/offline-ffmpeg-linux-x64": "8.0.1"
17
+ "@backendsuraj/offline-ffmpeg-win32-x64": "8.0.2",
18
+ "@backendsuraj/offline-ffmpeg-linux-x64": "8.0.2"
19
19
  }
20
20
  }