Jelajahi Sumber

fix: ffmpeg works without ffmpeg_args

issue #212
C4illin 6 bulan lalu
induk
melakukan
3b7ea88b73
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/converters/ffmpeg.ts

+ 1 - 1
src/converters/ffmpeg.ts

@@ -700,7 +700,7 @@ export async function convert(
     message = "Done: resized to 256x256";
   }
 
-  const command = `ffmpeg ${process.env.FFMPEG_ARGS} -i "${filePath}" ${extra} "${targetPath}"`;
+  const command = `ffmpeg ${process.env.FFMPEG_ARGS || ""} -i "${filePath}" ${extra} "${targetPath}"`;
 
   return new Promise((resolve, reject) => {
     exec(command, (error, stdout, stderr) => {