video streaming code was working perfectly (code example link) after suddenly it started getting only empty frames
def yuv_frame_processing(self):
self.name = ""
while self.running:
try:
yuv_frame = self.frame_queue.get(timeout=0.1)
print("good frame")
except queue.Empty:
print("empty")
continue
yuv_frame.unref()
version of olympe:
parrot-olympe==7.5.0
Any ideas whats happened, where is problem?