How to convert ogg to mp3? #387
Answered
by
kokorin
kolisnichenko2828
asked this question in
Q&A
-
How to convert ogg to mp3? |
Beta Was this translation helpful? Give feedback.
Answered by
kokorin
Feb 26, 2024
Replies: 1 comment
-
I would recommend you checking ffmpeg documentation first. The command is very simple FFmpeg.atPath()
.addInput(UrlInput.fromUrl(pathToOgg))
.setOverwriteOutput(true)
.addOutput(UrlOutput.fromUrl(pathToMp3))
.execute(); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kolisnichenko2828
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would recommend you checking ffmpeg documentation first. The command is very simple
ffmpeg -i input.ogg output.mp3
.See whole example (with progress tracking) here.