Metadata-Version: 2.4
Name: python_video_player
Version: 0.0.1
Summary: A package for building a video player in Python.
Author-email: mohamadreza <edalatadam@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: python-vlc>=3.0.21203
Requires-Dist: pillow>=11.3.0
Requires-Dist: mutagen>=1.47.0
Requires-Dist: tkinterdnd2>=0.5.0
Dynamic: license-file

Project description
===

###
Hello,
You can build a video player with this package.

## Features of this package
- Adjust the volume
- Song Selection and Image Extraction
- Dragging the file onto the black screen
- You can use this package to fast-forward or rewind the video or music.
- You can adjust the volume or seek through the video or music using your keyboard.

## Install & Dependence
- python
- vlc media player
- python-vlc
- pillow
- mutagen
- tkinterdnd2

## Things needed for this package
| name | size | Download source |  |
| ---     | ---   | ---    | ---    |
| vlc media player for window | 38 MB | www.videolan.org |[download](https://get.videolan.org/vlc/3.0.23/win32/vlc-3.0.23-win32.exe)|

## Directory Hierarchy
```
|—— LICENCE
|—— pyproject.toml
|—— README.md
|—— src
|    |—— Video_Player
|        |—— video_player.py
|        |—— __init__.py
|—— tests
```

## How to use this package
### First install this package with pip.
```python
pip install python_video_player
```
### Now create a new file and name it test.py
### Now open the file and write the code below inside it.
```python
from tkinterdnd2 import TkinterDnD
from python_video_player.video_player import Player

app = TkinterDnD.Tk()

player = Player(app)

app.mainloop()
```

### To run the code, type this in the terminal:
```python
python test.py
```

### If you named the file something else, type this in the terminal:
```python
python You_file_name.py
```

### Replace You_file_name with your file name.
