Skip to content

Instantly share code, notes, and snippets.

@jankalfus
Last active May 15, 2025 10:30
Show Gist options
  • Save jankalfus/efce9c7b1f6e5f1e4ead70bdf9e987b6 to your computer and use it in GitHub Desktop.
Save jankalfus/efce9c7b1f6e5f1e4ead70bdf9e987b6 to your computer and use it in GitHub Desktop.
HEIC/HEIF Fedora 42

H265 video support in VLC:

  1. Follow https://rpmfusion.org/Howto/Multimedia
  2. Then install libavcodec-freeworld: dnf install libavcodec-freeworld
  3. Install VLC from RPM Fedora Linux. Not flatpak! The flatpak version doesn’t work with this!

HEIC support in Gnome Image Preview and Nautilus (make sure to follow the above first):

  1. dnf install libheif-freeworld
  2. dnf install heif-thumbnailer
  3. (optional) dnf install ffmpegthumbnailer (get thumbnails in Nautilus also for MP4, MOV etc.)
  4. Log out/in
  5. (optional) rm -rf ~/.cache/thumbnails (to recreate thumbnails for already viewed files)

Convert HEIC to JPEG (in fish shell):

for file in *.HEIC
   heif-convert $file
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment