I won't be able to run vlc after successfully built and installed from source.
➜ vlc git:(master) ✗ ./qvlc
VLC media player 4.0.0-dev Otto Chriek (revision 4.0.0-dev-30867-gd0fc525c56)
Error: Unknown option `--dbus'
For more information try --help
Actually, I'm building vlc from source (vlc-3.0.17.3) under Ubuntu 22.04, with gcc 11.2 . I got a couple of NO s when looking for the packages. checking for libidn... no ([b]libidn2 is installed by default[/b]) ...... configure: WARNING: Library freerdp >= 1.0.1 needed for freerdp was not found ([b]...
Hi, I'm trying to build vlc-3.0.11 It failed to be built for qt: CXX gui/qt/libqt_plugin_la-menus.lo gui/qt/qt.cpp:31:10: fatal error: QApplication: No such file or directory 31 | #include <QApplication> | ^~~~~~~~~~~~~~ compilation terminated. CXX gui/qt/libqt_plugin_la-main_interface.lo make[4]: *...
Hi, all: I'm trying to build VLC from source from scratch again. I pasted my configuration summary in pastebin: [url]https://pastebin.com/rYSSaZQg[/url] . Just wonder if there is any summary about howto and why in this forum? For instance: 1. checking for SDL_IMAGE... no configure: WARNING: No packa...
Hi, all: I actually have successfully built VLC 4.0,0, and I definitely can run it via command line in bash, but still got a lot of ERROR messages on main libvlc error: stale plugins cache . ➜ ~ vlc VLC media player 4.0.0-dev Otto Chriek (revision 4.0.0-dev-6701-g4790c810ab) [00005626d3d1db80] main ...
You might be correct. I was actually building the most recent GIT version (should be 3.0.4), but with VLC from repository installed (version 3.0.3-1) .
However, I cannot remove the installed version 3.0.3-1 from repository because there are so many other packages relying on this one...
Hi, all: My working environment: one: Ubuntu 18.04.1 two: $ gcc --version gcc (Ubuntu 7.3.0-16ubuntu3) 7.3.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR ...
Hi, My OS: Ubuntu 16.04.4 GCC/G++: **Ubuntu 5.4.0-6ubuntu1~16.04.9** OpenCV: manually installed 3.4.1 I'm actually building VLC with OpenCV. And, I came across the following **ERROR** message: /usr/local/include/opencv2/core/cvdef.h:485:1: error: unknown type name ‘namespace’ namespace cv { ^ /usr/l...
Hi, Thanks Jean... My configuration comes with qt settings. ... checking for QT... yes checking for QTX11... yes checking for XI... yes checking for moc-qt5... no checking for moc... /opt/Qt5.7.0/5.7/gcc_64/bin/moc checking for rcc-qt5... no checking for rcc... /opt/Qt5.7.0/5.7/gcc_64/bin/rcc checki...
Hi, all: jiapei:vlc$ vlc VLC media player 3.0.0-git Vetinari (revision 2.2.0-git-8089-g0be62e5) [00000000018dd1a8] core libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface. [0000000001b86ca8] skins2 interface error: no suitable dialogs provider found (hint: compil...
Hi, all... I've successfully built current vlc-git, but, whenever I tried to run vlc, I got the following error messages: jiapei:vlc$ vlc VLC media player 3.0.0-git Vetinari (revision 2.2.0-git-8089-g0be62e5) [00000000018dd1a8] core libvlc: Running vlc with the default interface. Use 'cvlc' to use v...
Hi, all: I tried to compile vlc3.0.0 with QT5 and lua5.3. Actually, after some modification, I solved all my issues during the configuration, building, and installation. I mean, I have vlc-git successfully built and installed. However, when I tried to run vlc, I got the following error messages. Can...
Hi, all: I'm trying to set up a http server on the Raspberry PI, and trying to browse what I can stream (both PI Cam and video files) from Raspberry PI server on my client desktop with Ubuntu OS. The following command is what I'm using. I'm trying to broadcase a h264 file: pi@raspberrypi ~ $ cvlc -v...
Hi, all: I simply configured x264 with ./configure --prefix=/usr , and obtained the following error message: $ ./configure --prefix=/usr platform: ARM system: LINUX cli: yes libx264: internal shared: no static: no asm: yes interlaced: yes avs: avxsynth lavf: yes ffms: yes mp4: no gpl: yes thread: po...
I'm wondering what is the simplest way to stream data from an IP camera by using libVLC?
I'm trying to embed the VLC/C++ based code into my application. My target is to get images frame by frame, instead of just broadcasting..
Did u ever try FFMPEG? If so, you should know what every video file is mainly composed of two (or even more) streams, including: an audio stream a video stream a subtitle stream etc. I'm not splitting a video file into raw files, but splitting a video file and get the raw data ! I need to analyze th...
Hi, aipragma: I've got exactly the same problem as you mentioned here. Actually, I'm not trying to build VideoLAN. What I'm trying to build is just schroedinger-1.0.11 based on orc-0.4.16 In fact, if I typed $orcc --version I got Orc Compiler 0.4.16 and, I did all the things suggested by http://www....
Any example including both the video and audio streams? Cheers Pei For those who want the answer, it can be found in the SDL example http://wiki.videolan.org/LibVLC_SampleCode_SDL . To access pixels, the callbacks have to be used. In the callback (unlock) function (defined by vlc see SDL example), a...
Any sample code for decoding an arbitrary video files into a video stream and an audio stream by using libVLC?
Looking forward to analyze both streams from my side.