• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Feb-2021-

cmake/H20-Feb-2021-235188

plugins/H20-Feb-2021-45,35732,081

scripts/H20-Feb-2021-283174

www/H03-May-2022-803712

DockerfileH A D20-Feb-2021596 2113

LICENSEH A D20-Feb-202117.6 KiB340281

MakefileH A D20-Feb-2021772 3216

README.mdH A D20-Feb-20211.3 KiB4226

TODOH A D20-Feb-2021330 139

docker-start.shH A D20-Feb-2021116 53

makedeb.shH A D20-Feb-2021510 139

mjpg_streamer.cH A D20-Feb-202115.4 KiB422300

mjpg_streamer.hH A D03-May-20223.6 KiB9747

mjpg_streamer@.serviceH A D20-Feb-2021285 118

postinstall.shH A D20-Feb-202157 31

start.shH A D20-Feb-20215 KiB912

utils.cH A D03-May-20224.5 KiB14590

utils.hH A D20-Feb-20215 KiB13384

README.md

1mjpg-streamer
2=============
3
4Currently no issues are known, but since this software is quite young and not used widely it may cause problems. You must really know what you are doing, if you use this software. If you want to use the software you are obliged to check if the sourcecode does what you expect it to do and take the risk yourself to use it.
5
6
7Usage
8=====
9
10When launching mjpg-streamer, you specify one or more input plugins and an output plugin. For example, to stream a V4L compatible webcam via an HTTP server (the most common use case), you
11can do something like this:
12
13	mjpg_streamer -i input_uvc.so -o output_http.so
14
15Each plugin supports various options, you can view the plugin's options via its `--help` option:
16
17	mjpg_streamer -i 'input_uvc.so --help'
18
19
20More examples can be found in the start.sh bash script.
21
22Plugin documentation
23====================
24
25Input plugins:
26
27* input_file
28* input_http
29* input_opencv ([documentation](plugins/input_opencv/README.md))
30* input_ptp2
31* input_raspicam ([documentation](plugins/input_raspicam/README.md))
32* input_uvc ([documentation](plugins/input_uvc/README.md))
33
34Output plugins:
35
36* output_file
37* output_http ([documentation](plugins/output_http/README.md))
38* ~output_rtsp~ (not functional)
39* ~output_udp~ (not functional)
40* output_viewer ([documentation](plugins/output_viewer/README.md))
41
42