3

I have two questions on working with ffmpeg:

1) how to remove cover picture from mp3 2) if there is a cover in mp3, how to say ffmpeg to convert it to ogg without picture

1 Answer 1

5

How about this sir

ffmpeg -i a.mp3 -q 1 -map a a.ogg

ref

2
  • 3
    Link is dead, an explanation would be nice
    – RMalke
    Commented Jul 23, 2018 at 20:05
  • 6
    Since they didn't give explanation in 6 years I will.. The "-map a" option just says only take audio streams from input and copy them out to new file with ogg format (indicated by .ogg extension). Ignoring mapping the "cover" stream (which is a "v" stream) will remove it.
    – Jann
    Commented Jan 19, 2020 at 15:38

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.