Just to tell you more about your question / answer. The published answer refers only to the example, but does not explain it, niether does the example itself. So I would like to complete this answer if someone else stumbles upon it.
When you determined the vlc stream that you forgot to share with your question, most likely you did not specify any parameters from the http access parameter and had a standard vlc module. (just like I did when I came across the same problem)
standard{access=http,mux=mpjpeg,dst=< address >:< port >/< path >}
You use VLC to create the mjpeg stream transmitted over http. Thanks osgx to answer in another question , here is the wikipedia link describing MPJEG over HTTP . Mostly:
M-JPEG via HTTP informs the client using a special type of mime type multipart / x-mixed-replace with the border = * <border> ***** parameter that you will send a series of JPEG images separated by the <border> symbol.
The rules that apply to <boundary> were specified in this Gumbo post and some other recommendations that may now be outdated with newer ones are defined in RFC2046
Mixed replacement media types are described in an article in MIME
As an example that you posted, the definition of mime of media content transmitted over HTTP is included, can be defined as an optional parameter with the definition of http access.
standard{access=http{mime=multipart/x-mixed-replace;boundary=--myboudary},mux=mpjpeg,dst=< address >:< port >/< path >}
source share