easytarget / esp32-cam-webserver

Expanded version of the Espressif ESP webcam
https://hackaday.io/project/168563-7-esp32-cam-example-expanded
GNU Lesser General Public License v2.1
1.29k stars 346 forks source link

video stream using tinyCam PRO is not working #57

Closed TungstenE2 closed 4 years ago

TungstenE2 commented 4 years ago

Hi,

when I used the original demo version available in Arduino IDE I was able to get the video stream on my mobile using tinyCam PRO Android app.

Settings: Vendor: Generic Camera model: Generic URL URL: http://IP:81/stream Protocol: snapshot (JPEG)

Now with your project the above settings (but URL http://IP:81/view) does not show the stream.

Also changing the protocol to 'Server push (MJPEG)' does not work.

grafik grafik

Any ideas?

Thx

easytarget commented 4 years ago

Remove the view part of the url, eg http//IP:81/ the stream itself is on the raw port, the /view URL is for the html page of the stream viewer

TungstenE2 commented 4 years ago

great, this worked!

May be it would worth to have a URL chapter on the project info page, listing the most common once:

eg: GUI for settings http://"IP"/

Snapshot http://"IP"/capture

Stream in html page http://"IP":81/view

raw stream for survillance clients http://"IP":81/

commands: Flash light: on/off http://"IP"/control?var=lamp&val=100 http://"IP"/control?var=lamp&val=0

etc...

easytarget commented 4 years ago

That is why I created #55 :wink: