Metadata-Version: 2.1
Name: pyvid
Version: 0.0.7
Summary: Video conversion utility using ffmpeg
Home-page: https://github.com/0jdxt/pyvid
License: MIT
Keywords: windows,cli,video,conversion,ffmpeg,tools
Author: jdxt
Author-email: jytrn@protonmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: Freeware
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
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: pytoml (>=0.1.19,<0.2.0)
Description-Content-Type: text/markdown

# pyvid 0.0.6-alpha

[![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 `converted/files/`

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

```
Usage: pyvid [OPTIONS] FOLDER

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.
```

