summaryrefslogtreecommitdiff
path: root/node_modules/ffmpeg-static/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/ffmpeg-static/README.md')
-rw-r--r--node_modules/ffmpeg-static/README.md58
1 files changed, 0 insertions, 58 deletions
diff --git a/node_modules/ffmpeg-static/README.md b/node_modules/ffmpeg-static/README.md
deleted file mode 100644
index 564b245..0000000
--- a/node_modules/ffmpeg-static/README.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# ffmpeg-static
-
-**[ffmpeg](https://ffmpeg.org) static binaries for Mac OSX and Linux and Windows.**
-
-Supports macOS (64-bit), Linux (32 and 64-bit, armhf, arm64) and Windows (32 and 64-bit). [The ffmpeg version currently used is `4.2.2`.](https://github.com/eugeneware/ffmpeg-static/releases/tag/b4.2.2)
-
-*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). To stop `ffmpeg-static` from breaking your code by getting updated, [lock the version down](https://docs.npmjs.com/files/package.json#dependencies) or use a [lockfile](https://docs.npmjs.com/files/package-lock.json).
-
-[![npm version](https://img.shields.io/npm/v/ffmpeg-static.svg)](https://www.npmjs.com/package/ffmpeg-static)
-[![build status](https://travis-ci.org/eugeneware/ffmpeg-static.svg?branch=master)](http://travis-ci.org/eugeneware/ffmpeg-static)
-![minimum Node.js version](https://img.shields.io/node/v/ffmpeg-static.svg)
-
-## Installation
-
-This module is installed via npm:
-
-``` bash
-$ npm install ffmpeg-static
-```
-
-*Note:* During installation, it will download the appropriate `ffmpeg` binary from the [`b4.2.2` GitHub release](https://github.com/eugeneware/ffmpeg-static/releases/tag/b4.2.2). Use and distribution of the binary releases of FFmpeg are covered by their respective license.
-
-## Example Usage
-
-Returns the path of a statically linked ffmpeg binary on the local filesystem.
-
-``` js
-var pathToFfmpeg = require('ffmpeg-static');
-console.log(pathToFfmpeg);
-```
-
-```
-/Users/j/playground/node_modules/ffmpeg-static/ffmpeg
-```
-
-Check the [example script](example.js) for a more thorough example.
-
-## Sources of the binaries
-
-[The build script](build/index.sh) downloads binaries from these locations:
-
-- [Windows builds](https://ffmpeg.zeranoe.com/builds/win64/static/)
-- [Linux builds](https://johnvansickle.com/ffmpeg/)
-- [macOS builds](https://evermeet.cx/pub/ffmpeg/)
-
-The build script extracts build information and (when possible) the license file from the downloaded package or the distribution server. Please consult the individual build's project site for exact source versions, which you can locate based on the version information included in the README file.
-
-## Show your support
-
-This npm package includes statically linked binaries that are produced by the following individuals. Please consider supporting and donating to them who have been providing quality binary builds for many years:
-
-- **Windows builds**: [Kyle Schwarz](https://ffmpeg.zeranoe.com/builds/)
-- **Linux builds**: [John Van Sickle](https://www.johnvansickle.com/ffmpeg/)
-- **macOS builds**: [Helmut K. C. Tessarek](https://evermeet.cx/ffmpeg/#donations)
-
-## Building the project
-
-The `unzip`, `tar` and `7zr` CLI executables need to be installed. On macOS, use `brew install p7zip gnu-tar xz`.