TkVideoplayer
This is a simple library to play video files in tkinter. This library also provides the ability to play , pause, skip and seek specific frames.
Example:
import tkinter as tk
from tkVideoPlayer import TkinterVideo
root = tk.Tk()
videoplayer = TkinterVideo(master=root, scaled=True, pre_load=False)
videoplayer.load(r"samplevideo.mp4")
videoplayer.pack(expand=True, fill="both")
videoplayer.play() # play the video
root.mainloop()
read the documentation here
Sample video player image:
This example source code can be found here