Replies: 1 comment
-
Here's how I solved it: PiCamera.Encoder._timestamp() always substracts firsttimestamp from the timestamp. To prevent this, I use JpegStcEncoder below. It seems, SensorTimestamp provides the STC.
Minor issue with PiCamera.Encoder._timestamp, it does not round to timestamp_us: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When running the code below,
cam_first_line_us
starts with 0. I want to have the time relative to other IO events, respectively to the STC, is that possible? With Raspberry 3 and PiCamera, that was done withcam_first_line_us = picamera.frame.timestamp % (2 ** 32)
.Beta Was this translation helpful? Give feedback.
All reactions