Skip to content

Commit

Permalink
fix: missing args (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinwoo1225 authored Jun 12, 2023
1 parent 5b83f55 commit 025b1f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function App() {

const outputFileNameWithExtension = fileName+'.mp3'

await ffmpeg.run('-i', name, "-c:v", "copy", "-c:a", "libmp3lame", "-q:a", "4", )
await ffmpeg.run('-i', name, "-c:v", "copy", "-c:a", "libmp3lame", "-q:a", "4", outputFileNameWithExtension)

const data = ffmpeg.FS('readFile', outputFileNameWithExtension)

Expand Down

1 comment on commit 025b1f5

@vercel
Copy link

@vercel vercel bot commented on 025b1f5 Jun 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.