You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the main page of the webUI, I click on a thumbnail image and the snapshot window pops up, but when I try to click the View Video link in the bottom left hand corner, I just get a broken video image. This appears to be coming from an internal flask re-routing logic where whosatmyfeeder makes a request to frigate to fetch the video and then send it to the user directly here:
# If there's any issue fetching the image, return a 500 error
print(f"Error fetching image from frigate: {e}", flush=True)
abort(500)
When I examine the frigate api logs, it appears to have fetched correctly with a 200 so I'm not sure why this isn't working but it seems like it's breaking in line 62: return send_file(response.raw, mimetype=response.headers['Content-Type']). Any ideas? Thanks.
The text was updated successfully, but these errors were encountered:
@empireshades not sure if you have the same issue that I ran into but check out my closed issue #55 I forked the repo and fixed the code and now the videos play in Safari and on my iPhone.
On the main page of the webUI, I click on a thumbnail image and the snapshot window pops up, but when I try to click the View Video link in the bottom left hand corner, I just get a broken video image. This appears to be coming from an internal flask re-routing logic where whosatmyfeeder makes a request to frigate to fetch the video and then send it to the user directly here:
WhosAtMyFeeder/webui.py
Lines 52 to 69 in 787c665
return send_file(response.raw, mimetype=response.headers['Content-Type'])
. Any ideas? Thanks.The text was updated successfully, but these errors were encountered: