@remotion/compositor-win32-x64-msvc 4.0.97 → 4.0.98
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.exe +0 -0
- package/index.d.ts +1 -4
- package/index.js +1 -5
- package/index.mjs +1 -5
- package/package.json +1 -1
package/compositor.exe
CHANGED
|
Binary file
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
exports.binaryPath = `${__dirname}${path.sep}compositor.exe`;
|
|
3
|
-
exports.ffmpegPath = `${__dirname}${path.sep}ffmpeg${path.sep}remotion${path.sep}bin${path.sep}ffmpeg.exe`;
|
|
4
|
-
exports.ffprobePath = `${__dirname}${path.sep}ffmpeg${path.sep}remotion${path.sep}bin${path.sep}ffprobe.exe`;
|
|
5
|
-
exports.ffmpegCwd = `${__dirname}${path.sep}ffmpeg`;
|
|
1
|
+
exports.dir = __dirname;
|
package/index.mjs
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import path from "node:path";
|
|
2
1
|
import * as url from "node:url";
|
|
3
2
|
const __dirname = url.fileURLToPath(new URL(".", import.meta.url));
|
|
4
3
|
|
|
5
|
-
export const
|
|
6
|
-
export const ffmpegPath = `${__dirname}${path.sep}ffmpeg${path.sep}remotion${path.sep}bin${path.sep}ffmpeg.exe`;
|
|
7
|
-
export const ffprobePath = `${__dirname}${path.sep}ffmpeg${path.sep}remotion${path.sep}bin${path.sep}ffprobe.exe`;
|
|
8
|
-
export const ffmpegCwd = `${__dirname}${path.sep}ffmpeg`;
|
|
4
|
+
export const dir = __dirname;
|
package/package.json
CHANGED