coconut98coca / tkVideoPlayer

Video player for tkinter.

Home Page:https://pypi.org/project/tkvideoplayer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TkVideoplayer

This is a simple library to play video files in tkinter. This library also provides the ability to play, pause, skip and seek to specific timestamps.

Example:

import tkinter as tk
from tkVideoPlayer import TkinterVideo

root = tk.Tk()

videoplayer = TkinterVideo(master=root, scaled=True)
videoplayer.load(r"samplevideo.mp4")
videoplayer.pack(expand=True, fill="both")

videoplayer.play() # play the video

root.mainloop()

read the documentation here

Please immediately upgrade to the latest version if you are using version 1.3 or below

Sample video player made using tkVideoPlayer:

Sample player

This example source code can be found here

Other libraries you might be interested in:

About

Video player for tkinter.

https://pypi.org/project/tkvideoplayer

License:MIT License


Languages

Language:Python 100.0%