У меня есть следующий пример кода:
import numpy as np
writer = imageio.get_writer('test.mp4', fps=1)
max = 800
resolution = 256
for idx in range(1, max):
img = np.zeros((resolution,resolution))
img[: int((idx / max) * resolution), : int((idx / max) * resolution)] = 255
img = img.astype(np.uint8)
writer.append_data(img)
writer.close()
Видео просто черное для fps == 1
Что мне здесь не хватает? Я не вижу никаких улик в документации о том, что у меня не может быть fps = 1?
EDIT
Для fps >= 10
все в порядке.