https://github.com/ifeech/esp_looping_video_player
Plays a short video file (mjpeg) without stopping.
https://github.com/ifeech/esp_looping_video_player
esp32 ili9341
Last synced: about 1 month ago
JSON representation
Plays a short video file (mjpeg) without stopping.
- Host: GitHub
- URL: https://github.com/ifeech/esp_looping_video_player
- Owner: ifeech
- Created: 2025-01-10T20:39:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-15T21:52:26.000Z (about 1 year ago)
- Last Synced: 2025-06-18T18:47:56.306Z (12 months ago)
- Topics: esp32, ili9341
- Language: C++
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Looping video player on esp32
Plays a short video file (mjpeg) without stopping.
Need: esp32, display ili9341 (SPI) with SD card (or external sd card module).
Set ``MJPEG_FILENAME`` to the name of the video file on the SD card.
## Connecting the display to the esp32
| Display | ESP32 |
|---------------|-------|
| VCC | 3.3V |
| GND | GND |
| LED | 16 |
| TFT_CS | 15 |
| TFT_SCK | 18 |
| TFT_MISO | 19 |
| TFT_MOSI | 23 |
| TFT_DC | 2 |
| TFT_RST | 4 |
| SD_CS | 5 |
| SD_MOSI | 21 |
| SD_MISO | 19 |
| SD_SCK | 17 |