{"_id":"@andrkrn/ffprobe-static","name":"@andrkrn/ffprobe-static","dist-tags":{"latest":"5.2.0"},"versions":{"5.2.0":{"name":"@andrkrn/ffprobe-static","version":"5.2.0","description":"ffprobe binaries for macOS, Linux and Windows","scripts":{"install":"node install.js","prepublishOnly":"npm run install"},"@andrkrn/ffprobe-static":{"binary-path-env-var":"FFPROBE_BIN","binary-release-tag-env-var":"FFPROBE_BINARY_RELEASE","binary-release-tag":"b6.0","binaries-url-env-var":"FFPROBE_BINARIES_URL","executable-base-name":"ffprobe"},"repository":{"type":"git","url":"git+https://github.com/eugeneware/ffmpeg-static.git"},"keywords":["ffprobe","static","binary","binaries","mac","linux","windows"],"authors":["Eugene Ware <eugene@noblesamurai.com>","Jannis R <mail@jannisr.de>"],"contributors":[{"name":"Thefrank","url":"https://github.com/Thefrank"},{"name":"Emil Sivervik","email":"emil@sivervik.com"}],"license":"GPL-3.0-or-later","bugs":{"url":"https://github.com/eugeneware/ffmpeg-static/issues"},"engines":{"node":">=16"},"dependencies":{"@derhuerst/http-basic":"^8.2.0","env-paths":"^2.2.0","https-proxy-agent":"^5.0.0","progress":"^2.0.3"},"devDependencies":{"any-shell-escape":"^0.1.1"},"main":"index.js","types":"types/index.d.ts","gitHead":"7407c144d1e7b3ad93c6ef029827051c23c5e094","homepage":"https://github.com/eugeneware/ffmpeg-static#readme","_id":"@andrkrn/ffprobe-static@5.2.0","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-TzczGqUMBS2zFXnF+9Cy/icmfVlAFS6cjQTF7faHk92NGfSzhwZPWXEUKt4auQYQlyxUfA88ScpmzGzLNACVOg==","shasum":"c30363040d90b8b7d5bb83a72537ccf34db81a8d","tarball":"https://registry.npmjs.org/@andrkrn/ffprobe-static/-/ffprobe-static-5.2.0.tgz","fileCount":7,"unpackedSize":48003,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFyxoWx1maKMdLZjFQ8G7pxfISvGyHf1ssDKPGpmGG3SAiEAxrGlobL9EDwIpyE59zu1BrAyUazjnzjIu92PEQSXW9k="}]},"_npmUser":{"name":"andrkrn","email":"andrikurnia@live.com"},"directories":{},"maintainers":[{"name":"andrkrn","email":"andrikurnia@live.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffprobe-static_5.2.0_1700117845369_0.1971376445798798"},"_hasShrinkwrap":false}},"time":{"created":"2023-11-16T06:57:24.846Z","5.2.0":"2023-11-16T06:57:25.560Z","modified":"2023-11-16T06:57:25.820Z"},"maintainers":[{"name":"andrkrn","email":"andrikurnia@live.com"}],"description":"ffprobe binaries for macOS, Linux and Windows","homepage":"https://github.com/eugeneware/ffmpeg-static#readme","keywords":["ffprobe","static","binary","binaries","mac","linux","windows"],"repository":{"type":"git","url":"git+https://github.com/eugeneware/ffmpeg-static.git"},"contributors":[{"name":"Thefrank","url":"https://github.com/Thefrank"},{"name":"Emil Sivervik","email":"emil@sivervik.com"}],"bugs":{"url":"https://github.com/eugeneware/ffmpeg-static/issues"},"license":"GPL-3.0-or-later","readme":"# ffprobe-static\n\nStatic **ffprobe (from the [ffmpeg](https://ffmpeg.org) project) binaries for macOS, Linux, Windows.**\n\nSupports macOS (64-bit and arm64), Linux (32 and 64-bit, armhf, arm64), Windows (32 and 64-bit). [The ffmpeg version currently used is `6.0`.](https://github.com/eugeneware/ffprobe-static/releases/tag/b6.0)\n\n[![npm version](https://img.shields.io/npm/v/ffprobe-static.svg)](https://www.npmjs.com/package/ffprobe-static)\n![minimum Node.js version](https://img.shields.io/node/v/ffprobe-static.svg)\n\n*Note:* The version of `ffprobe-static` follows [SemVer](http://semver.org). When releasing new versions, **we do *not* consider breaking changes in `ffprobe` itself**, but only the JS interface (see below). For example, `ffprobe-static@4.5.0` might download ffprobe `5.0`. To prevent an `ffprobe-static` upgrade downloading backwards-incompatible ffprobe 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).\n\n## Installation\n\n``` bash\n$ npm install ffprobe-static\n```\n\n*Note:* During installation, it will download the appropriate `ffprobe` binary from the [`b6.0` GitHub release](https://github.com/eugeneware/ffprobe-static/releases/tag/b6.0). Use and distribution of the binary releases of `ffprobe` are covered by their respective license.\n\n### Custom binaries url\n\nBy default, the `ffprobe` binary will get downloaded from `https://github.com/eugeneware/ffprobe-static/releases/download`. To customise this, e.g. when using a mirror, set the `FFPROBE_BINARIES_URL` environment variable.\n\n```shell\nexport FFPROBE_BINARIES_URL=https://cdn.npmmirror.com/binaries/ffprobe-static\nnpm install ffprobe-static\n```\n\n### Electron & other cross-platform packaging tools\n\nBecause `ffprobe-static` will download a binary specific to the OS/platform, you need to purge `node_modules` before (re-)packaging your app *for a different OS/platform* ([read more in #35](https://github.com/eugeneware/ffprobe-static/issues/35#issuecomment-630225392)).\n\n## Example Usage\n\nReturns the path of a statically linked ffprobe binary on the local filesystem.\n\n``` js\nconst pathToFfprobe = require('ffprobe-static');\nconsole.log(pathToFfprobe)\n// /Users/j/playground/node_modules/ffprobe-static/ffprobe\n```\n\nCheck the [example script](example.js) for a more thorough example.\n\n## Sources of the binaries\n\nThe binaries downloaded by `ffprobe-static` are from these locations:\n\n- [Windows x64 builds](https://www.gyan.dev/ffmpeg/builds/)\n- [Windows x86 builds](https://github.com/sudo-nautilus/FFmpeg-Builds-Win32/)\n- [Linux x64/x86/ARM/ARM64 builds](https://johnvansickle.com/ffmpeg/)\n- macOS [x64 (Intel)](https://evermeet.cx/pub/ffmpeg/) & [ARM64 (Apple Silicon)](https://osxexperts.net/) builds\n\n## Show your support\n\nThis 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:\n\n- **Linux builds**: [John Van Sickle](https://www.johnvansickle.com/ffmpeg/)\n- **macOS builds**: [Helmut K. C. Tessarek](https://evermeet.cx/ffmpeg/#donations)\n","readmeFilename":"README.md"}