Пользователь
stephon
Как открыть gif файл в Python?
dmitrypro77
@stephon Можно использовать Python Image Library чтобы открыть gif файлы в Python, код:
1 2 3 4
from PIL import Image im = Image.open('test.gif') print(im.info)