I made a video player using tkinter. I'm using the vlc media player to play the video. Now I want to have an image display on top of the video as the video plays, its a pointer of some sort and needs to move around on the video based on the x and y coordinates in a list. I can't seem to have the image show on top of the video as the video plays. Is there any way to do this?
I tried making it a label setting the image as label.image. That worked but the image always had a white background around it (the image is a circle). Is there a way to make the label transparent so that the video player is shown instead of the white background? I also tried using video_canvas.create_image() but the image would disappear as soon as I would open the video. I have a video_canvas that then opens the vlc media player. I also tried using video_canvas.lift ad video_canvas.tag_raise() but that didn't work either.