"Failed to update header with correct duration.e=0.40 bitrate=1884.7kbits/s
[flv @ 0x59b8e0] Failed to update header with correct filesize.
" "Discarding initial frame(s) with no timestamp.=10000000000.00 bitrate= 0.0kbits/s
[fps @ 0x1c3a500] Discarding initial frame(s) with no timestamp.
"
If anyone could please help It would be really appreciated.
Code: Select all
import picamera
with picamera.PiCamera() as camera:
camera.resolution = (1024, 768)
camera.framerate = 10
camera.start_recording('highres.h264')
camera.start_recording('lowres.h264', splitter_port=2, resize=(620, 480))
camera.wait_recording(3000)
camera.stop_recording(splitter_port=2)
camera.stop_recording()