Mjpeg VLC and HTTP Streaming

前端 未结 3 2008
小蘑菇
小蘑菇 2021-02-10 18:18

I\'m generating a MJpeg Stream and trying to stream it to VLC and play it there.

The code:

        public void SendMultiPartData(String contentType, Func         


        
3条回答
  •  无人及你
    2021-02-10 19:12

    Have you tried this:

    Response.Buffer = false;
    Response.BufferOutput = false;
    

    Or some variation of those?

提交回复
热议问题