I'm creating a Mp3 player and I have been using Pygame to load and play the music, but due to some technical issues with Pygame I am trying other things.
I have found Python-vlc and want to give it a try. I am able to pip install Python-vlc onto tinycore successfully and import vlc, but when I attempt to create an instance of vlc I am given an error.
My code is:
import vlc as v
# creating vlc media player object
media = v.MediaPlayer("cats.mp4")
# start playing video
media.play()
And the final line of the error is: (I have to type it out by hand so I only put the final line, but If anyone needs the whole error, please say so)
NameError: no function 'libvlc_new'
This same error occurs if I write the line "v.Instance()" (which works fine on my pc)
I assume I don't have all the libraries required for VLC to work properly, though I assumed the pip install would give me everything I need.
If anyone could help me that would be great, thanks