mirror of
https://github.com/beaston02/CAM4Recorder.git
synced 2024-11-10 09:13:12 +08:00
Update CAM4Recorder.py
This commit is contained in:
parent
efdd29a212
commit
621ef9ad3f
1 changed files with 7 additions and 3 deletions
|
@ -62,9 +62,13 @@ def startRecording(model):
|
|||
data = fd.read(1024)
|
||||
f.write(data)
|
||||
except:
|
||||
pass
|
||||
if model in recording:
|
||||
recording.remove(model)
|
||||
recording.remove(model)
|
||||
|
||||
if model in recording:
|
||||
recording.remove(model)
|
||||
except:
|
||||
if model in recording:
|
||||
recording.remove(model)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue