From 8f4094b572e92e7fc228fbf412b032e6b5803e74 Mon Sep 17 00:00:00 2001 From: wangyu Date: Thu, 29 Sep 2022 23:03:11 +0800 Subject: [PATCH] update ffprobe 5.1.1 --- LICENSE | 21 +++++++++++++++++++++ README.md | 12 +++++++++--- package.json | 8 ++++---- 3 files changed, 34 insertions(+), 7 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..94835a6 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 6205728..a924f62 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,10 @@ **[ffmpeg](https://ffmpeg.org) static binaries for Mac OSX, Linux, Windows.** -Supports macOS (64-bit and arm64), Linux (32 and 64-bit, armhf, arm64), Windows (32 and 64-bit). [The ffmpeg version currently used is `5.0.1`.](https://github.com/blogwy/ffprobe-static-installer/releases/tag/b5.0.1) +Supports macOS (64-bit and arm64), Linux (32 and 64-bit, armhf, arm64), Windows (32 and 64-bit). **This project is a fork of [ffmpeg-static](https://github.com/eugeneware/ffmpeg-static)** -**Binaries from [node-ffprobe-installer](https://github.com/SavageCore/node-ffprobe-installer)** - ## Installation This module is installed via npm: @@ -43,6 +41,14 @@ console.log(pathToFFprobe); Check the [example script](example.js) for a more thorough example. +## The binaries + +* Linux (arm, arm64, ia32, x64): https://www.johnvansickle.com/ffmpeg/ +* macOS (x64): https://evermeet.cx/ffmpeg/ +* macOS (arm64): https://formulae.brew.sh/formula/ffmpeg +* Windows 32-bit: https://github.com/sudo-nautilus/FFmpeg-Builds-Win32/ +* Windows 64-bit: https://www.gyan.dev/ffmpeg/builds/ + ## Thanks - [ffmpeg-static](https://github.com/eugeneware/ffmpeg-static) diff --git a/package.json b/package.json index 01474a7..5f6e4f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ffprobe-static-installer", - "version": "5.1.4", + "version": "5.2.0", "description": "ffprobe static binaries for Mac OSX and Linux and Windows", "main": "index.js", "files": [ @@ -17,8 +17,8 @@ "prepublishOnly": "npm run lint && npm run install && npm test" }, "ffprobe-static-installer": { - "binary-release-tag": "b5.0.1", - "binary-release-name": "5.0.1" + "binary-release-tag": "5.1.1", + "binary-release-name": "5.1.1" }, "repository": { "type": "git", @@ -36,7 +36,7 @@ ], "authors": [], "contributors": [], - "license": "GPL-3.0-or-later", + "license": "MIT License", "bugs": { "url": "https://github.com/blogwy/ffprobe-static-installer/issues" },