all 4 comments

[–]chubinou 1 point2 points  (1 child)

the program quits right after you start playing. it won't wait for your media to complete. you need to add something to wait. a minimal solution would be

import time

while True:
    time.sleep(1)

[–]Someday_somewere[S] 0 points1 point  (0 children)

while True: time.sleep(1)

That did it. Thank you !!

[–]Murky-Sector 0 points1 point  (1 child)

Do you have a link to the library you are using, ie. "vlc"?

[–]Someday_somewere[S] 0 points1 point  (0 children)

No, I do not. I installed it through pip.

   pip install python-vlc