-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from tolumide-ng/feat/add-darwin-arm64
Add Darwin arm64 Support
- Loading branch information
Showing
6 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ node_modules | |
*.tgz | ||
.npmrc | ||
types/**/*.d.ts | ||
|
||
/**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
|