Skip to content

Commit

Permalink
feat(processVideoFile): use FFmpeg-osx-64 for darwin all archs
Browse files Browse the repository at this point in the history
  • Loading branch information
hduprat committed Jan 18, 2024
1 parent 4cf939c commit e7883dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/shell/src/processVideoFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const execAsync = (command: string) =>
const FFMPEG_VERSION = "4.4.1";
const archToExec: Partial<Record<`${NodeJS.Platform}-${NodeJS.Architecture}`, string>> = {
"darwin-arm64": "osx-64",
"darwin-x64": "linux-64",
"darwin-x64": "osx-64",
"linux-x64": "linux-64",
};

Expand Down

0 comments on commit e7883dd

Please sign in to comment.