From e6bb8626c8e6a556e912c4c15bd46b1fb45f7de6 Mon Sep 17 00:00:00 2001 From: Zhiyuan Ouyang Date: Tue, 17 Mar 2026 10:30:40 -0700 Subject: [PATCH] Add a ExifTag "FrameRate" to be supported in PIL. Reference: https://exiftool.org/TagNames/EXIF.html --- src/PIL/ExifTags.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PIL/ExifTags.py b/src/PIL/ExifTags.py index c1c05cdba71..a9522e761b0 100644 --- a/src/PIL/ExifTags.py +++ b/src/PIL/ExifTags.py @@ -289,6 +289,7 @@ class Base(IntEnum): OpcodeList2 = 0xC741 OpcodeList3 = 0xC74E NoiseProfile = 0xC761 + FrameRate = 0xC764 """Maps EXIF tags to tag names."""