Metadata-Version: 2.1
Name: ttkvideo_player
Version: 0.0.2
Summary: playing video (with audio) in tkinter label
Author: Coder-wis
Author-email: vishalsharma.pypi@gmail.com
License: MIT
Keywords: video-player,player,video,python,tkinter video player,tkinter video,ctk video,customtkinter
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: Licence.txt

# ttkvideo_player

ttkVideo_player: Python module for playing videos (with sound) inside tkinter Label widget using Pillow and imageio works best
&amp; fast on small size videos however takes few seconds of time for larger videos files Copyright Â© 2024 coder-wis <vishalsharma.pypi@gmail.com>
<br>
<br>
<h3>Built With :</h3>
<ul>
<li>tkinter & CustomTkinter (Python built-in) </li>
<li>imageio</li>
<li>Pillow</li>
</ul>
<br>
<h3>Installation: </h3>
<p>The pip command to install ttkinter videos library for use </p>
<pre><code align="center"> pip install ttkvideo_player </code></pre>
This will create a shim between your code and the module binaries that gets updated every time you change your code.
&nbsp<b><u><h3>Usage : </h3></u></b>
<ul>
<li>Import tkinter and tkvideo-moviepy<br></li>
<li>Create Tk() parent and the label you'd like to use<br></li>
<li>Get a moviepy video<br></li>
<li>Create ttkvideo_player object with its parameters(video_path, label_name,number of loops for the video if required and size of the video_screen)<br></li>
<li>Start the player thread with <player_name>.play()<br></li>
<li>Start the Tk mainloop<br></li>
</ul>
<h3>Examples</h3>
The given below is an example of the <code>'demo.py'</code> file to demonstrate the syntax :<br>
<ol>
<li><p> For Tkinter </p>
<pre lan="sh">
  import ttkvideo
  import tkinter as tk
  win=tk.Tk()
  label=tk.Label(win)
  label.pack()
  player=ttkvideo_player.Ttkvideo( %video_path% ,label,loop=1,(640,400))
  player.play()
  win.mainloop()
</pre>
</li>
<li>
<p> For Customtkinter </p>
<pre lan="sh">
  import ttkvideo
  import customtkinter as ctk
  win=ctk.Tk()
  label=ctk.Label(win)
  label.pack()
  player=ttkvideo_player.Ttkvideo( %video_path% ,label,loop=1,(640,400))
  player.play()
  win.mainloop()
</pre>
</li>
</ol>
<h3> Releases :</h3>
For the updated version <b><a href="https://pypi.org/project/ttkvideo_player/"> Latest </a></b> version.
<h3>License</h3>
Distributed under the MIT License. See <b><a href="https://github.com/Coder-wis/ttkvideo_player/blob/main/LICENSE"> LICENSE </a></b>for more information.
