Skip to content

Commit

Permalink
use 5.0 binaries; 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Mar 2, 2022
1 parent cc28f79 commit e546e43
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

**[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 `4.4.1`.](https://github.com/eugeneware/ffmpeg-static/releases/tag/b4.4.1)
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`.](https://github.com/eugeneware/ffmpeg-static/releases/tag/b5.0)

[![npm version](https://img.shields.io/npm/v/ffmpeg-static.svg)](https://www.npmjs.com/package/ffmpeg-static)
![minimum Node.js version](https://img.shields.io/node/v/ffmpeg-static.svg)

*Note:* The version of `ffmpeg-static` follows [SemVer](http://semver.org). When releasing new versions, **we do *not* consider breaking changes in `ffmpeg` itself**, but only the JS interface (see below). For example, `ffmpeg-static@4.4.1` downloads ffmpeg `4.4.1`. To prevent an `ffmpeg-static` upgrade downloading backwards-incompatible ffmpeg versions, [use a strict version range](https://docs.npmjs.com/files/package.json#dependencies) for it or use a [lockfile](https://docs.npmjs.com/files/package-lock.json).
*Note:* The version of `ffmpeg-static` follows [SemVer](http://semver.org). When releasing new versions, **we do *not* consider breaking changes in `ffmpeg` itself**, but only the JS interface (see below). For example, `ffmpeg-static@4.5.0` downloads ffmpeg `5.0`. To prevent an `ffmpeg-static` upgrade downloading backwards-incompatible ffmpeg versions, [use a strict version range](https://docs.npmjs.com/files/package.json#dependencies) for it or use a [lockfile](https://docs.npmjs.com/files/package-lock.json).

Also check out [`node-ffmpeg-installer`](https://github.com/kribblo/node-ffmpeg-installer)!

Expand All @@ -19,7 +19,7 @@ This module is installed via npm:
$ npm install ffmpeg-static
```

*Note:* During installation, it will download the appropriate `ffmpeg` binary from the [`b4.4.1` GitHub release](https://github.com/eugeneware/ffmpeg-static/releases/tag/b4.4.1). Use and distribution of the binary releases of FFmpeg are covered by their respective license.
*Note:* During installation, it will download the appropriate `ffmpeg` binary from the [`b5.0` GitHub release](https://github.com/eugeneware/ffmpeg-static/releases/tag/b5.0). Use and distribution of the binary releases of FFmpeg are covered by their respective license.

### Electron & other cross-platform packaging tools

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffmpeg-static",
"version": "4.4.1",
"version": "5.0.0",
"description": "ffmpeg static binaries for Mac OSX and Linux and Windows",
"main": "index.js",
"files": [
Expand All @@ -15,8 +15,8 @@
"prepublishOnly": "npm run lint && npm run install && npm test"
},
"ffmpeg-static": {
"binary-release-tag": "b4.4.1",
"binary-release-name": "4.4.1"
"binary-release-tag": "b5.0",
"binary-release-name": "5.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit e546e43

Please sign in to comment.