Metadata-Version: 2.4
Name: py-qt-video-player
Version: 0.1.0
Summary: A simple video player based on PyQt6.
License-Expression: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: pyqt-subtitles
Requires-Dist: pyqt6
Description-Content-Type: text/markdown

# py_qt_video_player
A simple video player based on PyQt6.

## Installation

```bash
pip install py_qt_video_player
```

## Usage

> [!TIP]
> You can press the Spacebar to toggle video play and pause, and use the bracket keys to adjust the playback speed.
>
> You can use the arrow keys on your keyboard to control video progress and volume.

```python
import sys
from PyQt6.QtWidgets import QApplication
from py_qt_video_player import QtVideoPlayer

app = QApplication(sys.argv)
win = QtVideoPlayer()
win.set_video_and_subtitle("test.mp4", "test.srt")
win.show()
sys.exit(app.exec())

```

