Hi, I am developing a small application with libvlc whose purpose is to stream and record video from a webcam. For the moment, it works fine by sound is missing. And now, I wish to add sound. In the command line, I do: vlc v4l2:///dev/video0 :input-slave=pulse:// --gain=0 ... But with libvlc I can't...
I was wrong. The problem comes from wayland. When I'm using X11, no problem. With wayland (If I understood correctly), there is no more global window ids. So I don't know what to give to libvlc_media_player_set_xwindow. Maybe it's incorrect to call this function. I will look if there is a function l...
Thanks for your reply. videoWidget->winId() seems to be valid and initialized. When I print it, I see value like 1 or 2. But I don't know if it's ok. I read here : https://doc.qt.io/qt-6/qwidget.html#winId that "Portable in principle, but if you use it you are probably about to do something non...
Hello, I built the project found on this page: https://github.com/videolan/vlc/tree/master/doc/libvlc/QtPlayer and tested it. Unfortunately, every time I start playing a file, libvlc opens a new window instead of playing the video in the QWidget. The project was built under Fedora 38. The behavior i...