Your sample works wonders! :) Thank you so much. for the posterity's sake, I'm noting that my errors were the following : 1) Passing options as "--rawvid-fps=30" instead of ":rawvid-fps=30" 2) Not passing a ":rawvid-chroma" with the correct format. I have one more quest...
Thank your for you reply. From what I understand, I should be passing the options you mention to the vlc instance right? This would look something like this : std::vector<const char*> options; options.push_back("--verbose=1"); options.push_back("--rawvid-fps=30"); options.push_ba...
Hello, I've been trying to use libvlc to create an rtp stream and send simple images loaded into memory. For this I'm creating simple OpenCV Matrices and passing them through the callback api . Here is what my code looks like : Simple Mem class that contains the buffer to stream class MemVideoData {...