Skip to content

Commit

Permalink
Only log message and not type for ffmpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanseddon committed Dec 2, 2024
1 parent f9ce9cb commit fc990e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ffmpeg-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const FFmpegProvider: React.FC<{
const ffmpeg = await loadFFmpeg();

ffmpeg.on("log", ({ type, message }) => {
console.log(type, message);
console.log(message);
});

await ffmpeg.exec(command);
Expand Down

0 comments on commit fc990e2

Please sign in to comment.