- Newest
- Most votes
- Most comments
Consider the following options:
-
Use RTSP (Real Time Streaming Protocol) from the ESP32-EYE to stream video to an intermediate server or edge device. This server could then use the Kinesis Video Streams SDK to forward the stream to AWS.
-
Implement a custom solution using the ESP32's capabilities to capture video frames and send them over MQTT or HTTP to an AWS service like IoT Core. From there, you could process and forward the video data to Kinesis Video Streams.
The ESP-IDF provides more low-level control and better performance, which is crucial for video streaming applications.
To implement this, you would need to:
- Set up your ESP32-EYE development environment using ESP-IDF.
- Implement video capture on the ESP32-EYE.
- Establish a network connection (Wi-Fi or Ethernet).
- Implement a streaming protocol (like RTSP) or a custom solution to send video data.
- Set up a server or AWS service to receive this data and forward it to Kinesis Video Streams.
Sources
Stream live media (SDKs) - Kinesis Video Streams
Kinesis Video Streams API and producer libraries support - Amazon Kinesis Video Streams
Write and examine the code - Amazon Kinesis Video Streams
Relevant content
- asked a year ago
- asked a year ago
- AWS OFFICIALUpdated 2 years ago
