python-vlc
python-vlc copied to clipboard
Python vlc bindings
Looks like it was added manually but only to the 3.0 file. However, it's mentioned in every definition of `media_new`.
Since Python 3.5 it's possible to provide [type hints](https://docs.python.org/3.11/library/typing.html) for functions. This allows e.g. [static type checking](https://mypy-lang.org/) but this module doesn't provide type hints yet. If the current code generator...
I am using the following code to save a live stream to disk for over a week's worth. In this case it's the NYC Times sq. stream. This code runs...
Hello All, With the python-vlc, how could the option audio "time-stretching audio" be set to disable? Thank you.
Hello, I am using WSL2, the original vlc was lagging ( sync issue with blank audio ), It s solved with the daily VLC vlc 4.0 daily build : sudo...
Hi, I'd like to integrate the vlc window into my GUI, but there's no way to do it except for "x11", "win32" and "darwin". Is it possible that in the...
Hello, i'm using samle vlc with pyqt5. I can't change opacity of any video. It changes frame opacity, but when i load video opacity disappears ``` self.opacity_effect = QGraphicsOpacityEffect() self.opacity_effect.setOpacity(0.3)...
environment: ``` windows 10 x64 VLC media player x64 3.0.18 python-vlc 3.0.1822 ``` code: ``` import vlc p = vlc.MediaPlayer(r"./WAV/37028.wav") p.play() ``` output: 0 wasapi generic error: cannot activate client...
I've been testing media list events and found that `MediaListEndReached` is never triggered. `MediaListItemAdded` and `MediaListItemDeleted` are triggered correctly, however. To demonstrate the bug, here is a working example. Can...
About `python-vlc` usage: I've just used it and it worked. But realized, that the output doesn't match with a player itself although all bands had the same frequencies. Later realized,...