{"_id":"@ffmpeg-installer/ffmpeg","_rev":"30-4c265f1b7f258c80e9191d34357bb401","name":"@ffmpeg-installer/ffmpeg","time":{"modified":"2022-06-12T17:54:11.982Z","created":"2016-09-05T10:01:44.506Z","1.0.0":"2016-09-05T10:01:44.506Z","1.0.1":"2016-09-05T10:13:55.998Z","1.0.2":"2016-09-19T15:33:55.561Z","1.0.3":"2016-09-20T18:40:01.942Z","1.0.4":"2016-09-24T14:08:50.831Z","1.0.5":"2016-09-24T14:33:57.570Z","1.0.6":"2016-09-27T12:43:35.532Z","1.0.7":"2016-09-27T12:44:43.069Z","1.0.8":"2016-09-29T17:20:26.916Z","1.0.9":"2016-09-29T17:44:30.580Z","1.0.10":"2017-04-22T22:14:33.452Z","1.0.11":"2017-04-24T21:03:23.984Z","1.0.12":"2017-04-25T00:00:04.791Z","1.0.13":"2017-09-20T15:20:41.163Z","1.0.14":"2018-05-03T18:30:49.271Z","1.0.15":"2018-05-31T09:19:10.068Z","1.0.16":"2018-10-13T09:42:36.594Z","1.0.17":"2018-12-17T19:28:00.219Z","1.0.18":"2019-06-11T12:57:50.407Z","1.0.19":"2019-07-02T14:58:42.432Z","1.0.20":"2019-09-12T02:56:08.654Z","1.1.0":"2021-07-15T10:47:55.579Z"},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"dist-tags":{"latest":"1.1.0"},"description":"Platform independent binary installer of FFmpeg for node projects","readme":"# node-ffmpeg-installer\n\nPlatform independent binary installer of [FFmpeg](https://ffmpeg.org/) for node projects. Useful for tools that should \"just work\" on multiple environments.\n\nInstalls a binary of `ffmpeg` for the current platform and provides a path and version. Supports Linux, Windows and Mac OS/X.\n\nA combination of package.json fields `optionalDependencies`, `cpu`, and `os` let's the installer only download the binary for the current platform. See also \"Warnings during install\", below.\n\n## Install\n\n    npm install --save @ffmpeg-installer/ffmpeg\n\n## Usage examples\n\n```javascript\nconst ffmpeg = require('@ffmpeg-installer/ffmpeg');\nconsole.log(ffmpeg.path, ffmpeg.version);\n```\n\n### [process.spawn()](https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options)\n\n```javascript\nconst ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;\nconst spawn = require('child_process').spawn;\nconst ffmpeg = spawn(ffmpegPath, args);\nffmpeg.on('exit', onExit);\n```\n\n### [fluent-ffmpeg](https://github.com/fluent-ffmpeg/node-fluent-ffmpeg)\n\n```javascript\nconst ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;\nconst ffmpeg = require('fluent-ffmpeg');\nffmpeg.setFfmpegPath(ffmpegPath);\n```\n\n## Known issues\n\n### Warnings during install\n\nTo automatically choose the binary to install, [optionalDependencies](https://docs.npmjs.com/files/package.json#optionaldependencies) are used. This currently outputs warnings in the console, an issue that is [tracked by the npm team here](https://github.com/npm/npm/issues/9567).\n\n### AWS and/or Elastic Beanstalk\n\nIf you get permissions issues, try adding a .npmrc file with the following:\n\n    unsafe-perm=true\n\nSee [issue #21](https://github.com/kribblo/node-ffmpeg-installer/issues/21)\n\n### Wrong path under Electron with Asar enabled\n\nIt's a [known issue](https://github.com/electron-userland/electron-packager/issues/740) that Asar breaks native paths. As a workaround, if you use Asar, you can do something like this:\n\n```javascript\nconst ffmpegPath = require('@ffmpeg-installer/ffmpeg').path.replace('app.asar', 'app.asar.unpacked');\n```\n\n### Compiling ffmpeg for platforms other than your own\n\nIf you need to install a version of `ffmpeg` that differs than your current platform (e.g. compiling a Linux version to upload to AWS Lambda from MacOS), you can use `npm install @ffmpeg-installer/linux-x64 --force` (substituting `linux-x64` with whatever platform you need). Note that if you are compressing your project into a `.zip` for Lambda, you will need to exclude the other platforms' builds from your archive.\n\n## The binaries\n\nDownloaded from the sources listed at [ffmpeg.org](https://ffmpeg.org/download.html):\n\n* Linux 32-bit: (20181210-g0e8eb07980): https://www.johnvansickle.com/ffmpeg/\n* Linux 64-bit: (20181210-g0e8eb07980): https://www.johnvansickle.com/ffmpeg/\n* Mac OS/X (92718-g092cb17983): https://www.osxexperts.net/\n* Mac OS/X (92718-g092cb17983): https://evermeet.cx/ffmpeg/\n* Windows 32-bit (20181217-f22fcd4): https://ffmpeg.zeranoe.com/builds/win32/static/\n* Windows 64-bit (20181217-f22fcd4): https://ffmpeg.zeranoe.com/builds/win64/static/\n\nFor version updates, submit issue or pull request.\n\n## Upload new versions\n\nIn every updated `platforms/*` directory:\n \n    npm run upload\n    \n## See also\n\n* [node-ffprobe-installer](https://www.npmjs.com/package/@ffprobe-installer/ffprobe) - fork of this project that does the same thing for FFprobe\n","versions":{"1.0.1":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.1","main":"index.js","scripts":{"test":"tape test/*.js","posttest":"jshint *.js","preversion":"npm test"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"devDependencies":{"jshint":"^2.9.3","semver":"^5.3.0","tape":"^4.6.0"},"directories":{"test":"test"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"01fb049a853271edb13987b08f5447ffd4356633","dependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"_id":"@ffmpeg-installer/ffmpeg@1.0.1","_shasum":"6b9edd49b59d273e873f0114552eddae04d671eb","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"6b9edd49b59d273e873f0114552eddae04d671eb","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.1.tgz","integrity":"sha512-QUPKIyGSyVV5M1+PlJUPcm7ZT5TCpVwkQAFNiFhtKnSDVk6K/0w10PQGnBQ8NTN3ygNVAFHX4wUnARqXrrBBFA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBli9yaVBzeXNV2BBySD5L7/rNxW8FfAiMTuW0TLYMYsAiACqD5ss3keXpU0IMBSw9cy0OXDas5ZQUGLn1SaAxqMMw=="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.1.tgz_1473070434384_0.9218559917062521"}},"1.0.2":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.2","main":"index.js","scripts":{"test":"tape test/*.js","posttest":"jshint *.js","preversion":"npm test"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"devDependencies":{"jshint":"^2.9.3","semver":"^5.3.0","tape":"^4.6.0"},"directories":{"test":"test"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"01dc87bcd000e51dc2e0206d3467e835b2cc05eb","dependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"_id":"@ffmpeg-installer/ffmpeg@1.0.2","_shasum":"e9b21c0ec0feebea942cfdc098a5d7dd8f257a34","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"e9b21c0ec0feebea942cfdc098a5d7dd8f257a34","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.2.tgz","integrity":"sha512-izglS8tbS7qLlSJuyhej2HWLhuDOyh9XbNYQ9HDRAOP/1TQNN+iFOgp1GDcLdjJv4Ka9WZYikQJshYWZhyNfqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJ7Pl74HXCb9thOwXHS8ASCKZr/6SyXCAQT5Xt87sFswIgN40/A5CM48R8xZd0oyXAm5mc0xZxICcomf0LFYj9Amk="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.2.tgz_1474299233565_0.5220591526012868"}},"1.0.3":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.3","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"devDependencies":{"jshint":"^2.9.3"},"directories":{"test":"test"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"48bb5cfe8db818d254454ce0301402e91a1f2022","dependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"_id":"@ffmpeg-installer/ffmpeg@1.0.3","_shasum":"d7802f6371822f1431fef37ebb33acb56894269b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"d7802f6371822f1431fef37ebb33acb56894269b","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.3.tgz","integrity":"sha512-X55iXB6dcVlzSlipxLaBdQEfsZwJDEKc3KCZ/LFv8bw5iuW2XlRlB9b2c81lCqWuEJgpkZzli5j/NmxZzs3x/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKJ3hZWQKjzQZyWTS1BHp85jW6VUvc35vR4tFo7b1UBgIgczRCxupXieiRYSZ5VknALGb+ZNb5Tkk5G/2Ur6X5Ync="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.3.tgz_1474396799818_0.8387345725204796"}},"1.0.4":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.4","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"4.0.0","@ffmpeg-installer/win32-x64":"4.0.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"fe766faf4b257de46b255f5ce6f2856ca1c6c7b8","dependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"4.0.0","@ffmpeg-installer/win32-x64":"4.0.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.4","_shasum":"aec4e68e05e606e0f4349210a58ead63d6e2e1bc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"aec4e68e05e606e0f4349210a58ead63d6e2e1bc","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.4.tgz","integrity":"sha512-HhEprnbZG0WnGiEuMm0mlHUTfR9tDHBQ7O58GFypW1cMa4FIaR/7vjrY1bVSxi3RCMa5GmJMxCocHun0OBUdiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICoUgD2axpSqekTk8CsLO4xfyPZUwDnDM1DRNr5iGC9uAiBwZSJNc7Y8dLreWg+BC4JGnPZ/R8JPGwP2KM7CRB/bHg=="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.4.tgz_1474726128802_0.18510889261960983"},"directories":{}},"1.0.5":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.5","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.0","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.0","@ffmpeg-installer/win32-x64":"4.0.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"0f3153e3b1c157281b722829a4e55df0a0e12836","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.0","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.0","@ffmpeg-installer/win32-x64":"4.0.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.5","_shasum":"15427017533f841db70b5278eff589f4cec7fbcd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"15427017533f841db70b5278eff589f4cec7fbcd","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.5.tgz","integrity":"sha512-gPZnRAFd2eM5fxeWB4bvU1yGwHJXo+8Fpj8URLrwfH1Qyq9iiADyeB576oZZYstlWizdNdAYX4WepM8zrOB2aQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIACl7eFiysAAEkJ/G/IjdKBoO/kcqS0ctpwYvLYLElMSAiAnfT3m0GeTQLrvrT4N/tEw8pSjYPNgIhIzcXxuUSw6sQ=="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.5.tgz_1474727636321_0.8678383543156087"},"directories":{}},"1.0.6":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.6","main":"index.js","scripts":{"preinstall":"scripts/pre-install.js","postinstall":"scripts/post-install.js","lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"devDependencies":{"jshint":"^2.9.3"},"directories":{"test":"test"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"43c4db0409626efe39eefca8c05ecc713b54902a","dependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"_id":"@ffmpeg-installer/ffmpeg@1.0.6","_shasum":"6b4fee19d970ad8b0d38f3cfb72b68c1feffb573","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"6b4fee19d970ad8b0d38f3cfb72b68c1feffb573","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.6.tgz","integrity":"sha512-T9L41XMVL6csq7qon5Hu8EoDKqxZxF2Ek+WITPZZ/dQy8nVhTyjEdWFeEq4B/Uw7bgdya/johjn+kgHbuRu0xg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBqJQxXUxuZMrvIzt4/LvNguBUlCyaCz6GNQlNlPU2HFAiAZZmNuOGnMZJWqSO7Pxa5f1mw74d0a60Yx39s+xKRToA=="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.6.tgz_1474980214029_0.9538428734522313"}},"1.0.7":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.7","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"devDependencies":{"jshint":"^2.9.3"},"directories":{"test":"test"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"ce03071739be0deee54f1b5e2f4321e8a91fcd1c","dependencies":{"@ffmpeg-installer/darwin-x64":"3.1.3","@ffmpeg-installer/linux-ia32":"3.1.3","@ffmpeg-installer/linux-x64":"3.1.3","@ffmpeg-installer/win32-ia32":"3.0.1","@ffmpeg-installer/win32-x64":"3.0.1"},"_id":"@ffmpeg-installer/ffmpeg@1.0.7","_shasum":"c4510262d4bd12ced2c64c73c67c9848e9ddf032","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"c4510262d4bd12ced2c64c73c67c9848e9ddf032","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.7.tgz","integrity":"sha512-WkEO0UDyuKYPJ5C7Z5v3joAzF2UEftxastQFYq8D359/9I/+xwj7XFqt+KzrGK2ZoKi9CWUJXKAwPh92I1TkNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLgZTUEt5eN4CTQOMytsWecQTh5mHfDw8WLS4BnkIrUwIgAX+2kXwj/Hi9M5rGaw4mT53xbGNQ7vfvQiSU/tAyBa8="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.7.tgz_1474980281578_0.6966309698764235"}},"1.0.8":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.8","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.0","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.0","@ffmpeg-installer/win32-x64":"4.0.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"f12f314a3087aca7058a9d53507d2f78aa7fe16a","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.0","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.0","@ffmpeg-installer/win32-x64":"4.0.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.8","_shasum":"8810ee5eaa6ebf7879e84a79303ef84b9a036328","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"8810ee5eaa6ebf7879e84a79303ef84b9a036328","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.8.tgz","integrity":"sha512-8OYAWxAe8TES5Ctb5oHagfBrcH160QVXL+LbI6pVrKH/gHftFh2yVkEUHwRFl5SO7OAay89q1l6UpkPl7BVNHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA8bogjPox671wiRXBgforvEm3x0UI3gYNPgqkiUMKRPAiEAlLG6gHEvDyOiHnGektS6JvI4z2Nm5vzbqKi6/3Y0/Ck="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.8.tgz_1475169625255_0.22144757094793022"},"directories":{}},"1.0.9":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.9","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.1","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.1","@ffmpeg-installer/win32-x64":"4.0.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"130efeb270324071f8d23044598e77ad14c23e3e","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.1","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.1","@ffmpeg-installer/win32-x64":"4.0.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.9","_shasum":"a9b800af504abf7ad8f87c135ea57c3592924831","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"a9b800af504abf7ad8f87c135ea57c3592924831","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.9.tgz","integrity":"sha512-rDzdie8h+9B8kQY/MIP8S9kAe4DzO1VqMBFTDhuUeUAdqa2mvy2HGTZXgdig3NN8QEqg+hiAUP9EGYBqce79yA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1zTmquWZmJkgSPJfgpFqiT5z8lz7uE3hakS/Uo+eyCAIgGRinzsijb6dmZehJ7pUhWHrSmIObwy1pDURrAQR8BBE="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.9.tgz_1475171068970_0.43030434753745794"},"directories":{}},"1.0.10":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.10","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.2","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.1","@ffmpeg-installer/win32-x64":"4.0.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"be370b871738e0df1776d7d20ec240e5a8d22c67","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.2","@ffmpeg-installer/linux-ia32":"4.0.0","@ffmpeg-installer/linux-x64":"4.0.0","@ffmpeg-installer/win32-ia32":"4.0.1","@ffmpeg-installer/win32-x64":"4.0.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.10","_shasum":"c5ba79e96dd553ec220af8911156531f269fd6a4","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"c5ba79e96dd553ec220af8911156531f269fd6a4","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.10.tgz","integrity":"sha512-VgsEstd7++Wts0uimKrcZGcRpRBHNREPJDpw07y4l2sJrOY1+itRRlpcyH2s/dPoOpHKF5p6UcVRcZvEuVL7Dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBjyiRMsVyjV73torNXXalkv4kG01FT2zN+CImB+L62cAiEAx6QvLc1fGmu1i+86YDtYg1pqCrcxJgmfAGsNA+py/fw="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.10.tgz_1492899271467_0.3533928287215531"},"directories":{}},"1.0.11":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.11","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.2","@ffmpeg-installer/linux-ia32":"4.0.1","@ffmpeg-installer/linux-x64":"4.0.1","@ffmpeg-installer/win32-ia32":"4.0.1","@ffmpeg-installer/win32-x64":"4.0.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"fb2a0420cf9e6893bc8c2388bfd862d0a7ddda5a","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.2","@ffmpeg-installer/linux-ia32":"4.0.1","@ffmpeg-installer/linux-x64":"4.0.1","@ffmpeg-installer/win32-ia32":"4.0.1","@ffmpeg-installer/win32-x64":"4.0.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.11","_shasum":"0d500fe1a3202de9da5149567a2bc68db041d8c4","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"0d500fe1a3202de9da5149567a2bc68db041d8c4","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.11.tgz","integrity":"sha512-hUZvMn5Pv0aH/XwjT1kZwkTzDX27F4mouBEzCndINZ4CAKupsWnBiKZok8iS0Ya1DipuOC18mUd1t0yaQ1Hl8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIo+VUniTjR/yHw4Pb+MdrrnnxIAPmKTC8Iuq0teyUqQIhAMFMMl8Zoi7pLxxsQUxgksrVVEqJMGGXP1n894ndXXs8"}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.11.tgz_1493067803183_0.09039936796762049"},"directories":{}},"1.0.12":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.12","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.3","@ffmpeg-installer/linux-ia32":"4.0.2","@ffmpeg-installer/linux-x64":"4.0.2","@ffmpeg-installer/win32-ia32":"4.0.2","@ffmpeg-installer/win32-x64":"4.0.1"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"92494b0bfc74cb0d1e9987ef6f655b348f648877","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.3","@ffmpeg-installer/linux-ia32":"4.0.2","@ffmpeg-installer/linux-x64":"4.0.2","@ffmpeg-installer/win32-ia32":"4.0.2","@ffmpeg-installer/win32-x64":"4.0.1"},"_id":"@ffmpeg-installer/ffmpeg@1.0.12","_shasum":"4d06b1b5a13135c5bb700d8157665965281e50c0","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"shasum":"4d06b1b5a13135c5bb700d8157665965281e50c0","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.12.tgz","integrity":"sha512-+8kwFrVwmYf8DlGZ0s+RTenIF+BxWBJno78iDdHN6GJO2DPINAz2c2Jos/xnkjneLrx4IGGVWDKtjx55rLxGYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3wQbBVrI/cdoMWCbEngDWbHc8aSoKEbX4R0nWuMZwwwIhAMzpzuedmCr8Md/WJD5Aqv1lcGaR8jf3NJzP9Tp/jOJs"}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ffmpeg-1.0.12.tgz_1493078401420_0.21066104108467698"},"directories":{}},"1.0.13":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.13","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.4","@ffmpeg-installer/linux-ia32":"4.0.3","@ffmpeg-installer/linux-x64":"4.0.3","@ffmpeg-installer/win32-ia32":"4.0.3","@ffmpeg-installer/win32-x64":"4.0.2"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"aa5ef373b90f0b7b89871bb1c6ec6204962b7605","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.4","@ffmpeg-installer/linux-ia32":"4.0.3","@ffmpeg-installer/linux-x64":"4.0.3","@ffmpeg-installer/win32-ia32":"4.0.3","@ffmpeg-installer/win32-x64":"4.0.2"},"_id":"@ffmpeg-installer/ffmpeg@1.0.13","_npmVersion":"5.4.0","_nodeVersion":"7.10.1","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-56yZqvR/4H4roMEgADrs6hpTgApemK7V7rZNaZSnXwi7BxEW7CL4S/RxvHHxVNg01SY9vmd0pMYnWcFfZ63MMw==","shasum":"d5f90374d4c70436eef1cc3295eba7df9505aae6","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.13.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHa58GhonyKPJW31uZMLS++ingY7PzFef35xBHA6z/UGAiEAoeTxEZoBnJakG4XK5kpTsgZXN2IpFflaLuywC0jHJfo="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg-1.0.13.tgz_1505920840196_0.8608989608474076"},"directories":{}},"1.0.14":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.14","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.5","@ffmpeg-installer/linux-ia32":"4.0.4","@ffmpeg-installer/linux-x64":"4.0.4","@ffmpeg-installer/win32-ia32":"4.0.4","@ffmpeg-installer/win32-x64":"4.0.3"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"141152343f06e95da05987a6e12e9e1ea9f57306","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.5","@ffmpeg-installer/linux-ia32":"4.0.4","@ffmpeg-installer/linux-x64":"4.0.4","@ffmpeg-installer/win32-ia32":"4.0.4","@ffmpeg-installer/win32-x64":"4.0.3"},"_id":"@ffmpeg-installer/ffmpeg@1.0.14","_npmVersion":"5.7.1","_nodeVersion":"9.4.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-z+1B+gc5pyjsGb7IP+A9sdEETzuq6bOVEKTX4mHLWD0SVyzP2Wq8Q+H57Qhfo8VlkWK11Jef+b7jNYKwoDzXPw==","shasum":"0e50f5b2b6af659eb830278078b6290ac503032b","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.14.tgz","fileCount":4,"unpackedSize":5101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa61VaCRA9TVsSAnZWagAA0OQQAKOFi538PfEl1+weJD84\nD4ym/Dbl/PyEMNEvpBy1NQV7DTUPJqaEe7xhmqmjRLyqaWl2gFskTzI6B1WP\nM5abQCtdBIBC9oPqI0ggNl+vYeK/cnUH7L2ZStktg21rMtSm0PJjke5ZgzIf\nDaijQZ2s43dzQ0Q6H5O90gjVCHlgYJHrL55wr7mOiZb1IBeWYx3SuhksSFX1\n8mG0GabSwcW4YfPDWgy6E0H1e3AKWbCrKL+fOcR27ewW+JxTi6HxbzrZGDyh\njuaA2+VPKF+Xt2y62ScQXDo9FOFsfz+jOoJvf+FsVrJVKjQ/PkzskIiiF2zq\nX9/KHqUPdEfF+WL2/48HiPp44/5lmuZ22WrL3AY9pmmsV4SJaCW2pUvW3G2A\nmVgWf5ZsltTd62rxmaZymzVmM/dS0/WctbhM0tvkFusNUyOpquC5p+zVDpVb\nCz9/lB863VG+DA4t3BWK/XcTw/SPqEFuFH288v6qDj6wTjXrfl4PaiLKL7iw\nZhqMYE2S0G/GVOMrUTe4ZT3qIFLxZEVMbfSERJxA/8srtO22mPDMgZCjKujc\nkJHRvwC182IzgPfFyVNhYJdABgOaQ6NwZebTutOlavpQzv2Xc0kbBdtOGiZ3\n1nGbuauQiiP+VgzSvFvNg7b2gN75gMkM3EH31ciLrprJSrWZYVIY2mStH8Z+\nzHP3\r\n=9Zf/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgjuY/y3BjcPHqYfB1K4BLaJhW7ipm61L7XBQtmS0r4wIhALkoYZ3FbTGrQapJZ9onhPrvYNMXkhjfOgnnYgTZ2bkf"}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.14_1525372249150_0.4578566139316038"},"_hasShrinkwrap":false},"1.0.15":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.15","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.6","@ffmpeg-installer/linux-ia32":"4.0.4","@ffmpeg-installer/linux-x64":"4.0.4","@ffmpeg-installer/win32-ia32":"4.0.4","@ffmpeg-installer/win32-x64":"4.0.3"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"a1632b64a862af60607b7d51ea2ad60510b57f16","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.6","@ffmpeg-installer/linux-ia32":"4.0.4","@ffmpeg-installer/linux-x64":"4.0.4","@ffmpeg-installer/win32-ia32":"4.0.4","@ffmpeg-installer/win32-x64":"4.0.3"},"_id":"@ffmpeg-installer/ffmpeg@1.0.15","_npmVersion":"6.0.1","_nodeVersion":"9.11.1","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-1P64dipFXue2koflEqQcGuXVTYHKBMOEz/I9E8jNUslyGvpCkAkz61Kbl3h0SL2KQEmSz4o3qlBcyhjL1gV1tA==","shasum":"e7eb92710971e73eb29986eda32359edfdc4f0df","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.15.tgz","fileCount":4,"unpackedSize":5102,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbD74OCRA9TVsSAnZWagAAgqkP/276OjvQEqCqK7+p9mer\nLr0hBnt/Y26HVXwNbgf8JR5piUyGeZSdUfJ8NHCr920BSq09TLr9HM0vKtye\nGKM9eC/Nhr2b+ja92i8vZ5+78cMbY42FP6bP7a+pQfl2o/zj6179ba0BBlCH\nnwVdKuoVuGd93hECiSGbFaTjA8KxkVfd6356nq7umn2Ik4mVgZ2IHOt7YFtr\npBo4aPT6hI46ldR309vCseP3ZwMsibtCXGE5MEeglHfHHPDAmAV4EwhzjMgs\nBsxMr9jw82YKaDzDLHhv/b3MnZAtv7u9IQpkVF6j8qCqPNmbd4oAKX1Rnfru\nFDL1/5xY1TARQrHyP7KjCilx88Fzh1B1lfmY1vRBiYecl4d+lIQnAnRoNGhf\n5AlnmOMzaZ5voy9U9pvkz6GwwTsHmpkU39NwsuZgty5iSJ8EJ+Mpk8Y+0GoR\nTZ6+ObWwxFlBBNOLSVOvjiu7pWNNmoelzmmInt9McHaVEzg2kZ6+1gh5cYU6\nyl9KgLTlkyMo96SrAJVrMuksNmWaVcNPZ+E9naLHS7CUM0BXUHeehSR/ul8j\n2m7hKQymvI/81T35Fg8403AWmrcjptgWKDYQaP9uf78HAhtcdZR5ywbZc8Ix\nXRpKF3QaN0YJyRPYq4a5wqamUfD+BLTZgxMYYWi8k/lhY5lgXA3QqKAjvW8K\nsHtR\r\n=kIxj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjeJYtytbeiYmPl9AnoV/Rsd+BRrUDyFRYU/RR2hlV8AIgPFGjSS5K7PI9X4vRdme3kjcBT4NQiORRKwXrSijXIic="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.15_1527758350004_0.7052822156342842"},"_hasShrinkwrap":false},"1.0.16":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.16","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint","upload":"npm --userconfig=.npmrc publish --access public"},"keywords":["ffmpeg","binary"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.0.6","@ffmpeg-installer/linux-ia32":"4.0.5","@ffmpeg-installer/linux-x64":"4.0.5","@ffmpeg-installer/win32-ia32":"4.0.4","@ffmpeg-installer/win32-x64":"4.0.3"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"012f121febccb0b30df9941e0553eddf2e4789ff","dependencies":{"@ffmpeg-installer/darwin-x64":"4.0.6","@ffmpeg-installer/linux-ia32":"4.0.5","@ffmpeg-installer/linux-x64":"4.0.5","@ffmpeg-installer/win32-ia32":"4.0.4","@ffmpeg-installer/win32-x64":"4.0.3"},"_id":"@ffmpeg-installer/ffmpeg@1.0.16","_npmVersion":"6.4.1","_nodeVersion":"9.11.1","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-l69NOr2HKCpW9+cypzYNg3iFsy69uodDcAeIKjbFuwySvNmF7Ekc+/2wioJd58pN54Xvj9aALnhewgMTuGfzNA==","shasum":"f6e515b71019058e71e5a031d328cd262c81e2f9","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.16.tgz","fileCount":4,"unpackedSize":5169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwb4NCRA9TVsSAnZWagAALEIP/2hp5IXciZ4F6es5ZTKj\nWJsZCKw+iv7gEkUUa9+2L0tJq+YepjtNgiQhJfP3IgfGvyQWWbIB+jw01fsy\ne5GG++e1ykomnZSdOcPTw2Agq/1MTkFaREYu8+/P6SWb2HWUaOr8mYJyg4Vp\nDLTM49wMaArXuMgy3iC0xCCQs9aAhyBpDWnVhbhUvaaAE9v6UTbI6RamGsRg\nAQyoL1QuQ/Oxye6khC9W2WfoEdFVZnWf336VbFRIZkK/aNct+cfVWMjXTmaC\no4/CU2ePUBOzmCqKuVB1Vvlq93Wh5arD/dMiARdLr4OS8jR8VL4eVXoSpc2C\n9EFBfNmpRrPKHcWGx9LxbeR4z7O3EXOs4UTRij1hL7jitqpcyFECU7uOEaAj\nupl/1ZxLC5kA90Sbu/wvj2iW/+2EFM263CEWQHry2KV37XIGFiGzm0Ds9k4D\nuLwgSsyESr7/N3FfOArhCZdy/eZvr9m46HOtdLVcsEyWlHamFetLgHnxxXJv\nLrBz8WLz+6GOn2GoQYox1lDYcT28q4qayLVSPz3FtZ+vPieG/2n7x5nP/Bpi\nn6/G8o5xufZhmpPmPGLL1aOtny9hGWkQKi185ISvDoRYCN9Y3j0QAazNgSp1\nYUNnouLBcQXNPbbrf6fj9Q5mjXDPi/17EmyslURjBH1Y27OdePLq3g1tIdo7\nmQMJ\r\n=CfBh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCee1S+llm7CRO8Qi+FIRiAkSON7UbgS0aBI7XLof7b0wIhAOIjNaG0jup1oH39Zw3W/NZV4P775rPKTOhYuy+ok6Ls"}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.16_1539423756475_0.35289469650800287"},"_hasShrinkwrap":false},"1.0.17":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.17","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint","upload":"npm --userconfig=.npmrc publish --access public"},"keywords":["ffmpeg","binary","installer","audio","sound"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"c02c7cceb5d860b9fc7bbcd696fdce48a5fb88c6","dependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0"},"_id":"@ffmpeg-installer/ffmpeg@1.0.17","_npmVersion":"6.4.1","_nodeVersion":"9.11.1","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-DClZOfrYTvamCfJ9ToFj58hMfEyH5HlHN/zSTaPzfev3I+Vy5J9qBGGAyquAmY+/FOFBtChdXBu64D6H3uZhkA==","shasum":"ca0a048e5c5439a9632a391e9a441f88f46624f8","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.17.tgz","fileCount":4,"unpackedSize":5312,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcF/jACRA9TVsSAnZWagAAmDYQAI0HfkZJoAOURRfOUfSu\nxh0FRrBmrlZNDYNZHfopMSZHKHg+ukdZRtri5ExQwQC7adOnwfNKC70jcO+Q\n9uvTmIPRniaMHXhuavzD8+fyUzodTUoy2B1rkbWzSKu3P3p12V67+CM1QxPu\nuev1cfcrAr7kE4EoCer7TvjQXtrnLB9+k0NV5F7bNn46WKtIViNy7npgz8oy\nHvJKJszPZK76FuDyOtZJN7q5FYV0e3Mg8gm/Qs0SvLQwTPZGSHa2rBeR0WIQ\nnWlteo9ravv3vlL9LVPg2aD1Yu+T6KK1QskY9nslWwHRHtbspNP0tpCgeUyj\nnsLJnsng324Xkl3xBDZQmyeeKk6cYupBZI6smhkJpUYk7i7raAF8Jc2SmrdL\nJhWSdEMoDoDIGbiTZ46wUQZC5PLIGU68kWIVjjqFmFJk+pHKuWbmaZLEXy5U\n5v9zloa1GF9dfZCufSR+fkYWVBBQAA3/fZK2qCPCnJEQXdX0mn6SGANvqG3y\ntVWjOLwbVlFAjktI18e+qKb3Cn9d9TKK7RwG1U9NbD3Nmtq8CLogsn9GHzaa\nAzk62JRiLEFjzsNkbvrA8GAPPkRJmzqjaawPq/Xm42e4aZcT5o8S3j9SGjzR\nsfjJmi1vJNm1Yo08ZjhQ0gOPzsfeEpOhvSqnsa9njNiXdM0F76wSFf66OCpE\ngYjE\r\n=bKZq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFXy1barOHdHwdEMvLlw4wUhxCE1jAjonQEaoBvNjDpVAiBW/gMJKoadYPichE/5VR41Jt5TurMRVF4a9ujhLYlvAw=="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.17_1545074880055_0.5027366490829726"},"_hasShrinkwrap":false},"1.0.18":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.18","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint","upload":"npm --userconfig=.npmrc publish --access public"},"keywords":["ffmpeg","binary","installer","audio","sound"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.3"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"2ec34b43a7dcd4a3cdbfcab8c007a628cb9346d3","dependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.3"},"_id":"@ffmpeg-installer/ffmpeg@1.0.18","_npmVersion":"6.0.1","_nodeVersion":"11.15.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-Au9ZVUnvChHKRZ71siWlCxjSI3KlRTYY+o08JHkwVhw85Bv5XeQuPePbkZoJx4JACYPn9WxWBwZDkdnDZbdbHQ==","shasum":"d0cb83daa7426375adcb6f0b7de84c24b81cf6e1","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.18.tgz","fileCount":4,"unpackedSize":5616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/6VOCRA9TVsSAnZWagAAWTgP/0vm+6nXQRoH2yZ3KGSl\n5+xVQcot0SPJspQBE+Qjm4oqh1AgmvdK2y1mI4YJSWKXkXejrX+6hVMY/Uv+\nvDk1SGa2unyFacYxf+ZqEO2QnyJ6C+kQSAXyazPTDL6N329cVmbonGh6+CNg\nkDHKewAmqwCxaBHCH7VjEYBXkERteCHtY3RriZi/CZeVldu+UyXIHdQQDJeN\nvUMQU0Khsprg7Uv/lGyc8prYMWlej30AaAVYs1fZJOw4z+8SnhOcnD93UQ0Y\n4U41YOwFCgrywAL6POMiRM3lYThYaNOFqz/uhGCZnyBCKzU/LdQ7LqKdquRG\nCh1aEQkN7w8YchTzdE6NjxT+FhbJTEmnR//qdI+wsfjfP4TJ9TPXI7IK0Gfi\n+u5cV71zqdQ785l+Jm4f/FHJg61toTOGN3AI9BegP1lG1K7X/mr+3h1nVCa4\nUIuD4Qjm5w4o1Vx9LHefRm8jJVv7vad4Qfs1F+wjQzwr8SkHhGoG2VQb3cb9\ndvZLunUAjulTu/R7DnmWkY7Ln0taerGkAQoqYR9+HR29andSTXAERgBfKFq0\nDXI7kyc+ks+ZM6wZnzuVxo96uEmr9e/VLIosKBV65Hu5GQ3AASxAocJV5lMP\n99HtyuHcPOXmuvTpm1O9CbQFc91mTDHOFiExHLQWc9XilbTRO8GXX7q/+8OJ\nO9Ba\r\n=g4w9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmmTn/F2KVwoFhnzhDNeW7WaRsKujLoydAvVHWdhnXaAIhAMxAFsDnoB08pqNjqRZYvun9WUOlZU3rJBeQO8TL1/Sj"}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.18_1560257870270_0.059818627317382855"},"_hasShrinkwrap":false},"1.0.19":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.19","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint","upload":"npm --userconfig=.npmrc publish --access public"},"keywords":["ffmpeg","binary","installer","audio","sound"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.3"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"11de1addbb3d1a97723e6a6459f56d36b5074287","dependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.3"},"_id":"@ffmpeg-installer/ffmpeg@1.0.19","_npmVersion":"6.0.1","_nodeVersion":"11.15.0","_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"dist":{"integrity":"sha512-cIhboAWGJSiQut6kE5DzljN2CO1RzYDaEJIje/RUl43yK1EQUHnpoeS9BLIulqM93o0ga9SRPKTqOgg76KYyfw==","shasum":"2718bf06a7d215acd12fdfd05097f4e55d2d2c7e","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.19.tgz","fileCount":4,"unpackedSize":6013,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG3EiCRA9TVsSAnZWagAAbJAP/2XuoZ8FgzI0V9EbgB0Q\nnm6jnn1xBlobm0FL8KBqBv3ePxdANJtO+5IrfdfQYqRfhRVKRdmvEkHBvkoe\nHaxDWLz7wxjDdBE+3ZIniciwcwQVGHlTufYSzz0/T9vFsDGwIVLYx5ysc0JR\nPz7qr1dfKvqlOSZyXh7uMDkO+B5ty/JtU+lduaIpEQjgB77ShmToM2zUutGz\n4H7t+/dFsaUYNREjiDXUu7vrdua30tQ3ekfLw3W+XBTIeD4MC9IdvURRy19C\njzHeHXNX24x3xzcnNsVxDCjvf1LdLuXXLayzJJ201dNIz7Y0fbju/Tk5+ljN\njoX/0M90YVGgbKPcD2d8IHjAj6KeLcyP1/PFhDeLDr41gk4ninKESAAhtq84\nVqOV1R+0VZQQ0dJ5FLgn56reADSgou9Hl9dfVgK9KMzKyvKW3W6MB2900+Y9\nzzh4NCn7N6zXYp946Bu8jqvSdsjG5mYpZ1Aff2MBJLqoqSYlutjEZYgLgHit\nN8/fl4FbJkH+cpwt0kboKCAKl8ROp2zqlcoaiGuauqeH38fhtIJP6i2+xYWB\nLNCnaU3nhyff2nunVSs1lnAFcW3FeWq+4rRBZ9EvTo6CmmfJk8cwtAV8t0yN\nQTQj3gg/2gYcw278qsDDGWz6fobkbWxoSWUzS1/93IMM9I7UPWaT2XFOp1qR\nmUqP\r\n=qys0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCp0T58MGzcBcOJK90IahI4xOv1KyvnZ98S61YaZhAvZgIhAIHSZ0eZPXQ+xwWpKIsrh8mfU0OMT9WMYx5FPp55PYgE"}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.19_1562079522316_0.9358468681074872"},"_hasShrinkwrap":false},"1.0.20":{"name":"@ffmpeg-installer/ffmpeg","version":"1.0.20","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint","upload":"npm --userconfig=.npmrc publish --access public"},"keywords":["ffmpeg","binary","installer","audio","sound"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.4"},"devDependencies":{"jshint":"^2.9.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"def8f25b981fe3008531d348d5c585a463ed45e0","dependencies":{"@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.4"},"_id":"@ffmpeg-installer/ffmpeg@1.0.20","_nodeVersion":"9.11.1","_npmVersion":"6.6.0","dist":{"integrity":"sha512-wbgd//6OdwbFXYgV68ZyKrIcozEQpUKlvV66XHaqO2h3sFbX0jYLzx62Q0v8UcFWN21LoxT98NU2P+K0OWsKNA==","shasum":"d3c9c2bbcd76149468fb0886c2b3fe9e4795490b","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.0.20.tgz","fileCount":4,"unpackedSize":6013,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdebPJCRA9TVsSAnZWagAAATwP/3CdbbpPSKh2KLMGWMXU\n6CHpMa71sBiH3HpExHKHX8iwu7ZFN16hyZwnHufKNXQkhI6iPWtrOPKAnurM\nJVXvJZus/Qnjas270X/qQOQ73BJW/Me2WYBFBY+usPtqpH63xFOFPVjFZsUI\n0emP6VA7LwmqXso1besKPZJrp1eJY/g/p47Lc+XGgzoB1XyrBeo6l9cfyVe5\nutclEZPUdTprwwbDXLfnKj92ZIHzYMr3HPwcRbG0QmB88R62UJOr0Wwhyzfj\nOgKKAFalH/R7/WM4c9gCrQLTRbXwlkrhNEN+frnTwucfIGb8aLdBuKEKCt2Y\nfaQrnQdtA1W0ZuW3oNqFwa6tNJXiyQj15EeOBBA79soIbu5RW8/4vZqX+Sae\n01G6gy4+QY3zwz44ly7m+Jm8cQVQ5g+tWrO7zGHHZmtTligoyPj3aUYWyS1U\nP6L4Nnqu5ZjvZfv+FNm1n7tfzavj2JGUgQBeeOTviqKNBY9EbRKCTxPBsyWb\n7rZdlNGxmxGLbWWE54FPtX7fqtlBPbpppoi8sV1ULHjjGdIcZpFCo3nA407P\ntn9m+Ke9W5uSr0CFf8vo8E4VlHhMV4zW3qFQ6yelDDgkBbVSiy0waK2jkguP\ncS47va7Koor2SAYXGYA07xSUltfxZzMBdSu122HaRVKc6+Ep63ND9dm2UjTV\nzUlz\r\n=rd95\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICI613jZw3pRCjq2wQPViVYXk4LCiAkBYaxJUSOSkTLIAiEAuqtnZf1wkfgbOzwyeNMEMowHg+I3O7EQDhtectuni+s="}]},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.0.20_1568256968236_0.8172808201829824"},"_hasShrinkwrap":false},"1.1.0":{"name":"@ffmpeg-installer/ffmpeg","version":"1.1.0","main":"index.js","scripts":{"lint":"jshint *.js","preversion":"npm run lint","types":"tsc","preupload":"npm run types","upload":"npm --userconfig=.npmrc publish --access public","test":"tsd"},"types":"types/index.d.ts","keywords":["ffmpeg","binary","installer","audio","sound"],"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"license":"LGPL-2.1","description":"Platform independent binary installer of FFmpeg for node projects","optionalDependencies":{"@ffmpeg-installer/darwin-arm64":"4.1.5","@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.4","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0"},"devDependencies":{"jshint":"^2.9.3","tsd":"^0.14.0","typescript":"^4.2.3"},"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","gitHead":"c48a264602ebf8df751816913c946d537ebd8a80","dependencies":{"@ffmpeg-installer/darwin-arm64":"4.1.5","@ffmpeg-installer/darwin-x64":"4.1.0","@ffmpeg-installer/linux-arm":"4.1.3","@ffmpeg-installer/linux-arm64":"4.1.4","@ffmpeg-installer/linux-ia32":"4.1.0","@ffmpeg-installer/linux-x64":"4.1.0","@ffmpeg-installer/win32-ia32":"4.1.0","@ffmpeg-installer/win32-x64":"4.1.0"},"_id":"@ffmpeg-installer/ffmpeg@1.1.0","_nodeVersion":"15.13.0","_npmVersion":"7.7.6","dist":{"integrity":"sha512-Uq4rmwkdGxIa9A6Bd/VqqYbT7zqh1GrT5/rFwCwKM70b42W5gIjWeVETq6SdcL0zXqDtY081Ws/iJWhr1+xvQg==","shasum":"87fdb9e7d180e8d78f7903f9441e36f978938a90","tarball":"https://registry.npmjs.org/@ffmpeg-installer/ffmpeg/-/ffmpeg-1.1.0.tgz","fileCount":21,"unpackedSize":24608,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8BJbCRA9TVsSAnZWagAAqEEP+wRXRzysO5tyn756+kSc\nEKwLSSsCfitzXub4JwsLyYFdxXWHqbzLyKD97FTqAX8d6NJqbhGvRll4ZuHQ\nNn7yINCKiAR4GICnuhak1cxAVGdIAilD+5oS6U6C7Tya7D7mB4xKC2j1Dk38\nIeHCxQ5O77l5Hs60CrMjQaok3iCpSh85bNJgsxw7RuQetIMJ2mwWu26s0ybI\n5y8cqm60efTp895Wd8xbDaJftLWxUhJ0z2414sUwFYgzTMQ9BH+2AQ2Bivff\n2tzi9NcRhh1j6wVk74xKSoF7RHpZ46M++oYnLO3dD7kI/XHYIBzld+cR4ulb\nsiSUEHc7nkYMsSRSI23EG2yv/Yx97PSokT9v0FZOk17M9N0HUsOkZuMV1vLk\nP0R1gPOCzJ7MYHpK4Axa5kLneE/OT6n22fmmHiTysJkfsTaRAyL3KaeR2n3W\n+g7PcDVc2RkNaLrf1xEAaQ+98dRlnNMQlHbd+tuDEAgbHccWE5fQGcuBvRGk\nEH3qDWIgN6cKXlxUekYdguFkFmPdSXDpTfG3RnY5aQg4eofKVjXbFGucIrW7\nKwtfMT2myKhT3uLzT9k1HvfSMwLDWVULbjda1anCOXqLuDkm5V+CRPu8v0qg\n1VXxeOivRa7PPgrICvu4EmYfe6tVobtKisDnCRGGYcHztbPMTlNjuFhgGaJF\nBQGL\r\n=4+aj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE7237lYCTHdAdLFskqiB6rWCj6uma5F3rOZPbKnaHc/AiAtQoA0qTei4d6rhveDbu++v/75ZtsgTWe8TWLom5TvTg=="}]},"_npmUser":{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"},"directories":{},"maintainers":[{"name":"ffmpeg-installer","email":"kristoffer.lunden@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ffmpeg_1.1.0_1626346075449_0.7408975230240735"},"_hasShrinkwrap":false}},"homepage":"https://github.com/kribblo/node-ffmpeg-installer#readme","keywords":["ffmpeg","binary","installer","audio","sound"],"repository":{"type":"git","url":"git+https://github.com/kribblo/node-ffmpeg-installer.git"},"author":{"name":"Kristoffer Lundén","email":"kristoffer.lunden@gmail.com"},"bugs":{"url":"https://github.com/kribblo/node-ffmpeg-installer/issues"},"license":"LGPL-2.1","readmeFilename":"README.md","users":{"yboris":true,"jag82":true,"temasm":true,"dillonace":true}}