CroatianMeteorNetwork / RMS

RPi Meteor Station
https://globalmeteornetwork.org/
GNU General Public License v3.0
169 stars 47 forks source link

Fix Dropped Frames Count Reporting in StartCapture #251

Closed Cybis320 closed 5 months ago

Cybis320 commented 5 months ago

This PR addresses the problem described in issue #249, where dropped_frames was always reported as zero due to its assignment occurring after bc.stopCapture() in startCapture.py. The proposed change ensures that the correct number of dropped frames is reported in the logs.

Changes made:

Fixes #249