I am developing an application in which I am supposed to get Streaming using webcam, For this I have used the libvlc api, I am able to stream from webcam, But I am getting the stream in the YUYV format, but I want the streaming in the MJPEG format, so can anybody help me how to set streaming format in libvlc.?
|
feedback
|
|
You have to pass the parameter "sout" to libvlc_vlm_add_broadcast function. In it, you can specify the desired format. For instance:
dshow:// is used on Windows, for Linux you use v4l2:///dev/videoX, where X is the cam ID. | |||
|
feedback
|