We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bonjour, Lorsque je lance le programme de capture vidéo du drone ci dessous, cela me renvoie une KeyError: '192.168.10.1'
frame_read = tello.get_frame_read()
def videoRecorder(): height, width, _ =frame_read.frame.shape video= cv2.VideoWriter('video.avi',cv2.VideoWriter_fourcc(*'XVID'),38,(width,height)) while keepRecording: video.write(frame_read.frame) time.sleep video.release
recorder= Thread(target=videoRecorder) recorder.start() tello.takeoff() tello.land() keepRecording= False recorder.join()
The text was updated successfully, but these errors were encountered:
Hey,
can you describe your problem in english? Also please include the full error log.
Sorry, something went wrong.
No branches or pull requests
Bonjour,
Lorsque je lance le programme de capture vidéo du drone ci dessous, cela me renvoie une KeyError: '192.168.10.1'
frame_read = tello.get_frame_read()
def videoRecorder():
height, width, _ =frame_read.frame.shape
video= cv2.VideoWriter('video.avi',cv2.VideoWriter_fourcc(*'XVID'),38,(width,height))
while keepRecording:
video.write(frame_read.frame)
time.sleep
video.release
recorder= Thread(target=videoRecorder)
recorder.start()
tello.takeoff()
tello.land()
keepRecording= False
recorder.join()
The text was updated successfully, but these errors were encountered: