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
Hi @TiagoPrata , I push data img with python code but stream video not work. this's simple code:
cap = cv2.VideoCapture(rtsp) while True: ret, frame = cap.read() if ret: frame = cv2.resize(frame,(1296,972)) _, buffer = cv2.imencode('.jpg', frame) img_base64str = base64.b64encode(buffer).decode('utf-8') response = requests.post(url, json={'img_base64str': img_base64str}) print(response.json()) print(str(datetime.datetime.now())) if cv2.waitKey(1) & 0xff == ord('q'): break
Can you tell my issue in this case ? Thank you verry muck !
Can
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @TiagoPrata , I push data img with python code but stream video not work.
this's simple code:
Can
you tell my issue in this case ?Thank you verry muck !
The text was updated successfully, but these errors were encountered: