I have a HEIC file containing multiple images. How can I extract this image sequence in JPEG or PNG format ? Is there a NuGet that simplefies the process?
This is for an image handeling software on android, IOS and UWP. I have been looking for a starting point to write this part of the code.
ffmpeg
(HEIC is just a container and in an image-burst-based HEIC, there is an embedded hevc/hvc1 video stream (actually there are multiple streams) and you can extract these to "frames" – Karolekarolinaffproble file.heic
but it gives[mov,mp4,m4a,3gp,3g2,mj2 @ 000001ab23e4da00] moov atom not found
. And my ffmpeg build was built with--enable-libx265
support. – Amphimixis