Skip to content Skip to sidebar Skip to footer

Cannot Convert .ogg File To .mp3 Or Other File Formats

I am trying to convert ogg audio file to mp3 or other audio file formats that can be played in ios devices But ogg files are not being converted into other formats like mp3 and caf

Solution 1:

Remove the -c:a copy option.

About that option, the ffmpeg documentation says:

a special value copy (output only) to indicate that the stream is not to be re-encoded.

You are disabling encoding and suggesting ffmpeg to treat a vorbis stream as an mp3 stream.

In your case you want to encode your input stream as a different output stream.

Post a Comment for "Cannot Convert .ogg File To .mp3 Or Other File Formats"