user2455079
user2455079

Reputation: 418

Crop mp3 file with ffmpeg which contains album cover

For cropping mp3 to 30 seconds i use this and it worked well until somebody uploaded mp3 file with album cover

ffmpeg -t 30 -i in.mp3 -acodec copy out.mp3

And now i've got this: enter image description here

Any suggestions?

Upvotes: 0

Views: 261

Answers (1)

Gyan
Gyan

Reputation: 92928

Looks like your ffmpeg build does not have the PNG encoder.

Use

ffmpeg -t 30 -i in.mp3 -c:v copy -c:a copy out.mp3

Upvotes: 1

Related Questions