Search found 521 matches

Go to advanced search

by chubinou
28 Sep 2022 10:00
Forum: Development around libVLC
Topic: libVLC to render a mosaic to the display
Replies: 2
Views: 430

Re: libVLC to render a mosaic to the display

just spawn multiple player something like this #include <QApplication> #include <QMainWindow> #include <QHBoxLayout> #include <vlc/vlc.h> int main(int argc, char *argv[]) { QApplication qtApp(argc, argv); QWidget* v1 = new QWidget(); QWidget* v2 = new QWidget(); QHBoxLayout* layout = new QHBoxLayout...
by chubinou
27 Sep 2022 10:14
Forum: General VLC media player Troubleshooting
Topic: No "Continue" button
Replies: 4
Views: 548

Re: No "Continue" button

not really
by chubinou
26 Sep 2022 18:27
Forum: General VLC media player Troubleshooting
Topic: VLC on three projectors
Replies: 1
Views: 304

Re: VLC on three projectors

You may try to use the netsync module https://wiki.videolan.org/Documentation ... s/netsync/

Maybe it worked with input-slave options in old VLC version, but this doesn't seems to be the case anymore, see: https://code.videolan.org/videolan/vlc/-/issues/20167
by chubinou
26 Sep 2022 17:52
Forum: General VLC media player Troubleshooting
Topic: No "Continue" button
Replies: 4
Views: 548

Re: No "Continue" button

you can setup this in tools > preferences > interface > "continue playback". setting to "Ask" will show the continue button when possible
by chubinou
19 Sep 2022 16:57
Forum: Development around libVLC
Topic: Can you change the frames before they get displayed?
Replies: 5
Views: 483

Re: Can you change the frames before they get displayed?

if you distribute libvlc, you can distribute additional plugins as well, but you should probably compile it yourself
by chubinou
16 Sep 2022 09:50
Forum: VLC media player Feature Requests
Topic: Why is VLC 3.0.xx one update and VLC 4.0 another?
Replies: 1
Views: 297

Re: Why is VLC 3.0.xx one update and VLC 4.0 another?

VLC 4.0 is our development branch, it's quite advanced but hasn't reached beta yet, 3.0 branch is the stable version updates concerns mainly bug and security fixes.

I don't know what tool you are referring to
by chubinou
16 Sep 2022 09:40
Forum: Development around libVLC
Topic: Can you change the frames before they get displayed?
Replies: 5
Views: 483

Re: Can you change the frames before they get displayed?

> How can I implement my own filter?

you need to add your filter to VLC itself, you can't do it through libvlc public API

we have a sample filter using OpenCV API if you want to see how this works

https://code.videolan.org/videolan/vlc/ ... xample.cpp
by chubinou
27 Jun 2022 11:09
Forum: VLC media player Feature Requests
Topic: Show album art or song as it is showing on SoundCloud (in image resolution, in open network broadcast)
Replies: 1
Views: 385

Re: Show album art or song as it is showing on SoundCloud (in image resolution, in open network broadcast)

that's an issue in our the lua script, we retreive the artwork_url which is relatively small, this: https://i1.sndcdn.com/artworks-000207731331-1kwyxf-large.jpg the fullsize artwork is stored somewhere else in the page (the "og:image" meta property apparently), this: https://i1.sndcdn.com/...
by chubinou
29 Apr 2022 13:23
Forum: VLC media player for Windows Troubleshooting
Topic: Disable using OpenGl to play videos
Replies: 13
Views: 556

Re: Disable using OpenGl to play videos

> This way also did not work and gave this error now. that's odd, this option (--qt-compositor) has been here since November 2020, can you check that the your version is recent enough? I assume you downloaded vlc 4.0 from here https://nightlies.videolan.org/, you may try to download one from last we...
by chubinou
28 Apr 2022 16:27
Forum: VLC media player for Windows Troubleshooting
Topic: Disable using OpenGl to play videos
Replies: 13
Views: 556

Re: Disable using OpenGl to play videos

first, the variable I mentioned is the wrong one, the one that should be set is QT_QUICK_BACKEND, sorry about that

you can create a "vlc.bat" file in this file enter the following text

Code: Select all

SET QT_QUICK_BACKEND=software vlc.exe --qt-compositor=dummy %*
start VLC using this file
by chubinou
28 Apr 2022 09:46
Forum: VLC media player for Windows Troubleshooting
Topic: Disable using OpenGl to play videos
Replies: 13
Views: 556

Re: Disable using OpenGl to play videos

On windows, the 4.0 Qt interface uses an OpenGL implementation based on Direct3D11 (ANGLE). maybe your system is missing the d3dcompiler_47.dll which should be part of your system on an updated windows 7 (or above); as far as I know, It comes with directX what version of windows do you use? as Lotes...
by chubinou
26 Apr 2022 09:31
Forum: VLC media player for Linux and friends Troubleshooting
Topic: [Artix] AcoustID button disappears somewhy
Replies: 8
Views: 695

Re: [Artix] AcoustID button disappears somewhy

can you run this command?
vlc --list | grep chromaprint
this should give you something like
VLC media player 3.0.17.3 Vetinari (revision 3.0.11.1-1209-g8f6ec51cd0)
stream_out_chromaprint Chromaprint stream output
by chubinou
25 Apr 2022 19:20
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Loop recording IP Camera
Replies: 1
Views: 399

Re: Loop recording IP Camera

you can use the "run-time" property to define for how long the recording should run, note that it doesn't seems to work with some v4l2 devices something like this vlc <yourinput> --run-time 10 ':sout=#transcode{vcodec=h264,acodec=aac}:file{dst=/home/your/output.mkv}' look for vlc streaming...
by chubinou
25 Apr 2022 18:48
Forum: VLC media player for Linux and friends Troubleshooting
Topic: [Artix] AcoustID button disappears somewhy
Replies: 8
Views: 695

Re: [Artix] AcoustID button disappears somewhy

I guess you mean the "fingerprint" button?

the button is only visible if the file is a local file (this seems to be the case on your screen shot) and if you have a fingerprinting module installed (usually chromaprint)
by chubinou
01 Mar 2022 13:35
Forum: Contribute and help the VideoLAN project
Topic: How Can Donate To VLC Project With a Request? This Was Based Off 3 DM's
Replies: 6
Views: 7322

Re: How Can Donate To VLC Project With a Request? This Was Based Off 3 DM's

I'm sorry but VLC is and will remain add-free. Putting your stream towards the top would be breaking this promise.
by chubinou
01 Mar 2022 11:54
Forum: Contribute and help the VideoLAN project
Topic: How Can Donate To VLC Project With a Request? This Was Based Off 3 DM's
Replies: 6
Views: 7322

Re: How Can Donate To VLC Project With a Request? This Was Based Off 3 DM's

VLC retrieve its icecast servers from http://dir.xiph.org,

your server seems to be already listed there http://dir.xiph.org/search?q=The+Angel+Classic+Rock+Mix so it should appears in VLC. VLC doesn't promote any icecast station in particular.
by chubinou
23 Feb 2022 14:33
Forum: VLC media player Feature Requests
Topic: Shuffle multiple playlist equaly
Replies: 5
Views: 1197

Re: Shuffle multiple playlist equaly

Hi, this is a very specific scenario, I'm afraid you can't do that out of the box. One way to do this would be to write a lua script for VLC, but this requires some programming skills
by chubinou
23 Feb 2022 14:30
Forum: Scripting VLC in lua
Topic: How do I make a folder a playlist?
Replies: 1
Views: 2249

Re: How do I make a folder a playlist?

Hi,

you can make a shortcut that starts

vlc C:/path/to/your/folder

https://www.digitalcitizen.life/shortcu ... s-windows/
by chubinou
26 Jan 2022 11:46
Forum: General VLC media player Troubleshooting
Topic: HELP Make permanent "ALWAYS ON TOP" VLC & Help
Replies: 3
Views: 2280

Re: HELP Make permanent "ALWAYS ON TOP" VLC & Help

VLC doesn't save this setting, and you can't force it from VLC from the command line either, your only option is to do it through an external program, something like autohotkey should be able to to it. Or maybe something like "powertoy" this is enough for you https://docs.microsoft.com/en-...
by chubinou
17 Jan 2022 11:52
Forum: VLC media player for Windows Troubleshooting
Topic: Play next video/audio when playing a video from file explorer.
Replies: 5
Views: 1051

Re: Play next video/audio when playing a video from file explorer.

you can select the options "allow only one instance" and "Enqueue items into playlist in one instance mode" in tools > preferences > Interface > "Playlist and instances"
by chubinou
17 Jan 2022 11:47
Forum: VLC media player Feature Requests
Topic: Volume LIMITER/COMPRESSOR
Replies: 1
Views: 2660

Re: Volume LIMITER/COMPRESSOR

there is a compressor available in tool > "Effects and Filters" > Audio Effects > Compressor"
by chubinou
12 Jan 2022 11:58
Forum: VLC media player for Windows Troubleshooting
Topic: vlc-3.0.14-win32.exe has a virus Trojan/Generic.ASMalwS.34D3112
Replies: 6
Views: 2058

Re: vlc-3.0.14-win32.exe has a virus Trojan/Generic.ASMalwS.34D3112

your version seems to be the genuine one, the sha256 matches (http://download.videolan.org/pub/videol ... exe.sha256)
That's a false positive from your anti-virus.

Go to advanced search