Change examples to start at port 8081 rather than 8080.

Port 8080 is too commonly used for other purposes.
This commit is contained in:
Peter Johnson
2016-11-18 01:16:40 -08:00
parent 736b5ff424
commit c0bc8d7028
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
int main() {
cs::USBCamera camera{"usbcam", 1};
camera.SetVideoMode(cs::VideoMode::kMJPEG, 320, 240, 30);
cs::MJPEGServer mjpegServer{"httpserver", 8080};
cs::MJPEGServer mjpegServer{"httpserver", 8081};
mjpegServer.SetSource(camera);
getchar();