Hi,
I have been using example 4.1 from picamera read the docs to capture a JPEG file, this works. When I change the file extension to gif I just get a black image.
I can capture a gif image using raspistill .
I have just updated to the latest version of picamera ,1.4 and this has not solved the problem.
Does anyone know if this is an issue with picamera or am I missing an option.
import time
import picamera
with picamera.PiCamera() as camera:
camera.resolution = (1024, 768)
camera.start_preview()
# Camera warm-up time
time.sleep(2)
camera.capture('foo.jpg')
I have just been replacing jpg in the last line above with gif.
