-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds darwin-arm64 and updates ,gitignore
- Loading branch information
1 parent
a263e0d
commit 306a1e1
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://evermeet.cx/ffmpeg/", | ||
"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": "John Van Sickle <john.vansickle@gmail.com>", | ||
"license": "GPLv3", | ||
"ffmpeg": "92718-g092cb17983" | ||
} | ||
|