@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 CHANGED
Binary file
Binary file
Binary file
package/index.d.ts CHANGED
@@ -1 +1,4 @@
1
1
  export const binaryPath: string;
2
+ export const ffmpegPath: string;
3
+ export const ffprobePath: string;
4
+ export const ffmpegCwd: string;
package/index.js CHANGED
@@ -1 +1,4 @@
1
1
  exports.binaryPath = require.resolve("./compositor");
2
+ exports.ffmpegPath = require.resolve("./ffmpeg/remotion/bin/ffmpeg");
3
+ exports.ffprobePath = require.resolve("./ffmpeg/remotion/bin/ffprobe");
4
+ exports.ffmpegCwd = __dirname + "/ffmpeg";
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.0.0-resetpath.13+40cc970bd",
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
- "gitHead": "40cc970bd20f2c9fde0c1644f1c9f33cd47f3dc7"
21
- }
20
+ }
21
+ }