Re-mux WebM to MP4 #291
-
Hi, I'm trying to use
I get the following errors "At least one output file must be specified" & "Uncaught (in promise) Error: ffmpeg.FS('readFile', 'output.mp4') error. Check if the path exists". Appreciate any assistance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-c:v
andcopy
need to be separate arguments. Changeawait ffmpeg.run('-i', name, '-c:v copy', 'output.mp4')
to
await ffmpeg.run('-i', name, '-c:v', 'copy', 'output.mp4')
.