The ffmpeg master branch already supports the heic format. How do I pass parameters using the ffmpeg command to convert heic images to jpeg images of other resolutions?
ffmpeg -i test.heic output.jpg, this command only transcodes part of the heic image;
ffmpeg -i test.heic -map 0 %d.jpeg, this command will generate 49 jpeg pictures.
But I don’t know how to synthesize a complete jpeg picture at once, and it has black borders (a multiple of 8, for example, the resolution of the 8th picture is wrong)