No video

Play video and audio from ESP32!

  Рет қаралды 20,171

That Project

That Project

Күн бұрын

Пікірлер: 51
@ThatProject
@ThatProject Жыл бұрын
For more projects - kzbin.info That Project Github Repository - github.com/0015/ThatProject Join FB Group - facebook.com/groups/138965931539175
@TT-it9gg
@TT-it9gg Жыл бұрын
Just done the MJPEG+MP3. Nice to see you made MJPEG+AAC. Good job!
@surflaweb
@surflaweb Жыл бұрын
Amazing project. Excellent work. Keep it up!
@teddykim1107
@teddykim1107 Жыл бұрын
Nice bro, I guess you might be Chinese aren't you? Your accent sounds like my friend. I am Korean and I have very strong Korean accent on my english too. By the way, your project looks awesome and I am amazed by your works with ESP32. It is hard to keep recording video with great quality of the projects. I would like to record my project but..... I found out doing project + video recording + editing are not easy taking time twice. Especially, your project is meaningful and your idea is really fresh. The completion level is also great. Nice job so far and I am looking forward seeing more project on this channel. Thanks.
@dynamight1124
@dynamight1124 8 ай бұрын
I love this, I am planning on a similar project however using a single button to change channel. I am no coding expert but can usually get things going with some tips! Looks like I need to change the 'touchTask' into something that relates to button presses, got any suggestions to set me in the right direction?
@ThatProject
@ThatProject 8 ай бұрын
How about adding a button interrupt?
@huylehoang3856
@huylehoang3856 10 күн бұрын
Hi sir. I want when gesture, another video will play immediately and not display Black background few seconds. Can project do that? Thanks for your help ❤
@Charles-lt9rr
@Charles-lt9rr Жыл бұрын
Thanks very much my dear. You are great!!!
@baldhead69
@baldhead69 Жыл бұрын
Good project. Are you using tearing support in this screen/project ?
@ThatProject
@ThatProject Жыл бұрын
No, absolutely not. It doesn't have that kind of luxury function.
@randoarchive
@randoarchive 11 ай бұрын
At the end of your video, you do a demo of the final result. Many of the videos have visible glitching. Is this due to screen tearing? A mismatch in refresh rate? Or is it struggling to keep up with the frame rate?
@ThatProject
@ThatProject 11 ай бұрын
ESP32 doesn't have a codec to play a media file. So it's decoding with software to play both video and audio at the same. This is a pretty heavy task on ESP32. Glitches may occur because the entire screen cannot be redrawn within a certain time.
@creativemario3039
@creativemario3039 Жыл бұрын
I always program with the arduino ide I don't know how to program on visual studio code do you have a tutorial on how to Or a video from an another channel ?
@ThatProject
@ThatProject Жыл бұрын
This project was done with Arduino IDE. Are you talking about ESP-IDF? It's tricky but worth learning. Looking at examples is very helpful. I don't have a tutorial on that yet. I'll try to make it if I have a chance. Thanks.
@TucksProjects
@TucksProjects 11 ай бұрын
Did you make the pcb with the MINI TV text on it? Or is it possible to buy that?
@ThatProject
@ThatProject 11 ай бұрын
This was a just prototype. You need to make it by yourself with the small display.
@Elshan_Mammadov_
@Elshan_Mammadov_ 6 ай бұрын
Nice project. I will do such a project too. So, can we add the channels we want to the device?
@ThatProject
@ThatProject 6 ай бұрын
What do you mean by "add channels"? In this project, I just showed the channel number to determine which file is selected from SD card. Is that what you think?
@Elshan_Mammadov_
@Elshan_Mammadov_ 6 ай бұрын
@@ThatProject I mean, for example, I want to add a television channel. For example, is it possible to add the CNN news channel?
@ThatProject
@ThatProject 6 ай бұрын
@@Elshan_Mammadov_ Do you mean in real-time? Then it is impossible. Currently, the task of separating the image and audio cannot be performed inside the ESP32, so you must first separate the image data and audio data from the original video.
@Elshan_Mammadov_
@Elshan_Mammadov_ 6 ай бұрын
@@ThatProject I understand. Thank you for the information.
@randoarchive
@randoarchive 11 ай бұрын
At 1:51 , you say we need something running at 80Mhz, but I can't quite understand what it is you're mentioning. Could you clarify that part please? EDIT: I used AI to create subtitles, and it says you said "A display that operates at 80Mhz". I don't know if that's accurate, but I do know that I can't find any specs on any display that shows its Mhz. At best, Hz, but usually its speed is measured in ms. I guess I'm barking up the wrong tree?
@ThatProject
@ThatProject 11 ай бұрын
The 80Mhz is the maximum speed of the APB Clock of ESP32. Also, it can be the maximum speed of the SPI interface if the display IC supports it.
@randoarchive
@randoarchive 11 ай бұрын
Thank you@@ThatProject
@jameszahary
@jameszahary Жыл бұрын
nice - i used lego to embed a video camera, and another set for the streaming "flippy-screen" - cheaper than a digital printer, and kids can build it into bigger projects.
@rinderkn
@rinderkn 10 ай бұрын
Nice work. Would this also work with a RP2040 microcontroller?
@ThatProject
@ThatProject 10 ай бұрын
Unfortunately, it won't work in RP2040 with my code. You need to change the code for it.
@davisje011
@davisje011 7 ай бұрын
trying to get this to loop a video, but it keeps restarting even though I removed the command from the controller. I know it has something to do with clearing the buffers, But I cant get them to work.
@ThatProject
@ThatProject 7 ай бұрын
What display are you using? Try using only 50% of your current screen size. As you said, it seems like it's not emptying all the buffers in time.
@davisje011
@davisje011 7 ай бұрын
@ThatProject 2" st7789. I'm currently running a single core code right now, but like the smoothness of dual core. I'm using them for props, the videos need to loop seamlessly unless an interrupt to change files happens. In the code I'm using, the originator added free(_mjpeg_Buf); At the end of the video, it allows it to loop without crashing. I just don't know how to do that for the dual core, because I would think it would need to free 2 buffers, correct? NULL doesn't work.
@ThatProject
@ThatProject 7 ай бұрын
@@davisje011 The use of 2 cores is to reduce bottlenecks and increase FPS by separating the decoding and drawing parts of the image when drawing the screen. I also had a similar problem, and in the end, when one file was finished playing, I had to set it to the next file name and then reset it to play the next video. In order to make it without restarting, you will need to clear everything allocated to memory at the end of the video and reset both the video and audio tasks. I don't know how effective this will be.
@dutchflyingpilot
@dutchflyingpilot 2 ай бұрын
Mine works. No restarts! I've created a void and run the code from there. At the end of the video the void returns to the main loop where it gets called again. Make sure to initialize the sd card-reader inside the void again otherwise it will crash and resets. Also add a small delay (2000 or so) before the video closes. It compensates for a a/v length-difference and thus avoiding a crash. Usefull for longer clips.
@jlcamry
@jlcamry Жыл бұрын
nice~funny TV
@digital945
@digital945 Жыл бұрын
if there a remote with basic keys it would awsome hope you will ad it for your viewers... dont forget everyone have a kid inside😁
@mylaughingtv
@mylaughingtv Жыл бұрын
Hi, Can connect setup box output to esp32 as input and see all video on webserver?
@ThatProject
@ThatProject Жыл бұрын
The small size of video files might be possible, but at the moment I have no idea how to configure the system for it. I'll try it if I have a good idea.
@junhaozhang533
@junhaozhang533 Жыл бұрын
is that possible to run on esp8266? with mjpeg only?
@ThatProject
@ThatProject Жыл бұрын
I don't think so. The base project mentions only ESP32 not ESP8266 so not sure about it.
@miniaturascastillo-minic6564
@miniaturascastillo-minic6564 4 ай бұрын
EL PROYECTO SE PUEDE HACER CON TTGO - T - DISPLAY ????
@ThatProject
@ThatProject 4 ай бұрын
There is a high possibility that it will not work because TTGO T Display does not have PSRAM.
@dutchflyingpilot
@dutchflyingpilot 2 ай бұрын
Works perfect on a TTGO S3 Display,. Make sure to use the Arduino_ESP32LCD8 databus driver, together with the Arduino_st7789 GFX driver. Define all LCD pins (according to the data bus), the Pin_POWER (15) and BUTTON pins (0 and 14). Do not forget to power on the display in Setup (PIN_POWER_ON) Connect your SD card reader to pins 10 (CS), 11 (MISO), 12 (CLK), 13 (MOSI)
@ThatProject
@ThatProject 2 ай бұрын
@@dutchflyingpilot Good to know! Thank you!
@maicon7777777
@maicon7777777 10 ай бұрын
Would be nice if has an A/V or HDMI connection 😅
@aleksandr2394
@aleksandr2394 Жыл бұрын
Cute project. Where can I find the ctp 1.69 lcd module like that from your video?
@ThatProject
@ThatProject Жыл бұрын
Check this one. www.alibaba.com/product-detail/Optional-Capacitive-Touch-Panel-Smart-Watch_1600283882399.html
@jasonnation6615
@jasonnation6615 11 ай бұрын
I would pay you to make me one of those.
@ThatProject
@ThatProject 11 ай бұрын
Haha
@Ipsissimus
@Ipsissimus 10 ай бұрын
I can't understand you well bro. :(
@Marques330
@Marques330 10 ай бұрын
What is the exact name of the lcd display you have in the video, could you provide me with a link if possible? Thank you
@ThatProject
@ThatProject 10 ай бұрын
I'm not sure because it's been so long. I'll let you know when I find out.
@agrominigps
@agrominigps Жыл бұрын
Hello! fails to compile :( log file: drive.google.com/file/d/1gL1YQ0BjoKZwliLLDg1qTCOJHMYiHpr1/view?usp=sharing I used: ESP32 by Espressif Systems 2.0.11 installed Please upload libraries to google drive
Bring GIFs to Life: Animating with Round Displays & ESP32
27:26
The Last Outpost Workshop
Рет қаралды 34 М.
M5Stack Cardputer: ESP32-S3 Pocket Computer
17:06
ExplainingComputers
Рет қаралды 83 М.
Чёрная ДЫРА 🕳️ | WICSUR #shorts
00:49
Бискас
Рет қаралды 6 МЛН
Кадр сыртындағы қызықтар | Келінжан
00:16
КТО ЛЮБИТ ГРИБЫ?? #shorts
00:24
Паша Осадчий
Рет қаралды 3,8 МЛН
Things you can make from old, dead laptops
19:03
DIY Perks
Рет қаралды 12 МЛН
The coolest robot I've ever built!
19:40
Thomas Burns
Рет қаралды 4,6 МЛН
I tried to Power my Home with Wind Generators! (Worth it?)
12:59
GreatScott!
Рет қаралды 382 М.
Play MP3 Files on ESP32 Without Codec Chip: Easy Guide
8:51
atomic14
Рет қаралды 84 М.
Making the most EQUIPPED DIY Security Camera with ESP32-CAM
26:36
Max Imagination
Рет қаралды 354 М.
12 Mind-Blowing ESP32 Projects to try in 2024!
8:50
ToP Projects Compilation
Рет қаралды 102 М.
Can the ESP32 Handle 6 animated GIFs on 6 Screens ?
6:36
The Last Outpost Workshop
Рет қаралды 39 М.
I tried the Cheapest Arduino Alternative (that Nobody heard of)
13:31