This commit is contained in:
2025-12-31 13:33:10 +01:00
parent b4330706cd
commit 03d36e1d44
2 changed files with 5 additions and 5 deletions

View File

@@ -29,5 +29,5 @@ class GameService:
encoded_frame = cv2.imencode('.jpg', img)
image_bytes = encoded_frame[1].tobytes()
headers = {'Content-Type': 'image/jpeg'}
response = requests.post("https://192.168.15.125/party/image", data=image_bytes, headers=headers)
response = requests.post("https://192.168.15.125:1880/party/image", data=image_bytes, headers=headers)
print(response.status_code)