Thank you! I had set the monLeft.setFps(60) and monoRight but it didn't change anything so I removed them. From what I read here the max frame rate is supposed to be 25 fps right ?
https://docs.luxonis.com/projects/api/en/latest/samples/VideoEncoder/encoding_max_limit/#encoding-max-limit
I think indeed I'm not reaching 60 fps in base camera cause when I tried to get videos with the SDK record
from depthai_sdk import OakCamera, RecordType
with OakCamera() as oak:
#color = oak.create_camera('color', resolution='1080P', fps=20, encode='H265')
left = oak.create_camera('left', resolution='800p', fps=60, encode='H265')
right = oak.create_camera('right', resolution='800p', fps=60, encode='H265')
# Synchronize & save all (encoded) streams
oak.record([left.out.encoded, right.out.encoded], './', RecordType.VIDEO)
oak.visualize([left.out.camera], scale=2/3, fps=True)
oak.start(blocking=True)
when I set the fps to 60 it didn't go over 30 fps in the visualization. The thing is I'm just trying to get mp4 videos with max fps and max resolution with oak-d camera, so do you know what's the max frame rate I can get with POE
Thank you in advance