-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initialize ff{mpeg,probe}-static subpackages
- Loading branch information
Showing
10 changed files
with
57 additions
and
65 deletions.
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 |
---|---|---|
|
@@ -8,7 +8,4 @@ download-binaries/* | |
|
||
bin/* | ||
|
||
/ffmpeg | ||
/ffmpeg.exe | ||
/ffmpeg.README | ||
/ffmpeg.LICENSE | ||
/packages/*/package-lock.json |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,20 +1,16 @@ | ||
{ | ||
"private": true, | ||
"name": "ffmpeg-static", | ||
"version": "5.1.0", | ||
"description": "ffmpeg static binaries for Mac OSX and Linux and Windows", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"install.js", | ||
"example.js", | ||
"types" | ||
"description": "ffmpeg & ffprobe binaries for macOS, Linux and Windows", | ||
"workspaces": [ | ||
"packages/ffmpeg-static", | ||
"packages/ffprobe-static" | ||
], | ||
"types": "types/index.d.ts", | ||
"scripts": { | ||
"install": "node install.js", | ||
"test": "node test.js", | ||
"lint": "eslint .", | ||
"prepublishOnly": "npm run lint && npm run install && npm test" | ||
"prepublishOnly": "npm run lint && npm install --workspaces && npm test" | ||
}, | ||
"ffmpeg-static": { | ||
"binary-path-env-var": "FFMPEG_BIN", | ||
|
@@ -23,12 +19,20 @@ | |
"binaries-url-env-var": "FFMPEG_BINARIES_URL", | ||
"executable-base-name": "ffmpeg" | ||
}, | ||
"ffprobe-static": { | ||
"binary-path-env-var": "FFPROBE_BIN", | ||
"binary-release-tag-env-var": "FFPROBE_BINARY_RELEASE", | ||
"binary-release-tag": "b5.0.1", | ||
"binaries-url-env-var": "FFPROBE_BINARIES_URL", | ||
"executable-base-name": "ffprobe" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/eugeneware/ffmpeg-static" | ||
}, | ||
"keywords": [ | ||
"ffmpeg", | ||
"ffprobe", | ||
"static", | ||
"library", | ||
"binary", | ||
|
@@ -42,7 +46,8 @@ | |
"Jannis R <[email protected]>" | ||
], | ||
"contributors": [ | ||
"Thefrank (https://github.com/Thefrank)" | ||
"Thefrank (https://github.com/Thefrank)", | ||
"Emil Sivervik <[email protected]>" | ||
], | ||
"license": "GPL-3.0-or-later", | ||
"bugs": { | ||
|
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 @@ | ||
/ffmpeg | ||
/ffmpeg.exe | ||
/ffmpeg.README | ||
/ffmpeg.LICENSE |
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,13 @@ | ||
{ | ||
"name": "ffmpeg-static", | ||
"description": "ffmpeg binaries for macOS, Linux and Windows", | ||
"keywords": [ | ||
"ffmpeg", | ||
"static", | ||
"binary", | ||
"binaries", | ||
"mac", | ||
"linux", | ||
"windows" | ||
] | ||
} |
File renamed without changes.
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 @@ | ||
/ffprobe | ||
/ffprobe.exe | ||
/ffprobe.README | ||
/ffprobe.LICENSE |
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,13 @@ | ||
{ | ||
"name": "ffprobe-static", | ||
"description": "ffprobe binaries for macOS, Linux and Windows", | ||
"keywords": [ | ||
"ffprobe", | ||
"static", | ||
"binary", | ||
"binaries", | ||
"mac", | ||
"linux", | ||
"windows" | ||
] | ||
} |
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,2 @@ | ||
declare const ffprobePath: string | null; | ||
export default ffprobePath; |