Metadata-Version: 2.1
Name: tkvideoplayer
Version: 1.0.0
Summary: This library helps you play videos in tkinter
Home-page: https://github.com/PaulleDemon/tkVideoPlayer
Author: Paul
License: MIT
Keywords: tkinter,video,payer,video player,tkvideoplayer
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: av
Requires-Dist: pillow

# 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:
```python
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](https://github.com/PaulleDemon/tkVideoPlayer/blob/master/Documentation.md)

#### Sample video player image:
![sample player](https://github.com/PaulleDemon/tkVideoPlayer/blob/master/sample_media_player.png)

This example source code can be found [here](https://github.com/PaulleDemon/tkVideoPlayer/blob/master/examples/sample_player.py)




