Skip to content

Commit

Permalink
Merge pull request #60 from tolumide-ng/feat/add-darwin-arm64
Browse files Browse the repository at this point in the history
Add Darwin arm64 Support
  • Loading branch information
deevus authored Jul 12, 2021
2 parents a263e0d + 1bd846c commit 44e6930
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ node_modules
*.tgz
.npmrc
types/**/*.d.ts

/**/.DS_Store
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Downloaded from the sources listed at [ffmpeg.org](https://ffmpeg.org/download.h

* Linux 32-bit: (20181210-g0e8eb07980): https://www.johnvansickle.com/ffmpeg/
* Linux 64-bit: (20181210-g0e8eb07980): https://www.johnvansickle.com/ffmpeg/
* Mac OS/X (92718-g092cb17983): https://www.osxexperts.net/
* Mac OS/X (92718-g092cb17983): https://evermeet.cx/ffmpeg/
* Windows 32-bit (20181217-f22fcd4): https://ffmpeg.zeranoe.com/builds/win32/static/
* Windows 64-bit (20181217-f22fcd4): https://ffmpeg.zeranoe.com/builds/win64/static/
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"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",
Expand Down
4 changes: 4 additions & 0 deletions platforms/darwin-arm64/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Do not use directly, use ffmpeg-installer:

npm install --save @ffmpeg-installer/ffmpeg

Binary file added platforms/darwin-arm64/ffmpeg
Binary file not shown.
28 changes: 28 additions & 0 deletions platforms/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "@ffmpeg-installer/darwin-arm64",
"version": "4.1.5",
"description": "Mac OS X FFmpeg binary used by ffmpeg-installer",
"homepage": "https://www.osxexperts.net/",
"scripts": {
"test": "file ffmpeg | grep -qF \"Mach-O\"",
"prepublishOnly": "npm test",
"postinstall": "chmod u+x ffmpeg",
"upload": "npm --userconfig=../../.npmrc publish --access public"
},
"keywords": [
"ffmpeg",
"binary",
"darwin",
"arm64"
],
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"author": "osexperts <[email protected]>",
"license": "https://git.ffmpeg.org/gitweb/ffmpeg.git/blob_plain/HEAD:/LICENSE.md",
"ffmpeg": "92718-g092cb17983"
}

0 comments on commit 44e6930

Please sign in to comment.