I am currently making some kind of a program that can control PCs using a remote control, and one of the features is music playing (In the background, the player will not be visible). I know that there are other options for that in python, but the only lightweight one is playsound, which cant pause and stop the music.
All the other packages increase the executable file size dramatically, so I decided to use VLC as a downloadable extension. Now, I don't want users to install VLC, just to download portable VLC libraries and use them to get VLC playing features. Any way to use python VLC bindings with potable version of VLC? (Without installing, that's the whole point)
Thank you!
Specifically the python-vlc uses libvlc.dll and libvlccore.dll . On Windows machines, it places copies in /windows/system32/ . You could test copying just those two DLLs, rather than doing a full install.