@lumen5/beamcoder 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +10 -0
- package/package.json +2 -3
- package/prebuilds/@lumen5/{beamcoder-v0.0.16-node-v127-darwin-arm64.tar.gz → beamcoder-v0.0.18-node-v127-darwin-arm64.tar.gz} +0 -0
- package/prebuilds/@lumen5/{beamcoder-v0.0.16-node-v127-linux-x64.tar.gz → beamcoder-v0.0.18-node-v127-linux-x64.tar.gz} +0 -0
package/binding.gyp
CHANGED
|
@@ -110,10 +110,15 @@
|
|
|
110
110
|
"../ffmpeg/ffmpeg-static-build/lib/libpostproc.a",
|
|
111
111
|
"../ffmpeg/ffmpeg-static-build/lib/libswresample.a",
|
|
112
112
|
"../ffmpeg/ffmpeg-static-build/lib/libswscale.a",
|
|
113
|
+
"-framework AVFoundation",
|
|
113
114
|
"-framework VideoToolbox",
|
|
114
115
|
"-framework CoreMedia",
|
|
115
116
|
"-framework CoreVideo",
|
|
116
117
|
"-framework CoreFoundation",
|
|
118
|
+
"-framework CoreGraphics",
|
|
119
|
+
"-framework CoreImage",
|
|
120
|
+
"-framework AppKit",
|
|
121
|
+
"-framework OpenGL",
|
|
117
122
|
"-framework Security",
|
|
118
123
|
"-framework AudioToolbox",
|
|
119
124
|
"/opt/homebrew/lib/libvpx.a",
|
|
@@ -125,10 +130,15 @@
|
|
|
125
130
|
"xcode_settings": {
|
|
126
131
|
"OTHER_LDFLAGS": [
|
|
127
132
|
"-all_load",
|
|
133
|
+
"-framework AVFoundation",
|
|
128
134
|
"-framework VideoToolbox",
|
|
129
135
|
"-framework CoreMedia",
|
|
130
136
|
"-framework CoreVideo",
|
|
131
137
|
"-framework CoreFoundation",
|
|
138
|
+
"-framework CoreGraphics",
|
|
139
|
+
"-framework CoreImage",
|
|
140
|
+
"-framework AppKit",
|
|
141
|
+
"-framework OpenGL",
|
|
132
142
|
"-framework Security",
|
|
133
143
|
"-framework AudioToolbox"
|
|
134
144
|
]
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumen5/beamcoder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Node.js native bindings to FFmpeg.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"
|
|
9
|
-
"install": "prebuild-install || (FFMPEG_STATIC=1 node-gyp rebuild)",
|
|
8
|
+
"install": "prebuild-install || (node install_ffmpeg_static.js && FFMPEG_STATIC=1 node-gyp rebuild)",
|
|
10
9
|
"preinstall:dynamic": "node install_ffmpeg.js",
|
|
11
10
|
"install:dynamic": "FFMPEG_STATIC=0 node-gyp rebuild",
|
|
12
11
|
"build:dynamic": "npm run preinstall:dynamic && npm run install:dynamic",
|
|
index 49a9b82..228127a 100644
|
|
|
Binary file
|
|
index cc105f1..4768c4d 100644
|
|
|
Binary file
|