@remotion/compositor-darwin-arm64 4.0.0-resetpath.13 → 4.1.0-alpha2
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/compositor +0 -0
- package/ffmpeg/remotion/bin/ffmpeg +0 -0
- package/ffmpeg/remotion/bin/ffprobe +0 -0
- package/ffmpeg/remotion/lib/libavcodec.dylib +0 -0
- package/ffmpeg/remotion/lib/libavdevice.dylib +0 -0
- package/ffmpeg/remotion/lib/libavfilter.dylib +0 -0
- package/ffmpeg/remotion/lib/libavformat.dylib +0 -0
- package/ffmpeg/remotion/lib/libavutil.dylib +0 -0
- package/ffmpeg/remotion/lib/libswresample.dylib +0 -0
- package/ffmpeg/remotion/lib/libswscale.dylib +0 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/index.mjs +5 -1
- package/package.json +5 -5
package/compositor
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
package/index.mjs
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { createRequire } from "module";
|
|
2
|
-
|
|
2
|
+
import * as url from "url";
|
|
3
|
+
const __dirname = url.fileURLToPath(new URL(".", import.meta.url));
|
|
3
4
|
const require = createRequire(import.meta.url);
|
|
4
5
|
|
|
5
6
|
export const binaryPath = require.resolve("./compositor");
|
|
7
|
+
export const ffmpegPath = require.resolve("./ffmpeg/remotion/bin/ffmpeg");
|
|
8
|
+
export const ffprobePath = require.resolve("./ffmpeg/remotion/bin/ffprobe");
|
|
9
|
+
export const ffmpegCwd = __dirname + "/ffmpeg";
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.
|
|
2
|
+
"version": "4.1.0-alpha2",
|
|
3
3
|
"name": "@remotion/compositor-darwin-arm64",
|
|
4
4
|
"os": [
|
|
5
5
|
"darwin"
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"require": "./index.js",
|
|
13
13
|
"import": "./index.mjs",
|
|
14
14
|
"types": "./index.d.ts"
|
|
15
|
-
}
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json"
|
|
16
17
|
},
|
|
17
18
|
"publishConfig": {
|
|
18
19
|
"access": "public"
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
}
|
|
20
|
+
}
|
|
21
|
+
}
|