Search found 4 matches

Go to advanced search

by StewartLewis
08 Mar 2019 14:45
Forum: VLC stream-output (sout)
Topic: using libvlc to stream with rtp protocol from memory.
Replies: 8
Views: 3859

Re: using libvlc to stream with rtp protocol from memory.

I see. Thank you for all this information chubinou ! :)
by StewartLewis
08 Mar 2019 11:39
Forum: VLC stream-output (sout)
Topic: using libvlc to stream with rtp protocol from memory.
Replies: 8
Views: 3859

Re: using libvlc to stream with rtp protocol from memory.

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...
by StewartLewis
07 Mar 2019 16:56
Forum: VLC stream-output (sout)
Topic: using libvlc to stream with rtp protocol from memory.
Replies: 8
Views: 3859

Re: using libvlc to stream with rtp protocol from memory.

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...
by StewartLewis
06 Mar 2019 17:38
Forum: VLC stream-output (sout)
Topic: using libvlc to stream with rtp protocol from memory.
Replies: 8
Views: 3859

using libvlc to stream with rtp protocol from memory.

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 {...

Go to advanced search