How to get album image from mp3 file using ffmpeg in php

I want an image album from mp3 files. I have ffmpeg to get metadata of mp3 files using

ffprobe -show_format path-name .

In this team I get all the details except the image of the album. How can I get an image from mp3 files?

+5
source share
1 answer

You can get the image from mp3 using the following code snippet, try this.

ffmpeg -ss 125 -i wrong-way-fixed.mp3 -t 1 \ -s 480x300 -f image2 /dev/null 

or use this

 ffmpeg -i input.mp3 -an -vcodec copy cover.jpg 

Here you can determine the resolution of the image.

+4
source

Source: https://habr.com/ru/post/1201869/


All Articles