Metadata-Version: 2.2
Name: terminal_video_player_py
Version: 1.0.2
Summary: A cli to play videos in the terminal.
Home-page: 
Author: 
Author-email: 
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fpstimer
Requires-Dist: playsound==1.2.2
Requires-Dist: cursor
Requires-Dist: pydub
Requires-Dist: opencv-python
Requires-Dist: Pillow
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Terminal Video Player (tvp)

This Command Line Interface Tool can be used to play videos in the terminal.

## Installation

`pip install terminal-video-player-py`

## Usage

### Video Playback

`tvp [-h] [-a] [-c] [-chars CHARACTERS] [-rt] video_path downscale`

To play a video, you can simply call `tvp <video_path> <downscale> [optional arguments]`.

Example:
``` bash
tvp <path> 8 -a -rt
```
This will play the video in real time and downscaled 8 times. It will also playback the video's audio.

## Arguments

| Argument  | Description |
| ------------- | ------------- |
| **-h, --help**  | Show help information about the CLI  |
| **-a, --audio**  | Play video audio  |
| **-c, --colored**  | Set the output to be colored(may not work on some terminals)  |
| **-chars string, --characters string**  | Custom characters(low density to high)  |
| **-rt, --realtime**  | Play the video in real time  |

## Uninstall

`pip uninstall terminal-video-player-py`
