Ed Murphy

Results 215 comments of Ed Murphy

This is the wakelock api in Chrome; https://developer.chrome.com/blog/new-in-chrome-79/#wake-lock

In terms of video, the web server code serves a multipart image type to the /video endpoint and writes jpegs to the connection; https://github.com/autorope/donkeycar/blob/b1af0aacf488c938231912f89c4bfa5c2b11c649/donkeycar/parts/web_controller/web.py#L284 The web client code connects to...

All the code I have found for streaming video with Python does it the way we already do it; open a multi-part connectino and write jpegs to a img tag....

MDN page on live streaming; https://developer.mozilla.org/en-US/docs/Web/Guide/Audio_and_video_delivery/Live_streaming_web_audio_and_video . What we would need to do is to serve in a containerized video format in real-time. I don't find any native python libraries...

Status is that the kinematics are producing a repeatable path, but it is not accurate. so the strange results is that if you record a path and put it in...

We are currently running a webserver on the car with an api that allows us to command the car through a rest API and/or websocket. We have an api that...

This is mentioned in the encoder section of the docs, but there is no reference to it in the code and no sketch that can be loaded onto an astar...

Proposed UI change; change from 3 column layout to a two column layout that works better on mobile. - Put pilot mode and recording on a single line and at...

@DocGarbanzo if we like this feature (I like it), we should change that to f-string ourselves or merge as is.

See this related issue https://github.com/autorope/donkeycar/issues/749