Skip to content

Commit

Permalink
fix: change to use bundled binary
Browse files Browse the repository at this point in the history
  • Loading branch information
xpadev-net committed Nov 3, 2022
1 parent a9e37dc commit 231262c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/ffmpeg-stream/stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export class Converter {
const stdio = this.getStdioArg();
dbg(`spawn: ${FFMPEG_PATH} ${command.join(" ")}`);
dbg(`spawn stdio: ${stdio.join(" ")}`);
this.process = spawn("ffmpeg", command, { stdio });
this.process = spawn(FFMPEG_PATH, command, { stdio });
const finished = this.handleProcess();

for (const pipe of this.pipes) {
Expand Down

0 comments on commit 231262c

Please sign in to comment.