python-vlc icon indicating copy to clipboard operation
python-vlc copied to clipboard

Python vlc bindings

Results 95 python-vlc issues
Sort by recently updated
recently updated
newest added

Hi, I'm running play_buffer.py in example. I found that after player.play() media_open_cb and media_read_cb functions were called to do custom data reading. When I do player.stop() media_close_cb is called. But...

```python try: import vlc except: print('Error') print('Please install python-vlc') exit(1) import time import numpy as np from ctypes import * class MyDisplay(vlc.VideoDisplayCb): def __doc__(o,p): print("fsdfs") if __name__ == '__main__': url...

Hello! So I have a software project I am developing that uses this fabulous python-vlc module. I am packaging the application up using PyInstaller. When some users try to boot...

Hi~ I am trying to make vlc player which can play 360 degree video format. By using your example like vlc_pyqt, I succeed in play that type. but I can't...

Updated my system to Ubuntu 22 which uses the Snap version of VLC by default. Python-vlc doesn't seem to work with this version. I've tried installing the regular vlc apt...

unions are not really handled for the moment: https://github.com/oaubert/python-vlc/blob/master/generator/generate.py#L1045 It concerns for the moment 4 structures: `libvlc_event_t`, `libvlc_video_setup_device_info_t`, `libvlc_video_output_cfg_t` and `libvlc_media_track_t` (referenced in #222) The first case (`libvlc_event_t`) has been...

I have been trying to check if a video media is 360 degree with python vlc version 3.0.16 for the past 48 hours. I know that I should get the...

I'm trying to set the audio output device, but I seem to be unable to set the intended audio output device before the audio stream is actually playing. If I...

I tried to use the method below to download the file: player = insts.media_player_new() media = insts.media_new("http://123.60.223.219:7083/dev_vod/vod.m3u8?token=eyJhbGciOiJIU...") media.add_option(':sout=#transcode{vcodec=h264,acodec=mpga,ab=128,channels=2,samplerate=44100,scodec=none}:file{dst=video2.mp4,no-overwrite}') player.set_media(media) player.play() But this approach doesn't seem to work very well. Downloaded...

I found a HTTP proxy option in VLC, but I do not know how to set that in python-vlc. Is there any docs about setting proxy? Thank you very much.