Questions tagged [python-vlc]

python-vlc provides a pure python module to interact with the libvlc.

python-vlc provides a pure module to interact with the libvlc.

Resources

Related Tags

,

125 questions
0
votes
1 answer

How to access ICY-metadata with libvlc

Is it possible to access the ICY-metadata over the libvlc interface? I'm using the python-vlc bindings. import vlc import time url = "http://fritz.de/livemp3" instance = vlc.Instance("--no-xlib") player =…
Sir l33tname
  • 4,026
  • 6
  • 38
  • 49
-1
votes
1 answer

Switch VLC screens using python-vlc

I have multiple live streams running which I'm playing with python-vlc. So something like this: stream1 = vlc.MediaPlayer("rtsp://...") stream2 =…
asm
  • 837
  • 1
  • 16
  • 41
-2
votes
1 answer

How to fix the pause button?

I made a program that allows you to choose any audio to play using vlc module and tkinter. The pause button didn't work. Even using global variable it didn't work. #define "select file" function def select_file(): global filename filetypes =…
Riz
  • 3
  • 3
-2
votes
2 answers

Music Player Python

I m building music player in python. Program working for one file or if i add playlist prepared in advance. I have a question, is there a way to dynamic add file to playlist in vlc lib ? that is add path to file, tick and play this file ? or i have…
Wolf23
  • 1
  • 3
-2
votes
2 answers

How Play to audio list in os.startfile use Python?

How Play to audio list in os.startfile use Python? MY CODE: import os music_dir = "C:\\Users\\JACKSON KASI\\Music" songs = os.listdir(music_dir) print(songs) for i in songs: os.startfile(os.path.join(music_dir,i)) The next audio file should…
1 2 3
8
9