esp_video icon indicating copy to clipboard operation
esp_video copied to clipboard

Proof of concept video player for ESP32 boards

Results 3 esp_video issues
Sort by recently updated
recently updated
newest added

Great project !The project seems to work only when two SPI devices are connected on two different SPI buses. I tried to do it on same bus i.e. HSPI but...

V 4 has refactored sdspi_device_config_t to sdspi_slot_config_t These changes are necessary: ``` sdspi_slot_config_t slot_config = SDSPI_SLOT_CONFIG_DEFAULT(); //slot_config.gpio_cs = CONFIG_SDCARD_PIN_CS; //slot_config.host_id = VSPI_HOST; slot_config.gpio_miso = CONFIG_SDCARD_PIN_MISO; slot_config.gpio_mosi = CONFIG_SDCARD_PIN_MOSI; slot_config.gpio_sck =...