Metadata-Version: 2.1
Name: pyvid
Version: 0.0.8
Summary: Video conversion utility using ffmpeg
Home-page: https://github.com/0jdxt/pyvid
License: MIT
Keywords: cli,video,conversion,ffmpeg,tools
Author: jdxt
Author-email: jytrn@protonmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: Freeware
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Multimedia :: Video :: Conversion
Classifier: Topic :: Utilities
Requires-Dist: click (>=7.0,<8.0)
Requires-Dist: click-spinner (>=0.1.8,<0.2.0)
Requires-Dist: ffmpeg-python (>=0.1.16,<0.2.0)
Requires-Dist: hurry.filesize (>=0.9.0,<0.10.0)
Requires-Dist: hypothesis (>=3.84,<4.0)
Requires-Dist: pytoml (>=0.1.19,<0.2.0)
Project-URL: Documentation, https://pyvid.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/0jdxt/pyvid
Description-Content-Type: text/markdown

# pyvid 0.0.7

[![PyPI version](https://badge.fury.io/py/pyvid.svg)](https://badge.fury.io/py/pyvid)
[![Build Status](https://travis-ci.org/0jdxt/pyvid.svg?branch=master)](https://travis-ci.org/0jdxt/pyvid)
[![Documentation Status](https://readthedocs.org/projects/pyvid/badge/?version=latest)](https://pyvid.readthedocs.io/en/latest/?badge=latest)
[![Coverage Status](https://coveralls.io/repos/github/0jdxt/pyvid/badge.svg?branch=master)](https://coveralls.io/github/0jdxt/pyvid?branch=master)

## Dependencies

- [install](https://www.ffmpeg.org/download.html)
  ffmpeg and make sure the executable is in PATH

## Installation

Install as global executable

```
pip install pyvid
```

## Usage

The following

```
pyvid files -e avi
```

will convert all `.avi` files in directory `files/` to output directory `files/converted/`

Uses defaults on ffmpeg executable to get high quality and low file size.

```
Usage: pyvid [OPTIONS] PATH

Options:
  -e, --ext TEXT  File extension to look for
  -y, --force     Disable convert prompt
  -d, --rem       Delete source video file(s)
  --version       Show the version and exit.
  --help          Show this message and exit.
```

