@@ -214,10 +214,15 @@ def run(self):
214
214
# Connect to video stream
215
215
video_stream = VideoStream (self ._rtsp_url )
216
216
217
- # TODO: add retry limit and timeout
217
+ # Timeout if video not available
218
+ video_last_update_time = time .time ()
219
+ video_timeout_period = 5.0
218
220
print ("Waiting for video stream" )
219
221
while not video_stream .frame_available ():
220
222
print ("." , end = "" )
223
+ if (time .time () - video_last_update_time ) > video_timeout_period :
224
+ print ("\n Video stream not avaialble - restarting" )
225
+ return
221
226
time .sleep (0.1 )
222
227
print ("\n Video stream available" )
223
228
@@ -246,8 +251,8 @@ def run(self):
246
251
fps = 50
247
252
update_rate = fps
248
253
update_period = 1.0 / update_rate
254
+
249
255
frame_count = 0
250
- av_update_time = 0.0
251
256
while True :
252
257
start_time = time .time ()
253
258
@@ -317,7 +322,6 @@ def __compare_rect(rect1, rect2):
317
322
elapsed_time = time .time () - start_time
318
323
sleep_time = max (0.0 , update_period - elapsed_time )
319
324
time .sleep (sleep_time )
320
- av_update_time += elapsed_time
321
325
322
326
323
327
class VideoStream :
@@ -1038,6 +1042,8 @@ def set_normalised_roi(self, nroi):
1038
1042
1039
1043
1040
1044
if __name__ == "__main__" :
1045
+ import os
1046
+ import sys
1041
1047
from optparse import OptionParser
1042
1048
1043
1049
parser = OptionParser ("onboard_controller.py [options]" )
@@ -1062,4 +1068,10 @@ def set_normalised_roi(self, nroi):
1062
1068
controller = OnboardController (
1063
1069
opts .master , opts .sysid , opts .cmpid , opts .rtsp_server
1064
1070
)
1065
- controller .run ()
1071
+
1072
+ while True :
1073
+ try :
1074
+ controller .run ()
1075
+ except KeyboardInterrupt :
1076
+ EXIT_CODE_CTRL_C = 130
1077
+ sys .exit (EXIT_CODE_CTRL_C )
0 commit comments